diff options
Diffstat (limited to 'src/daemon/daemon.h')
-rw-r--r-- | src/daemon/daemon.h | 23 |
1 files changed, 18 insertions, 5 deletions
diff --git a/src/daemon/daemon.h b/src/daemon/daemon.h index e671037..c0bc6fc 100644 --- a/src/daemon/daemon.h +++ b/src/daemon/daemon.h @@ -22,14 +22,30 @@ #ifndef NOTIFY_DAEMON_H #define NOTIFY_DAEMON_H +#include <tqwidget.h> + +class NotifierContainer : public TQWidget +{ + Q_OBJECT + TQ_OBJECT + +public: + NotifierContainer(); + ~NotifierContainer(); + + void displayMessage(TQString title, TQString message, TQString icon, int x, int y); + void processEvents(); + +public slots: + void handleGTKMain(); +}; + #include <glib.h> #include <glib-object.h> #include <dbus/dbus-glib.h> #include <dbus/dbus-glib-lowlevel.h> -#define NOTIFY_RC_FILE "xfce4/notication-daemon-xfce/settingsrc" - #define NOTIFY_TYPE_DAEMON (notify_daemon_get_type()) #define NOTIFY_DAEMON(obj) \ (G_TYPE_CHECK_INSTANCE_CAST ((obj), NOTIFY_TYPE_DAEMON, NotifyDaemon)) @@ -98,9 +114,6 @@ gboolean notify_daemon_get_server_information(NotifyDaemon *daemon, char **out_version, char **out_spec_ver); -gchar *xfce_load_setting (const gchar *key, - const gchar *fallback); - G_END_DECLS #endif /* NOTIFY_DAEMON_H */ |