aboutsummaryrefslogtreecommitdiff
path: root/include/datetime
diff options
context:
space:
mode:
authorCharles Kerr <charles.kerr@canonical.com>2014-12-07 20:52:50 -0600
committerCharles Kerr <charles.kerr@canonical.com>2014-12-07 20:52:50 -0600
commitf84d3bdb7006eee351942a31d033ca0d62f3292a (patch)
tree9323a1d16768edce93cde0414451a592299753c3 /include/datetime
parent9f29b40133fc419a7a74379c55d63c105a4c2c16 (diff)
downloadayatana-indicator-datetime-f84d3bdb7006eee351942a31d033ca0d62f3292a.tar.gz
ayatana-indicator-datetime-f84d3bdb7006eee351942a31d033ca0d62f3292a.tar.bz2
ayatana-indicator-datetime-f84d3bdb7006eee351942a31d033ca0d62f3292a.zip
disable one-time alarms after their notifications are shown.
Diffstat (limited to 'include/datetime')
-rw-r--r--include/datetime/engine-eds.h5
-rw-r--r--include/datetime/engine-mock.h7
-rw-r--r--include/datetime/engine.h1
3 files changed, 9 insertions, 4 deletions
diff --git a/include/datetime/engine-eds.h b/include/datetime/engine-eds.h
index ebee838..7372f71 100644
--- a/include/datetime/engine-eds.h
+++ b/include/datetime/engine-eds.h
@@ -51,9 +51,10 @@ public:
void get_appointments(const DateTime& begin,
const DateTime& end,
const Timezone& default_timezone,
- std::function<void(const std::vector<Appointment>&)> appointment_func);
+ std::function<void(const std::vector<Appointment>&)> appointment_func) override;
+ void disable_ubuntu_alarm(const Appointment&) override;
- core::Signal<>& changed();
+ core::Signal<>& changed() override;
private:
class Impl;
diff --git a/include/datetime/engine-mock.h b/include/datetime/engine-mock.h
index 4b25120..9fb0442 100644
--- a/include/datetime/engine-mock.h
+++ b/include/datetime/engine-mock.h
@@ -44,14 +44,17 @@ public:
void get_appointments(const DateTime& /*begin*/,
const DateTime& /*end*/,
const Timezone& /*default_timezone*/,
- std::function<void(const std::vector<Appointment>&)> appointment_func) {
+ std::function<void(const std::vector<Appointment>&)> appointment_func) override {
appointment_func(m_appointments);
}
- core::Signal<>& changed() {
+ core::Signal<>& changed() override {
return m_changed;
}
+ void disable_ubuntu_alarm(const Appointment&) override {
+ }
+
private:
core::Signal<> m_changed;
std::vector<Appointment> m_appointments;
diff --git a/include/datetime/engine.h b/include/datetime/engine.h
index 56e9343..59468d1 100644
--- a/include/datetime/engine.h
+++ b/include/datetime/engine.h
@@ -50,6 +50,7 @@ public:
const DateTime& end,
const Timezone& default_timezone,
std::function<void(const std::vector<Appointment>&)> appointment_func) =0;
+ virtual void disable_ubuntu_alarm(const Appointment&) =0;
virtual core::Signal<>& changed() =0;