X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;f=openbox%2Fpopup.c;h=ac8ef700e99032cf953b03306e3d6b5ded43faa9;hb=9d1137a6d32269e3cc02e12b846fe72329776b51;hp=769b942cfa5f27b3404d9db74570be9595ed238a;hpb=7d943a950e39d4d93113c0efc7b41916f6b8c66d;p=chaz%2Fopenbox diff --git a/openbox/popup.c b/openbox/popup.c index 769b942c..ac8ef700 100644 --- a/openbox/popup.c +++ b/openbox/popup.c @@ -1,3 +1,5 @@ +#include "popup.h" + #include "openbox.h" #include "frame.h" #include "client.h" @@ -6,7 +8,8 @@ #include "render/render.h" #include "render/theme.h" -typedef struct Popup { +struct _ObPopup +{ ObWindow obwin; Window bg; @@ -17,13 +20,13 @@ 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) { @@ -39,7 +42,7 @@ Popup *popup_new(gboolean hasicon) self->a_bg = self->a_icon = self->a_text = NULL; attrib.override_redirect = True; - self->bg = XCreateWindow(ob_display, ob_root, + 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); @@ -75,26 +78,26 @@ void popup_free(Popup *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); + self->a_text = RrAppearanceCopy(ob_rr_theme->app_selected_label); self->a_text->texture[0].data.text.string = text; RrMinsize(self->a_text, &textw, &texth); @@ -106,19 +109,27 @@ 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, ObClientIcon *icon) +void popup_set_text_align(Popup *self, RrJustify align) +{ + if (!self->a_text) + self->a_text = RrAppearanceCopy(ob_rr_theme->app_selected_label); + + self->a_text->texture[0].data.text.justify = align; +} + +void popup_show(Popup *self, gchar *text, ObClientIcon *icon) { - 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->a_bg) - self->a_bg = RrAppearanceCopy(ob_rr_theme->app_hilite_bg); + self->a_bg = RrAppearanceCopy(ob_rr_theme->app_selected_bg); if (self->hasicon && !self->a_icon) - self->a_icon = RrAppearanceCopy(ob_rr_theme->app_icon); + self->a_icon = RrAppearanceCopy(ob_rr_theme->a_clear_tex); if (!self->a_text) - self->a_text = RrAppearanceCopy(ob_rr_theme->app_hilite_label); + self->a_text = RrAppearanceCopy(ob_rr_theme->app_selected_label); XSetWindowBorderWidth(ob_display, self->bg, ob_rr_theme->bwidth); XSetWindowBorder(ob_display, self->bg, ob_rr_theme->b_color->pixel);