diff options
author | Charles Kerr <charles.kerr@canonical.com> | 2016-03-18 10:17:55 -0500 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2021-08-29 14:37:39 +0200 |
commit | a8ea3ba0548c30696245f74ed701ca9105f7ce5b (patch) | |
tree | 654404112997b4e6b4e8e5f9121ef79e165197ba /include/datetime/menu.h | |
parent | bb2ea938ba2d40d387604104ed8d975d143d04ba (diff) | |
download | ayatana-indicator-datetime-a8ea3ba0548c30696245f74ed701ca9105f7ce5b.tar.gz ayatana-indicator-datetime-a8ea3ba0548c30696245f74ed701ca9105f7ce5b.tar.bz2 ayatana-indicator-datetime-a8ea3ba0548c30696245f74ed701ca9105f7ce5b.zip |
get event selection up-to-date with the spec, including showing in-progress events. add unit tests to cover event priority and display order.
Diffstat (limited to 'include/datetime/menu.h')
-rw-r--r-- | include/datetime/menu.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/datetime/menu.h b/include/datetime/menu.h index acd9ed8..0074ea5 100644 --- a/include/datetime/menu.h +++ b/include/datetime/menu.h @@ -21,6 +21,7 @@ #define INDICATOR_DATETIME_MENU_H #include <datetime/actions.h> +#include <datetime/appointment.h> #include <datetime/state.h> #include <memory> // std::shared_ptr @@ -49,6 +50,11 @@ public: Profile profile() const; GMenuModel* menu_model(); + static std::vector<Appointment> get_display_appointments( + const std::vector<Appointment>&, + const DateTime& start, + unsigned int max_items=5); + protected: Menu (Profile profile_in, const std::string& name_in); virtual ~Menu() =default; |