summaryrefslogtreecommitdiff
path: root/openbox/popup.h
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-07-10 15:22:36 +0000
committerDana Jansens <danakj@orodu.net>2003-07-10 15:22:36 +0000
commit33a2cdbeb90fa1d5017174abe4fc9c99257ea175 (patch)
treec6f3545a17395d9a473f8912a4e82fb6ef89c4b1 /openbox/popup.h
parent06d3487d49791015902b322408ebb105ba82d9b7 (diff)
prefixing for the Popup->ObPopup struct
Diffstat (limited to 'openbox/popup.h')
-rw-r--r--openbox/popup.h14
1 files changed, 8 insertions, 6 deletions
diff --git a/openbox/popup.h b/openbox/popup.h
index f8aedad4..7a138bd0 100644
--- a/openbox/popup.h
+++ b/openbox/popup.h
@@ -1,9 +1,11 @@
#ifndef __popup_h
#define __popup_h
-#include "frame.h"
+#include "client.h"
-typedef struct Popup Popup;
+#include <glib.h>
+
+typedef struct _ObPopup Popup;
Popup *popup_new(gboolean hasicon);
void popup_free(Popup *self);
@@ -13,13 +15,13 @@ 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_show(Popup *self, char *text, ObClientIcon *icon);
+void popup_show(Popup *self, gchar *text, ObClientIcon *icon);
void popup_hide(Popup *self);
#endif