make parentrelative decorations work
This commit is contained in:
parent
04494f100b
commit
1e47e17d08
2 changed files with 62 additions and 12 deletions
69
src/frame.cc
69
src/frame.cc
|
@ -301,8 +301,12 @@ static void render(int screen, const otk::Size &size, Window win,
|
||||||
const otk::RenderTexture &texture, bool freedata=true)
|
const otk::RenderTexture &texture, bool freedata=true)
|
||||||
{
|
{
|
||||||
otk::Surface *s = new otk::Surface(screen, size);
|
otk::Surface *s = new otk::Surface(screen, size);
|
||||||
otk::display->renderControl(screen)->drawBackground(*s, texture);
|
if (texture.parentRelative())
|
||||||
XSetWindowBackgroundPixmap(**otk::display, win, s->pixmap());
|
XSetWindowBackgroundPixmap(**otk::display, win, ParentRelative);
|
||||||
|
else {
|
||||||
|
otk::display->renderControl(screen)->drawBackground(*s, texture);
|
||||||
|
XSetWindowBackgroundPixmap(**otk::display, win, s->pixmap());
|
||||||
|
}
|
||||||
XClearWindow(**otk::display, win);
|
XClearWindow(**otk::display, win);
|
||||||
if (*surface) delete *surface;
|
if (*surface) delete *surface;
|
||||||
if (freedata) s->freePixelData();
|
if (freedata) s->freePixelData();
|
||||||
|
@ -409,7 +413,12 @@ void Frame::adjustSize()
|
||||||
render(screen, otk::Size(geom.grip_width(), geom.handle_height), _lgrip,
|
render(screen, otk::Size(geom.grip_width(), geom.handle_height), _lgrip,
|
||||||
&_grip_sur, *(focus ? style->gripFocusBackground() :
|
&_grip_sur, *(focus ? style->gripFocusBackground() :
|
||||||
style->gripUnfocusBackground()));
|
style->gripUnfocusBackground()));
|
||||||
XSetWindowBackgroundPixmap(**otk::display, _rgrip, _grip_sur->pixmap());
|
if ((focus ? style->gripFocusBackground() :
|
||||||
|
style->gripUnfocusBackground())->parentRelative())
|
||||||
|
XSetWindowBackgroundPixmap(**otk::display, _rgrip, ParentRelative);
|
||||||
|
else {
|
||||||
|
XSetWindowBackgroundPixmap(**otk::display, _rgrip, _grip_sur->pixmap());
|
||||||
|
}
|
||||||
XClearWindow(**otk::display, _rgrip);
|
XClearWindow(**otk::display, _rgrip);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -430,9 +439,23 @@ void Frame::renderLabel()
|
||||||
otk::Surface *s = new otk::Surface(_client->screen(),
|
otk::Surface *s = new otk::Surface(_client->screen(),
|
||||||
otk::Size(geom.label_width,
|
otk::Size(geom.label_width,
|
||||||
geom.label_height()));
|
geom.label_height()));
|
||||||
control->drawBackground(*s, *(_client->focused() ?
|
const otk::RenderTexture *tx = (_client->focused() ?
|
||||||
style->labelFocusBackground() :
|
style->labelFocusBackground() :
|
||||||
style->labelUnfocusBackground()));
|
style->labelUnfocusBackground());
|
||||||
|
if (tx->parentRelative()) {
|
||||||
|
otk::pixel32 *dest = s->pixelData(), *src;
|
||||||
|
int w = _title_sur->size().width();
|
||||||
|
|
||||||
|
src = _title_sur->pixelData() + w * (geom.bevel + 1) + geom.title_x;
|
||||||
|
|
||||||
|
// get the background under the label
|
||||||
|
for (int y = 0; y < geom.button_size; ++y, src += w - geom.button_size)
|
||||||
|
for (int x = 0; x < geom.button_size; ++x, ++dest, ++src)
|
||||||
|
*dest = *src;
|
||||||
|
control->drawImage(*s, 0, 0, 0); // no image but draw the new background
|
||||||
|
} else
|
||||||
|
control->drawBackground(*s, *tx);
|
||||||
|
control->drawBackground(*s, *tx);
|
||||||
|
|
||||||
otk::ustring t = _client->title(); // the actual text to draw
|
otk::ustring t = _client->title(); // the actual text to draw
|
||||||
int x = geom.bevel; // x coord for the text
|
int x = geom.bevel; // x coord for the text
|
||||||
|
@ -476,7 +499,8 @@ void Frame::renderLabel()
|
||||||
|
|
||||||
static void renderButton(int screen, bool focus, bool press, Window win,
|
static void renderButton(int screen, bool focus, bool press, Window win,
|
||||||
otk::Surface **sur, int butsize,
|
otk::Surface **sur, int butsize,
|
||||||
const otk::PixmapMask *mask)
|
const otk::PixmapMask *mask, int xoffset, int yoffset,
|
||||||
|
otk::Surface *bgsurface)
|
||||||
{
|
{
|
||||||
const otk::RenderStyle *style = otk::RenderStyle::style(screen);
|
const otk::RenderStyle *style = otk::RenderStyle::style(screen);
|
||||||
const otk::RenderControl *control = otk::display->renderControl(screen);
|
const otk::RenderControl *control = otk::display->renderControl(screen);
|
||||||
|
@ -492,7 +516,19 @@ static void renderButton(int screen, bool focus, bool press, Window win,
|
||||||
const otk::RenderColor *maskcolor = (focus ?
|
const otk::RenderColor *maskcolor = (focus ?
|
||||||
style->buttonFocusColor() :
|
style->buttonFocusColor() :
|
||||||
style->buttonUnfocusColor());
|
style->buttonUnfocusColor());
|
||||||
control->drawBackground(*s, *tx);
|
if (tx->parentRelative()) {
|
||||||
|
otk::pixel32 *dest = s->pixelData(), *src;
|
||||||
|
int w = bgsurface->size().width();
|
||||||
|
|
||||||
|
src = bgsurface->pixelData() + w * yoffset + xoffset;
|
||||||
|
|
||||||
|
// get the background under the button
|
||||||
|
for (int y = 0; y < butsize; ++y, src += w - butsize)
|
||||||
|
for (int x = 0; x < butsize; ++x, ++dest, ++src)
|
||||||
|
*dest = *src;
|
||||||
|
control->drawImage(*s, 0, 0, 0); // no image but draw the new background
|
||||||
|
} else
|
||||||
|
control->drawBackground(*s, *tx);
|
||||||
control->drawMask(*s, *maskcolor, *mask);
|
control->drawMask(*s, *maskcolor, *mask);
|
||||||
|
|
||||||
XSetWindowBackgroundPixmap(**otk::display, win, s->pixmap());
|
XSetWindowBackgroundPixmap(**otk::display, win, s->pixmap());
|
||||||
|
@ -508,7 +544,8 @@ void Frame::renderMax()
|
||||||
bool press = _max_press || _client->maxVert() || _client->maxHorz();
|
bool press = _max_press || _client->maxVert() || _client->maxHorz();
|
||||||
renderButton(_client->screen(), _client->focused(), press, _max,
|
renderButton(_client->screen(), _client->focused(), press, _max,
|
||||||
&_max_sur, geom.button_size,
|
&_max_sur, geom.button_size,
|
||||||
otk::RenderStyle::style(_client->screen())->maximizeMask());
|
otk::RenderStyle::style(_client->screen())->maximizeMask(),
|
||||||
|
geom.max_x, (geom.bevel + 1), _title_sur);
|
||||||
}
|
}
|
||||||
|
|
||||||
void Frame::renderDesk()
|
void Frame::renderDesk()
|
||||||
|
@ -517,7 +554,8 @@ void Frame::renderDesk()
|
||||||
bool press = _desk_press || _client->desktop() == 0xffffffff;
|
bool press = _desk_press || _client->desktop() == 0xffffffff;
|
||||||
renderButton(_client->screen(), _client->focused(), press, _desk,
|
renderButton(_client->screen(), _client->focused(), press, _desk,
|
||||||
&_desk_sur, geom.button_size,
|
&_desk_sur, geom.button_size,
|
||||||
otk::RenderStyle::style(_client->screen())->alldesktopsMask());
|
otk::RenderStyle::style(_client->screen())->alldesktopsMask(),
|
||||||
|
geom.desktop_x, (geom.bevel + 1), _title_sur);
|
||||||
}
|
}
|
||||||
|
|
||||||
void Frame::renderIconify()
|
void Frame::renderIconify()
|
||||||
|
@ -525,7 +563,8 @@ void Frame::renderIconify()
|
||||||
if (!(_decorations & Client::Decor_Iconify)) return;
|
if (!(_decorations & Client::Decor_Iconify)) return;
|
||||||
renderButton(_client->screen(), _client->focused(), _iconify_press, _iconify,
|
renderButton(_client->screen(), _client->focused(), _iconify_press, _iconify,
|
||||||
&_iconify_sur, geom.button_size,
|
&_iconify_sur, geom.button_size,
|
||||||
otk::RenderStyle::style(_client->screen())->iconifyMask());
|
otk::RenderStyle::style(_client->screen())->iconifyMask(),
|
||||||
|
geom.iconify_x, (geom.bevel + 1), _title_sur);
|
||||||
}
|
}
|
||||||
|
|
||||||
void Frame::renderClose()
|
void Frame::renderClose()
|
||||||
|
@ -533,7 +572,8 @@ void Frame::renderClose()
|
||||||
if (!(_decorations & Client::Decor_Close)) return;
|
if (!(_decorations & Client::Decor_Close)) return;
|
||||||
renderButton(_client->screen(), _client->focused(), _close_press, _close,
|
renderButton(_client->screen(), _client->focused(), _close_press, _close,
|
||||||
&_close_sur, geom.button_size,
|
&_close_sur, geom.button_size,
|
||||||
otk::RenderStyle::style(_client->screen())->closeMask());
|
otk::RenderStyle::style(_client->screen())->closeMask(),
|
||||||
|
geom.close_x, (geom.bevel + 1), _title_sur);
|
||||||
}
|
}
|
||||||
|
|
||||||
void Frame::renderIcon()
|
void Frame::renderIcon()
|
||||||
|
@ -654,6 +694,7 @@ void Frame::layoutTitle()
|
||||||
case 'd':
|
case 'd':
|
||||||
case 'D':
|
case 'D':
|
||||||
if (!d) break;
|
if (!d) break;
|
||||||
|
geom.desktop_x = x;
|
||||||
XMapWindow(**otk::display, _desk);
|
XMapWindow(**otk::display, _desk);
|
||||||
XMoveWindow(**otk::display, _desk, x, geom.bevel + 1);
|
XMoveWindow(**otk::display, _desk, x, geom.bevel + 1);
|
||||||
x += geom.button_size + geom.bevel;
|
x += geom.button_size + geom.bevel;
|
||||||
|
@ -661,6 +702,7 @@ void Frame::layoutTitle()
|
||||||
case 'i':
|
case 'i':
|
||||||
case 'I':
|
case 'I':
|
||||||
if (!i) break;
|
if (!i) break;
|
||||||
|
geom.iconify_x = x;
|
||||||
XMapWindow(**otk::display, _iconify);
|
XMapWindow(**otk::display, _iconify);
|
||||||
XMoveWindow(**otk::display, _iconify, x, geom.bevel + 1);
|
XMoveWindow(**otk::display, _iconify, x, geom.bevel + 1);
|
||||||
x += geom.button_size + geom.bevel;
|
x += geom.button_size + geom.bevel;
|
||||||
|
@ -668,6 +710,7 @@ void Frame::layoutTitle()
|
||||||
case 't':
|
case 't':
|
||||||
case 'T':
|
case 'T':
|
||||||
if (!t) break;
|
if (!t) break;
|
||||||
|
geom.title_x = x;
|
||||||
XMapWindow(**otk::display, _label);
|
XMapWindow(**otk::display, _label);
|
||||||
XMoveWindow(**otk::display, _label, x, geom.bevel);
|
XMoveWindow(**otk::display, _label, x, geom.bevel);
|
||||||
x += geom.label_width + geom.bevel;
|
x += geom.label_width + geom.bevel;
|
||||||
|
@ -675,6 +718,7 @@ void Frame::layoutTitle()
|
||||||
case 'm':
|
case 'm':
|
||||||
case 'M':
|
case 'M':
|
||||||
if (!m) break;
|
if (!m) break;
|
||||||
|
geom.max_x = x;
|
||||||
XMapWindow(**otk::display, _max);
|
XMapWindow(**otk::display, _max);
|
||||||
XMoveWindow(**otk::display, _max, x, geom.bevel + 1);
|
XMoveWindow(**otk::display, _max, x, geom.bevel + 1);
|
||||||
x += geom.button_size + geom.bevel;
|
x += geom.button_size + geom.bevel;
|
||||||
|
@ -682,6 +726,7 @@ void Frame::layoutTitle()
|
||||||
case 'c':
|
case 'c':
|
||||||
case 'C':
|
case 'C':
|
||||||
if (!c) break;
|
if (!c) break;
|
||||||
|
geom.close_x = x;
|
||||||
XMapWindow(**otk::display, _close);
|
XMapWindow(**otk::display, _close);
|
||||||
XMoveWindow(**otk::display, _close, x, geom.bevel + 1);
|
XMoveWindow(**otk::display, _close, x, geom.bevel + 1);
|
||||||
x += geom.button_size + geom.bevel;
|
x += geom.button_size + geom.bevel;
|
||||||
|
|
|
@ -32,6 +32,11 @@ struct FrameGeometry {
|
||||||
int label_height() { return font_height; }
|
int label_height() { return font_height; }
|
||||||
int handle_height; // static, from the style
|
int handle_height; // static, from the style
|
||||||
int icon_x; // x-position of the window icon button
|
int icon_x; // x-position of the window icon button
|
||||||
|
int title_x; // x-position of the window title
|
||||||
|
int iconify_x; // x-position of the window iconify button
|
||||||
|
int desktop_x; // x-position of the window all-desktops button
|
||||||
|
int max_x; // x-position of the window maximize button
|
||||||
|
int close_x; // x-position of the window close button
|
||||||
int handle_y;
|
int handle_y;
|
||||||
int button_size; // static, from the style
|
int button_size; // static, from the style
|
||||||
int grip_width() { return button_size * 2; }
|
int grip_width() { return button_size * 2; }
|
||||||
|
|
Loading…
Reference in a new issue