#ifndef QMAEMO5NOTIFICATION_HPP #define QMAEMO5NOTIFICATION_HPP #include #include class QMaemo5Notification { public: static const int EXPIRES_NEVER; static const int DEFAULT_TIMEOUT; static const QString DEFAULT_ICON; static const QString APPLICATION_ICON_SETTING_KEY; static const QString applicationIcon(); static void setApplicationIcon(const QString &icon); static bool information(const QString &title, const QString &text, const QString &icon, int timeout); static bool information(const QString &title, const QString &text); static bool information(const QString &text, int timeout); static bool information(const QString &text); }; #endif // QMAEMO5NOTIFICATION_HPP