summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2007-06-05 16:42:27 +0000
committerDana Jansens <danakj@orodu.net>2007-06-05 16:42:27 +0000
commitfaab2f4400a8979eb9d97f5ff94ba2cdf08ae954 (patch)
tree241e88b2e57b7602e66019b8adedd4ce6120dab6
parent3499ea8397d21bbc6e930ea908e712c6098474ae (diff)
add comments
-rw-r--r--openbox/popup.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/openbox/popup.c b/openbox/popup.c
index 60027386..8fad26b4 100644
--- a/openbox/popup.c
+++ b/openbox/popup.c
@@ -158,6 +158,9 @@ void popup_delay_show(ObPopup *self, gulong usec, gchar *text)
area = screen_physical_area();
+ /* when there is no icon and the text is not parent relative, then
+ fill the whole dialog with the text appearance, don't use the bg at all
+ */
if (self->hasicon || self->a_text->surface.grad == RR_SURFACE_PARENTREL)
RrMargins(self->a_bg, &l, &t, &r, &b);
else
@@ -198,6 +201,9 @@ void popup_delay_show(ObPopup *self, gulong usec, gchar *text)
texty = (h - texth - emptyy) / 2 + t + ob_rr_theme->paddingy;
icony = (h - iconh - emptyy) / 2 + t + ob_rr_theme->paddingy;
+ /* when there is no icon and the text is not parent relative, then
+ fill the whole dialog with the text appearance, don't use the bg at all
+ */
if (!(self->hasicon || self->a_text->surface.grad == RR_SURFACE_PARENTREL))
{
textx = texty = 0;
@@ -244,6 +250,9 @@ void popup_delay_show(ObPopup *self, gulong usec, gchar *text)
/* set the windows/appearances up */
XMoveResizeWindow(ob_display, self->bg, x, y, w, h);
+ /* when there is no icon and the text is not parent relative, then
+ fill the whole dialog with the text appearance, don't use the bg at all
+ */
if (self->hasicon || self->a_text->surface.grad == RR_SURFACE_PARENTREL)
RrPaint(self->a_bg, self->bg, w, h);