diff options
Diffstat (limited to 'src/themes')
-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 |