X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Fframerender.c;h=041e6d1775c2dbd3e329732ae5256e59f38581a5;hb=HEAD;hp=0f4c6659489ed4b99963335a84864cba68d053b5;hpb=16a9ac018ed77e245e873be60729be509fa1ce92;p=chaz%2Fopenbox diff --git a/openbox/framerender.c b/openbox/framerender.c index 0f4c6659..041e6d17 100644 --- a/openbox/framerender.c +++ b/openbox/framerender.c @@ -1,111 +1,309 @@ +/* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*- + + framerender.c for the Openbox window manager + Copyright (c) 2006 Mikael Magnusson + Copyright (c) 2003-2007 Dana Jansens + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + See the COPYING file for a copy of the GNU General Public License. +*/ + #include "frame.h" #include "openbox.h" #include "screen.h" +#include "client.h" #include "framerender.h" -#include "render/theme.h" +#include "obrender/theme.h" -static void framerender_label(Frame *self, Appearance *a); -static void framerender_icon(Frame *self, Appearance *a); -static void framerender_max(Frame *self, Appearance *a); -static void framerender_iconify(Frame *self, Appearance *a); -static void framerender_desk(Frame *self, Appearance *a); -static void framerender_shade(Frame *self, Appearance *a); -static void framerender_close(Frame *self, Appearance *a); +static void framerender_label(ObFrame *self, RrAppearance *a); +static void framerender_icon(ObFrame *self, RrAppearance *a); +static void framerender_max(ObFrame *self, RrAppearance *a); +static void framerender_iconify(ObFrame *self, RrAppearance *a); +static void framerender_desk(ObFrame *self, RrAppearance *a); +static void framerender_shade(ObFrame *self, RrAppearance *a); +static void framerender_close(ObFrame *self, RrAppearance *a); -void framerender_frame(Frame *self) +void framerender_frame(ObFrame *self) { - if (self->focused) - XSetWindowBorder(ob_display, self->plate, - theme_cb_focused_color->pixel); - else - XSetWindowBorder(ob_display, self->plate, - theme_cb_unfocused_color->pixel); - - if (self->client->decorations & Decor_Titlebar) { - Appearance *t, *l, *m, *n, *i, *d, *s, *c; - - t = (self->focused ? - self->a_focused_title : self->a_unfocused_title); - l = (self->focused ? - self->a_focused_label : self->a_unfocused_label); - m = (self->focused ? - (self->client->max_vert || self->client->max_horz ? - theme_a_focused_pressed_set_max : - (self->max_press ? - theme_a_focused_pressed_max : theme_a_focused_unpressed_max)) : - (self->client->max_vert || self->client->max_horz ? - theme_a_unfocused_pressed_set_max : - (self->max_press ? - theme_a_unfocused_pressed_max : - theme_a_unfocused_unpressed_max))); - n = self->a_icon; - i = (self->focused ? - (self->iconify_press ? - theme_a_focused_pressed_iconify : - theme_a_focused_unpressed_iconify) : - (self->iconify_press ? - theme_a_unfocused_pressed_iconify : - theme_a_unfocused_unpressed_iconify)); - d = (self->focused ? - (self->client->desktop == DESKTOP_ALL ? - theme_a_focused_pressed_set_desk : - (self->desk_press ? - theme_a_focused_pressed_desk : - theme_a_focused_unpressed_desk)) : - (self->client->desktop == DESKTOP_ALL ? - theme_a_unfocused_pressed_set_desk : - (self->desk_press ? - theme_a_unfocused_pressed_desk : - theme_a_unfocused_unpressed_desk))); - s = (self->focused ? - (self->client->shaded ? - theme_a_focused_pressed_set_shade : - (self->shade_press ? - theme_a_focused_pressed_shade : - theme_a_focused_unpressed_shade)) : - (self->client->shaded ? - theme_a_unfocused_pressed_set_shade : - (self->shade_press ? - theme_a_unfocused_pressed_shade : - theme_a_unfocused_unpressed_shade))); - c = (self->focused ? - (self->close_press ? - theme_a_focused_pressed_close : - theme_a_focused_unpressed_close) : - (self->close_press ? - theme_a_unfocused_pressed_close : - theme_a_unfocused_unpressed_close)); - - paint(self->title, t); + if (frame_iconify_animating(self)) + return; /* delay redrawing until the animation is done */ + if (!self->need_render) + return; + if (!self->visible) + return; + self->need_render = FALSE; + + { + gulong px; + + px = (self->focused ? + RrColorPixel(ob_rr_theme->cb_focused_color) : + RrColorPixel(ob_rr_theme->cb_unfocused_color)); + + XSetWindowBackground(obt_display, self->backback, px); + XClearWindow(obt_display, self->backback); + XSetWindowBackground(obt_display, self->innerleft, px); + XClearWindow(obt_display, self->innerleft); + XSetWindowBackground(obt_display, self->innertop, px); + XClearWindow(obt_display, self->innertop); + XSetWindowBackground(obt_display, self->innerright, px); + XClearWindow(obt_display, self->innerright); + XSetWindowBackground(obt_display, self->innerbottom, px); + XClearWindow(obt_display, self->innerbottom); + XSetWindowBackground(obt_display, self->innerbll, px); + XClearWindow(obt_display, self->innerbll); + XSetWindowBackground(obt_display, self->innerbrr, px); + XClearWindow(obt_display, self->innerbrr); + XSetWindowBackground(obt_display, self->innerblb, px); + XClearWindow(obt_display, self->innerblb); + XSetWindowBackground(obt_display, self->innerbrb, px); + XClearWindow(obt_display, self->innerbrb); + + px = RrColorPixel(self->focused ? + (self->client->undecorated ? + ob_rr_theme->frame_undecorated_focused_border_color : + ob_rr_theme->frame_focused_border_color) : + (self->client->undecorated ? + ob_rr_theme->frame_undecorated_unfocused_border_color : + ob_rr_theme->frame_unfocused_border_color)); + + XSetWindowBackground(obt_display, self->left, px); + XClearWindow(obt_display, self->left); + XSetWindowBackground(obt_display, self->right, px); + XClearWindow(obt_display, self->right); + + XSetWindowBackground(obt_display, self->titleleft, px); + XClearWindow(obt_display, self->titleleft); + XSetWindowBackground(obt_display, self->titletop, px); + XClearWindow(obt_display, self->titletop); + XSetWindowBackground(obt_display, self->titletopleft, px); + XClearWindow(obt_display, self->titletopleft); + XSetWindowBackground(obt_display, self->titletopright, px); + XClearWindow(obt_display, self->titletopright); + XSetWindowBackground(obt_display, self->titleright, px); + XClearWindow(obt_display, self->titleright); + + XSetWindowBackground(obt_display, self->handleleft, px); + XClearWindow(obt_display, self->handleleft); + XSetWindowBackground(obt_display, self->handletop, px); + XClearWindow(obt_display, self->handletop); + XSetWindowBackground(obt_display, self->handleright, px); + XClearWindow(obt_display, self->handleright); + XSetWindowBackground(obt_display, self->handlebottom, px); + XClearWindow(obt_display, self->handlebottom); + + XSetWindowBackground(obt_display, self->lgripleft, px); + XClearWindow(obt_display, self->lgripleft); + XSetWindowBackground(obt_display, self->lgriptop, px); + XClearWindow(obt_display, self->lgriptop); + XSetWindowBackground(obt_display, self->lgripbottom, px); + XClearWindow(obt_display, self->lgripbottom); + + XSetWindowBackground(obt_display, self->rgripright, px); + XClearWindow(obt_display, self->rgripright); + XSetWindowBackground(obt_display, self->rgriptop, px); + XClearWindow(obt_display, self->rgriptop); + XSetWindowBackground(obt_display, self->rgripbottom, px); + XClearWindow(obt_display, self->rgripbottom); + + /* don't use the separator color for shaded windows */ + if (!self->client->shaded) + px = (self->focused ? + RrColorPixel(ob_rr_theme->title_separator_focused_color) : + RrColorPixel(ob_rr_theme->title_separator_unfocused_color)); + + XSetWindowBackground(obt_display, self->titlebottom, px); + XClearWindow(obt_display, self->titlebottom); + } + + if (self->decorations & OB_FRAME_DECOR_TITLEBAR) { + RrAppearance *t, *l, *m, *n, *i, *d, *s, *c, *clear; + if (self->focused) { + t = ob_rr_theme->a_focused_title; + l = ob_rr_theme->a_focused_label; + m = (!(self->decorations & OB_FRAME_DECOR_MAXIMIZE) ? + ob_rr_theme->btn_max->a_disabled_focused : + (self->client->max_vert || self->client->max_horz ? + (self->max_press ? + ob_rr_theme->btn_max->a_toggled_focused_pressed : + (self->max_hover ? + ob_rr_theme->btn_max->a_toggled_hover_focused : + ob_rr_theme->btn_max->a_toggled_focused_unpressed)) : + (self->max_press ? + ob_rr_theme->btn_max->a_focused_pressed : + (self->max_hover ? + ob_rr_theme->btn_max->a_hover_focused : + ob_rr_theme->btn_max->a_focused_unpressed)))); + n = ob_rr_theme->a_icon; + i = (!(self->decorations & OB_FRAME_DECOR_ICONIFY) ? + ob_rr_theme->btn_iconify->a_disabled_focused : + (self->iconify_press ? + ob_rr_theme->btn_iconify->a_focused_pressed : + (self->iconify_hover ? + ob_rr_theme->btn_iconify->a_hover_focused : + ob_rr_theme->btn_iconify->a_focused_unpressed))); + d = (!(self->decorations & OB_FRAME_DECOR_ALLDESKTOPS) ? + ob_rr_theme->btn_desk->a_disabled_focused : + (self->client->desktop == DESKTOP_ALL ? + (self->desk_press ? + ob_rr_theme->btn_desk->a_toggled_focused_pressed : + (self->desk_hover ? + ob_rr_theme->btn_desk->a_toggled_hover_focused : + ob_rr_theme->btn_desk->a_toggled_focused_unpressed)) : + (self->desk_press ? + ob_rr_theme->btn_desk->a_focused_pressed : + (self->desk_hover ? + ob_rr_theme->btn_desk->a_hover_focused : + ob_rr_theme->btn_desk->a_focused_unpressed)))); + s = (!(self->decorations & OB_FRAME_DECOR_SHADE) ? + ob_rr_theme->btn_shade->a_disabled_focused : + (self->client->shaded ? + (self->shade_press ? + ob_rr_theme->btn_shade->a_toggled_focused_pressed : + (self->shade_hover ? + ob_rr_theme->btn_shade->a_toggled_hover_focused : + ob_rr_theme->btn_shade->a_toggled_focused_unpressed)) : + (self->shade_press ? + ob_rr_theme->btn_shade->a_focused_pressed : + (self->shade_hover ? + ob_rr_theme->btn_shade->a_hover_focused : + ob_rr_theme->btn_shade->a_focused_unpressed)))); + c = (!(self->decorations & OB_FRAME_DECOR_CLOSE) ? + ob_rr_theme->btn_close->a_disabled_focused : + (self->close_press ? + ob_rr_theme->btn_close->a_focused_pressed : + (self->close_hover ? + ob_rr_theme->btn_close->a_hover_focused : + ob_rr_theme->btn_close->a_focused_unpressed))); + } else { + t = ob_rr_theme->a_unfocused_title; + l = ob_rr_theme->a_unfocused_label; + m = (!(self->decorations & OB_FRAME_DECOR_MAXIMIZE) ? + ob_rr_theme->btn_max->a_disabled_unfocused : + (self->client->max_vert || self->client->max_horz ? + (self->max_press ? + ob_rr_theme->btn_max->a_toggled_unfocused_pressed : + (self->max_hover ? + ob_rr_theme->btn_max->a_toggled_hover_unfocused : + ob_rr_theme->btn_max->a_toggled_unfocused_unpressed)) : + (self->max_press ? + ob_rr_theme->btn_max->a_unfocused_pressed : + (self->max_hover ? + ob_rr_theme->btn_max->a_hover_unfocused : + ob_rr_theme->btn_max->a_unfocused_unpressed)))); + n = ob_rr_theme->a_icon; + i = (!(self->decorations & OB_FRAME_DECOR_ICONIFY) ? + ob_rr_theme->btn_iconify->a_disabled_unfocused : + (self->iconify_press ? + ob_rr_theme->btn_iconify->a_unfocused_pressed : + (self->iconify_hover ? + ob_rr_theme->btn_iconify->a_hover_unfocused : + ob_rr_theme->btn_iconify->a_unfocused_unpressed))); + d = (!(self->decorations & OB_FRAME_DECOR_ALLDESKTOPS) ? + ob_rr_theme->btn_desk->a_disabled_unfocused : + (self->client->desktop == DESKTOP_ALL ? + (self->desk_press ? + ob_rr_theme->btn_desk->a_toggled_unfocused_pressed : + (self->desk_hover ? + ob_rr_theme->btn_desk->a_toggled_hover_unfocused : + ob_rr_theme->btn_desk->a_toggled_unfocused_unpressed)) : + (self->desk_press ? + ob_rr_theme->btn_desk->a_unfocused_pressed : + (self->desk_hover ? + ob_rr_theme->btn_desk->a_hover_unfocused : + ob_rr_theme->btn_desk->a_unfocused_unpressed)))); + s = (!(self->decorations & OB_FRAME_DECOR_SHADE) ? + ob_rr_theme->btn_shade->a_disabled_unfocused : + (self->client->shaded ? + (self->shade_press ? + ob_rr_theme->btn_shade->a_toggled_unfocused_pressed : + (self->shade_hover ? + ob_rr_theme->btn_shade->a_toggled_hover_unfocused : + ob_rr_theme->btn_shade->a_toggled_unfocused_unpressed)) : + (self->shade_press ? + ob_rr_theme->btn_shade->a_unfocused_pressed : + (self->shade_hover ? + ob_rr_theme->btn_shade->a_hover_unfocused : + ob_rr_theme->btn_shade->a_unfocused_unpressed)))); + c = (!(self->decorations & OB_FRAME_DECOR_CLOSE) ? + ob_rr_theme->btn_close->a_disabled_unfocused : + (self->close_press ? + ob_rr_theme->btn_close->a_unfocused_pressed : + (self->close_hover ? + ob_rr_theme->btn_close->a_hover_unfocused : + ob_rr_theme->btn_close->a_unfocused_unpressed))); + } + clear = ob_rr_theme->a_clear; + + RrPaint(t, self->title, self->width, ob_rr_theme->title_height); + + clear->surface.parent = t; + clear->surface.parenty = 0; + + clear->surface.parentx = ob_rr_theme->grip_width; + + RrPaint(clear, self->topresize, + self->width - ob_rr_theme->grip_width * 2, + ob_rr_theme->paddingy + 1); + + clear->surface.parentx = 0; + + if (ob_rr_theme->grip_width > 0) + RrPaint(clear, self->tltresize, + ob_rr_theme->grip_width, ob_rr_theme->paddingy + 1); + if (ob_rr_theme->title_height > 0) + RrPaint(clear, self->tllresize, + ob_rr_theme->paddingx + 1, ob_rr_theme->title_height); + + clear->surface.parentx = self->width - ob_rr_theme->grip_width; + + if (ob_rr_theme->grip_width > 0) + RrPaint(clear, self->trtresize, + ob_rr_theme->grip_width, ob_rr_theme->paddingy + 1); + + clear->surface.parentx = self->width - (ob_rr_theme->paddingx + 1); + + if (ob_rr_theme->title_height > 0) + RrPaint(clear, self->trrresize, + ob_rr_theme->paddingx + 1, ob_rr_theme->title_height); /* set parents for any parent relative guys */ - l->surface.data.planar.parent = t; - l->surface.data.planar.parentx = self->label_x; - l->surface.data.planar.parenty = theme_bevel; + l->surface.parent = t; + l->surface.parentx = self->label_x; + l->surface.parenty = ob_rr_theme->paddingy; - m->surface.data.planar.parent = t; - m->surface.data.planar.parentx = self->max_x; - m->surface.data.planar.parenty = theme_bevel + 1; + m->surface.parent = t; + m->surface.parentx = self->max_x; + m->surface.parenty = ob_rr_theme->paddingy + 1; - n->surface.data.planar.parent = t; - n->surface.data.planar.parentx = self->icon_x; - n->surface.data.planar.parenty = theme_bevel; + n->surface.parent = t; + n->surface.parentx = self->icon_x; + n->surface.parenty = ob_rr_theme->paddingy; - i->surface.data.planar.parent = t; - i->surface.data.planar.parentx = self->iconify_x; - i->surface.data.planar.parenty = theme_bevel + 1; + i->surface.parent = t; + i->surface.parentx = self->iconify_x; + i->surface.parenty = ob_rr_theme->paddingy + 1; - d->surface.data.planar.parent = t; - d->surface.data.planar.parentx = self->desk_x; - d->surface.data.planar.parenty = theme_bevel + 1; + d->surface.parent = t; + d->surface.parentx = self->desk_x; + d->surface.parenty = ob_rr_theme->paddingy + 1; - s->surface.data.planar.parent = t; - s->surface.data.planar.parentx = self->shade_x; - s->surface.data.planar.parenty = theme_bevel + 1; + s->surface.parent = t; + s->surface.parentx = self->shade_x; + s->surface.parenty = ob_rr_theme->paddingy + 1; - c->surface.data.planar.parent = t; - c->surface.data.planar.parentx = self->close_x; - c->surface.data.planar.parenty = theme_bevel + 1; + c->surface.parent = t; + c->surface.parentx = self->close_x; + c->surface.parenty = ob_rr_theme->paddingy + 1; framerender_label(self, l); framerender_max(self, m); @@ -116,136 +314,99 @@ void framerender_frame(Frame *self) framerender_close(self, c); } - if (self->client->decorations & Decor_Handle) { - Appearance *h, *g; + if (self->decorations & OB_FRAME_DECOR_HANDLE && + ob_rr_theme->handle_height > 0) + { + RrAppearance *h, *g; h = (self->focused ? - self->a_focused_handle : self->a_unfocused_handle); - g = (self->focused ? - theme_a_focused_grip : theme_a_unfocused_grip); + ob_rr_theme->a_focused_handle : ob_rr_theme->a_unfocused_handle); - if (g->surface.data.planar.grad == Background_ParentRelative) { - g->surface.data.planar.parent = h; - paint(self->handle, h); - } else - paint(self->handle, h); + RrPaint(h, self->handle, self->width, ob_rr_theme->handle_height); - g->surface.data.planar.parentx = 0; - g->surface.data.planar.parenty = 0; + if (self->decorations & OB_FRAME_DECOR_GRIPS) { + g = (self->focused ? + ob_rr_theme->a_focused_grip : ob_rr_theme->a_unfocused_grip); - paint(self->lgrip, g); + if (g->surface.grad == RR_SURFACE_PARENTREL) + g->surface.parent = h; - g->surface.data.planar.parentx = self->width - theme_grip_width; - g->surface.data.planar.parenty = 0; + g->surface.parentx = 0; + g->surface.parenty = 0; - paint(self->rgrip, g); + RrPaint(g, self->lgrip, + ob_rr_theme->grip_width, ob_rr_theme->handle_height); + + g->surface.parentx = self->width - ob_rr_theme->grip_width; + g->surface.parenty = 0; + + RrPaint(g, self->rgrip, + ob_rr_theme->grip_width, ob_rr_theme->handle_height); + } } + + XFlush(obt_display); } -static void framerender_label(Frame *self, Appearance *a) +static void framerender_label(ObFrame *self, RrAppearance *a) { - if (self->label_x < 0) return; - - + if (!self->label_on) return; /* set the texture's text! */ a->texture[0].data.text.string = self->client->title; - RECT_SET(a->texture[0].position, 0, 0, - self->label_width, theme_label_height); - - paint(self->label, a); + RrPaint(a, self->label, self->label_width, ob_rr_theme->label_height); } -static void framerender_icon(Frame *self, Appearance *a) +static void framerender_icon(ObFrame *self, RrAppearance *a) { - if (self->icon_x < 0) return; - - if (self->client->nicons) { - Icon *icon = client_icon(self->client, - theme_button_size + 2, theme_button_size + 2); - a->texture[0].type = RGBA; - a->texture[0].data.rgba.width = icon->width; - a->texture[0].data.rgba.height = icon->height; - a->texture[0].data.rgba.data = icon->data; - RECT_SET(self->a_icon->texture[0].position, 0, 0, - theme_button_size + 2, theme_button_size + 2); - } else - a->texture[0].type = NoTexture; - - paint(self->icon, a); -} + RrImage *icon; -static void framerender_max(Frame *self, Appearance *a) -{ - if (self->max_x < 0) return; + if (!self->icon_on) return; - RECT_SET(a->texture[0].position, 0, 0, - theme_button_size, theme_button_size); - paint(self->max, a); -} + icon = client_icon(self->client); -static void framerender_iconify(Frame *self, Appearance *a) -{ - if (self->iconify_x < 0) return; + if (icon) { + RrAppearanceClearTextures(a); + a->texture[0].type = RR_TEXTURE_IMAGE; + a->texture[0].data.image.alpha = 0xff; + a->texture[0].data.image.image = icon; + } else { + RrAppearanceClearTextures(a); + a->texture[0].type = RR_TEXTURE_NONE; + } - RECT_SET(a->texture[0].position, 0, 0, - theme_button_size, theme_button_size); - paint(self->iconify, a); + RrPaint(a, self->icon, + ob_rr_theme->button_size + 2, ob_rr_theme->button_size + 2); } -static void framerender_desk(Frame *self, Appearance *a) +static void framerender_max(ObFrame *self, RrAppearance *a) { - if (self->desk_x < 0) return; - - RECT_SET(a->texture[0].position, 0, 0, - theme_button_size, theme_button_size); - paint(self->desk, a); + if (!self->max_on) return; + RrPaint(a, self->max, ob_rr_theme->button_size, ob_rr_theme->button_size); } -static void framerender_shade(Frame *self, Appearance *a) +static void framerender_iconify(ObFrame *self, RrAppearance *a) { - if (self->shade_x < 0) return; - - RECT_SET(a->texture[0].position, 0, 0, - theme_button_size, theme_button_size); - paint(self->shade, a); + if (!self->iconify_on) return; + RrPaint(a, self->iconify, + ob_rr_theme->button_size, ob_rr_theme->button_size); } -static void framerender_close(Frame *self, Appearance *a) +static void framerender_desk(ObFrame *self, RrAppearance *a) { - if (self->close_x < 0) return; - - RECT_SET(a->texture[0].position, 0, 0, - theme_button_size, theme_button_size); - paint(self->close, a); + if (!self->desk_on) return; + RrPaint(a, self->desk, ob_rr_theme->button_size, ob_rr_theme->button_size); } -void framerender_popup_label(Window win, Size *sz, char *text) +static void framerender_shade(ObFrame *self, RrAppearance *a) { - Appearance *a; - - a = theme_app_hilite_label; - a->texture[0].data.text.string = text; - RECT_SET(a->area, 0, 0, sz->width, sz->height); - a->texture[0].position = a->area; - a->texture[0].position.x += theme_bevel; - a->texture[0].position.y += theme_bevel; - a->texture[0].position.width -= theme_bevel * 2; - a->texture[0].position.height -= theme_bevel * 2; - - XSetWindowBorderWidth(ob_display, win, theme_bwidth); - XSetWindowBorder(ob_display, win, theme_b_color->pixel); - - paint(win, a); + if (!self->shade_on) return; + RrPaint(a, self->shade, + ob_rr_theme->button_size, ob_rr_theme->button_size); } -void framerender_size_popup_label(char *text, Size *sz) +static void framerender_close(ObFrame *self, RrAppearance *a) { - Appearance *a; - - a = theme_app_hilite_label; - a->texture[0].data.text.string = text; - - appearance_minsize(a, &sz->width, &sz->height); - sz->width += theme_bevel * 2; - sz->height += theme_bevel * 2; + if (!self->close_on) return; + RrPaint(a, self->close, + ob_rr_theme->button_size, ob_rr_theme->button_size); }