diff options
author | Giedrius Statkevičius <[email protected]> | 2015-10-15 21:33:44 +0300 |
---|---|---|
committer | Giedrius Statkevičius <[email protected]> | 2015-10-15 21:33:44 +0300 |
commit | 605a88e14bfc54e652b3339a0836fc8287c4fb30 (patch) | |
tree | 3ab2de168b0cb0e41a619e655793baecd6253312 /src | |
parent | 1d9c9865196dbd4547457bd3bb267d06bd3a9180 (diff) | |
download | mate-notification-daemon-605a88e14bfc54e652b3339a0836fc8287c4fb30.tar.bz2 mate-notification-daemon-605a88e14bfc54e652b3339a0836fc8287c4fb30.tar.xz |
coco: fix missing prototypes warning
Diffstat (limited to 'src')
-rw-r--r-- | src/themes/coco/coco-theme.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/themes/coco/coco-theme.c b/src/themes/coco/coco-theme.c index 7f61561..b724f43 100644 --- a/src/themes/coco/coco-theme.c +++ b/src/themes/coco/coco-theme.c @@ -69,6 +69,23 @@ enum URGENCY_CRITICAL }; +gboolean theme_check_init(unsigned int major_ver, unsigned int minor_ver, + unsigned int micro_ver); +void get_theme_info(char **theme_name, char **theme_ver, char **author, + char **homepage); +GtkWindow* create_notification(UrlClickedCb url_clicked); +void set_notification_text(GtkWindow *nw, const char *summary, + const char *body); +void set_notification_icon(GtkWindow *nw, GdkPixbuf *pixbuf); +void set_notification_arrow(GtkWidget *nw, gboolean visible, int x, int y); +void add_notification_action(GtkWindow *nw, const char *text, const char *key, + ActionInvokedCb cb); +void clear_notification_actions(GtkWindow *nw); +void move_notification(GtkWidget *nw, int x, int y); +void set_notification_timeout(GtkWindow *nw, glong timeout); +void set_notification_hints(GtkWindow *nw, GHashTable *hints); +void notification_tick(GtkWindow *nw, glong remaining); + #define M_PI 3.14159265358979323846 #define STRIPE_WIDTH 32 #define WIDTH 300 |