summaryrefslogtreecommitdiffstats
path: root/framework/src/domain/maillistmodel.cpp
Commit message (Collapse)AuthorAge
* Latest mail at the bottomChristian Mollekopf2017-08-17
|
* Instead of emulating it we can also just layout the items in reverseChristian Mollekopf2017-07-12
| | | | order
* Support the removal of drafts.Christian Mollekopf2017-06-22
|
* Stable sorting even if the dates are the same.Christian Mollekopf2017-06-08
|
* Latest draft on topChristian Mollekopf2017-05-12
|
* A new composer based on Kube.ViewChristian Mollekopf2017-05-11
| | | | | Kube.View is a sort of split-view that always only shows a fixed number of splits (and doesn't support manual resizing).
* Don't thread drafts and sentChristian Mollekopf2017-04-16
| | | | | | | | | | | | | | | | | | | | | | | | | | To do this we: * Expose from the model wether or not the model is threaded * Set the relevant properties from the model on the controller (so we can switch between aggregate and non-aggregate versions) * Keep the controller in the view it belongs to. While this works it highlights a couple of issues: * Controllers are view specific and should be kept within the view. * The actions we execute in the controller are closely related to the model. The model is essentially what the user sees, and therefore what he operatees on. * Sink should perhaps expose aggregates better. We have to pass around the values from the model because the model dispatches between aggregate and non-aggregate property depending on the threaded state. Similary the controller operates on the thread or not depending on the threaded state. Perhaps it would be more useful if sink actually returned the aggregate somehow, with the regular properties. That way the controller could use the regular properties from the entity it gets (which would simply either be the aggregate or non-aggregate depending on the executed query). If the aggregate already contains all matched ids, then we would also not have to execute an additional query to get the thread again, the modification would simply be applied to all ids originally returned.
* Moved cpp code into src directoryChristian Mollekopf2017-04-05