X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Fpopup.c;h=cc4a605d42e419a320f962b9ff4144c8062e1f34;hb=35418ca0fcd3fd28ef579f4435b8bad3b7c87f04;hp=fa003ec855a0a10a28dc47416a31f62bffd04acf;hpb=b1f5555218ecaa3827450125dc47b4bf0d404ee4;p=chaz%2Fopenbox diff --git a/openbox/popup.c b/openbox/popup.c index fa003ec8..cc4a605d 100644 --- a/openbox/popup.c +++ b/openbox/popup.c @@ -1,11 +1,15 @@ +#include "popup.h" + #include "openbox.h" #include "frame.h" +#include "client.h" #include "window.h" #include "stacking.h" #include "render/render.h" #include "render/theme.h" -typedef struct Popup { +struct _ObPopup +{ ObWindow obwin; Window bg; @@ -16,62 +20,81 @@ typedef struct Popup { RrAppearance *a_bg; RrAppearance *a_icon; RrAppearance *a_text; - int gravity; - int x; - int y; - int w; - int h; + gint gravity; + gint x; + gint y; + gint w; + gint h; gboolean mapped; -} Popup; +}; Popup *popup_new(gboolean hasicon) { + XSetWindowAttributes attrib; Popup *self = g_new(Popup, 1); + self->obwin.type = Window_Internal; self->hasicon = hasicon; - self->bg = None; self->a_text = NULL; self->gravity = NorthWestGravity; self->x = self->y = self->w = self->h = 0; self->mapped = FALSE; + self->a_bg = self->a_icon = self->a_text = NULL; + + attrib.override_redirect = True; + self->bg = XCreateWindow(ob_display, RootWindow(ob_display, ob_screen), + 0, 0, 1, 1, 0, RrDepth(ob_rr_inst), + InputOutput, RrVisual(ob_rr_inst), + CWOverrideRedirect, &attrib); + + self->text = XCreateWindow(ob_display, self->bg, + 0, 0, 1, 1, 0, RrDepth(ob_rr_inst), + InputOutput, RrVisual(ob_rr_inst), 0, NULL); + + if (self->hasicon) + self->icon = XCreateWindow(ob_display, self->bg, + 0, 0, 1, 1, 0, + RrDepth(ob_rr_inst), InputOutput, + RrVisual(ob_rr_inst), 0, NULL); + + XMapWindow(ob_display, self->text); + XMapWindow(ob_display, self->icon); + stacking_add(INTERNAL_AS_WINDOW(self)); - stacking_raise(INTERNAL_AS_WINDOW(self)); return self; } void popup_free(Popup *self) { - if (self->bg) { + if (self) { XDestroyWindow(ob_display, self->bg); XDestroyWindow(ob_display, self->text); XDestroyWindow(ob_display, self->icon); RrAppearanceFree(self->a_bg); - if (self->hasicon) - RrAppearanceFree(self->a_icon); - } - if (self->a_text) + RrAppearanceFree(self->a_icon); RrAppearanceFree(self->a_text); - stacking_remove(self); - g_free(self); + stacking_remove(self); + g_free(self); + } } -void popup_position(Popup *self, int gravity, int x, int y) +void popup_position(Popup *self, gint gravity, gint x, gint y) { self->gravity = gravity; self->x = x; self->y = y; } -void popup_size(Popup *self, int w, int h) +void popup_size(Popup *self, gint w, gint h) { self->w = w; self->h = h; } -void popup_size_to_string(Popup *self, char *text) +void popup_size_to_string(Popup *self, gchar *text) { - int textw, texth; - int iconw; + gint textw, texth; + gint iconw; if (!self->a_text) self->a_text = RrAppearanceCopy(ob_rr_theme->app_hilite_label); @@ -86,43 +109,23 @@ void popup_size_to_string(Popup *self, char *text) self->w = textw + iconw + ob_rr_theme->bevel * (self->hasicon ? 3 : 2); } -void popup_show(Popup *self, char *text, Icon *icon) +void popup_show(Popup *self, gchar *text, ObClientIcon *icon) { - XSetWindowAttributes attrib; - int x, y, w, h; - int textw, texth; - int iconw; + gint x, y, w, h; + gint textw, texth; + gint iconw; /* create the shit if needed */ - if (!self->bg) { - attrib.override_redirect = True; - self->bg = XCreateWindow(ob_display, ob_root, - 0, 0, 1, 1, 0, RrDepth(ob_rr_inst), - InputOutput, RrVisual(ob_rr_inst), - CWOverrideRedirect, &attrib); - - XSetWindowBorderWidth(ob_display, self->bg, ob_rr_theme->bwidth); - XSetWindowBorder(ob_display, self->bg, ob_rr_theme->b_color->pixel); - - self->text = XCreateWindow(ob_display, self->bg, - 0, 0, 1, 1, 0, RrDepth(ob_rr_inst), - InputOutput, RrVisual(ob_rr_inst), 0, NULL); - if (self->hasicon) - self->icon = XCreateWindow(ob_display, self->bg, - 0, 0, 1, 1, 0, - RrDepth(ob_rr_inst), InputOutput, - RrVisual(ob_rr_inst), 0, NULL); - - XMapWindow(ob_display, self->text); - XMapWindow(ob_display, self->icon); - + if (!self->a_bg) self->a_bg = RrAppearanceCopy(ob_rr_theme->app_hilite_bg); - if (self->hasicon) - self->a_icon = RrAppearanceCopy(ob_rr_theme->app_icon); - } + if (self->hasicon && !self->a_icon) + self->a_icon = RrAppearanceCopy(ob_rr_theme->app_icon); if (!self->a_text) self->a_text = RrAppearanceCopy(ob_rr_theme->app_hilite_label); + XSetWindowBorderWidth(ob_display, self->bg, ob_rr_theme->bwidth); + XSetWindowBorder(ob_display, self->bg, ob_rr_theme->b_color->pixel); + /* set up the textures */ self->a_text->texture[0].data.text.string = text; if (self->hasicon) {