]> Dogcows Code - chaz/openbox/blobdiff - openbox/popup.h
changes to the timer api, pass the timer to the callback function.
[chaz/openbox] / openbox / popup.h
index f26bedd9e35671c218dd0e7ef324ba8a73412515..e06217ea91b7b54ace52701313b834ca534c92a3 100644 (file)
@@ -1,9 +1,15 @@
 #ifndef __popup_h
 #define __popup_h
 
-#include "frame.h"
+#include <glib.h>
+#include "render/render.h"
 
-typedef struct Popup Popup;
+struct _ObClientIcon;
+
+#define POPUP_WIDTH 320
+#define POPUP_HEIGHT 48
+
+typedef struct _ObPopup Popup;
 
 Popup *popup_new(gboolean hasicon);
 void popup_free(Popup *self);
@@ -13,13 +19,15 @@ void popup_free(Popup *self);
   specifies which corner of the popup will be placed at the given coords.
   Static and Forget gravity are equivilent to NorthWest.
 */
-void popup_position(Popup *self, int gravity, int x, int y);
+void popup_position(Popup *self, gint gravity, gint x, gint y);
 /*! Set the sizes for the popup. When set to 0, the size will be based on
   the text size. */
-void popup_size(Popup *self, int w, int h);
-void popup_size_to_string(Popup *self, char *text);
+void popup_size(Popup *self, gint w, gint h);
+void popup_size_to_string(Popup *self, gchar *text);
+
+void popup_set_text_align(Popup *self, RrJustify align);
 
-void popup_show(Popup *self, char *text, Icon *icon);
+void popup_show(Popup *self, gchar *text, struct _ObClientIcon *icon);
 void popup_hide(Popup *self);
 
 #endif
This page took 0.020903 seconds and 4 git commands to generate.