diff options
author | Javier S. Pedro <maemo@javispedro.com> | 2012-08-11 15:30:38 +0200 |
---|---|---|
committer | Javier S. Pedro <maemo@javispedro.com> | 2012-08-11 15:30:38 +0200 |
commit | 51701e30d710ad016ddf2d306cdd7be122ddf25b (patch) | |
tree | d4a85bd4926c3f94411d3f6fa572e1a99be6bbb4 /testnotification/testnotification.h | |
parent | f0564ad9d210cc68bfb1bfc6e56b86fa941ad830 (diff) | |
download | sowatch-51701e30d710ad016ddf2d306cdd7be122ddf25b.tar.gz sowatch-51701e30d710ad016ddf2d306cdd7be122ddf25b.zip |
adding test notification backend
Diffstat (limited to 'testnotification/testnotification.h')
-rw-r--r-- | testnotification/testnotification.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/testnotification/testnotification.h b/testnotification/testnotification.h new file mode 100644 index 0000000..f54623d --- /dev/null +++ b/testnotification/testnotification.h @@ -0,0 +1,34 @@ +#ifndef TESTNOTIFICATION_H +#define TESTNOTIFICATION_H + +#include <sowatch.h> + +namespace sowatch +{ + +class TestNotification : public Notification +{ + Q_OBJECT + +public: + explicit TestNotification(Type type, const QString& title, const QString& body, QObject *parent = 0); + + Type type() const; + uint count() const; + QDateTime dateTime() const; + QString title() const; + QString body() const; + + void activate(); + void dismiss(); + +private: + Type _type; + QDateTime _time; + QString _title; + QString _body; +}; + +} + +#endif // TESTNOTIFICATION_H |