titlebar layouts work
This commit is contained in:
parent
3a65ca613c
commit
a4a8d09f4b
3 changed files with 64 additions and 10 deletions
|
@ -58,3 +58,5 @@ def resize(data):
|
||||||
data.press_clientwidth() + dx,
|
data.press_clientwidth() + dx,
|
||||||
data.press_clientheight() + dy);
|
data.press_clientheight() + dy);
|
||||||
|
|
||||||
|
def execute(bin, screen = 0):
|
||||||
|
Openbox_execute(openbox, screen, bin)
|
||||||
|
|
|
@ -11,6 +11,13 @@ client_buttons = ["A-1", "A-2", "A-3"]
|
||||||
# theme - the theme used to decorate everything.
|
# theme - the theme used to decorate everything.
|
||||||
theme = "/usr/local/share/openbox/styles/nyz"
|
theme = "/usr/local/share/openbox/styles/nyz"
|
||||||
|
|
||||||
|
# titlebar_layout - the layout of the buttons/label on client titlebars, can be
|
||||||
|
# made up of the following:
|
||||||
|
# I - iconify button, L - text label, M - maximize button,
|
||||||
|
# S - sticky button, C - close button
|
||||||
|
# If no 'L' is included in the string, one will be added to
|
||||||
|
# the end by Openbox.
|
||||||
|
titlebar_layout = "ILC"
|
||||||
|
|
||||||
#############################################################################
|
#############################################################################
|
||||||
### Options that can be modified by the user to change the default hooks' ###
|
### Options that can be modified by the user to change the default hooks' ###
|
||||||
|
@ -18,7 +25,7 @@ theme = "/usr/local/share/openbox/styles/nyz"
|
||||||
#############################################################################
|
#############################################################################
|
||||||
|
|
||||||
# resize_nearest - 1 to resize from the corner nearest where the mouse is, 0
|
# resize_nearest - 1 to resize from the corner nearest where the mouse is, 0
|
||||||
# to resize always from the bottom right corner
|
# to resize always from the bottom right corner.
|
||||||
resize_nearest = 1
|
resize_nearest = 1
|
||||||
|
|
||||||
|
|
||||||
|
|
61
src/frame.cc
61
src/frame.cc
|
@ -128,6 +128,8 @@ void OBFrame::adjustSize()
|
||||||
_decorations = _client->decorations();
|
_decorations = _client->decorations();
|
||||||
_decorations = 0xffffffff;
|
_decorations = 0xffffffff;
|
||||||
|
|
||||||
|
// true/false for whether to show each element of the titlebar
|
||||||
|
bool tit_i = false, tit_m = false, tit_s = false, tit_c = false;
|
||||||
int width; // the width of the client and its border
|
int width; // the width of the client and its border
|
||||||
int bwidth; // width to make borders
|
int bwidth; // width to make borders
|
||||||
int cbwidth; // width of the inner client border
|
int cbwidth; // width of the inner client border
|
||||||
|
@ -181,10 +183,53 @@ void OBFrame::adjustSize()
|
||||||
// separation between titlebar elements
|
// separation between titlebar elements
|
||||||
const int sep = bevel + 1;
|
const int sep = bevel + 1;
|
||||||
|
|
||||||
std::string layout = "SLIMC"; // XXX: get this from somewhere
|
std::string layout;
|
||||||
// XXX: it is REQUIRED that by this point, the string only has one of each
|
if (!python_get_string("titlebar_layout", &layout))
|
||||||
// possible letter, all of the letters are valid, and L exists somewhere in
|
layout = "ILMC";
|
||||||
// the string!
|
|
||||||
|
// this code ensures that the string only has one of each possible
|
||||||
|
// letter, all of the letters are valid, and L exists somewhere in the
|
||||||
|
// string!
|
||||||
|
bool tit_l = false;
|
||||||
|
|
||||||
|
for (std::string::size_type i = 0; i < layout.size(); ++i) {
|
||||||
|
switch(layout[i]) {
|
||||||
|
case 'i':
|
||||||
|
case 'I':
|
||||||
|
if (!tit_i && (_decorations & OBClient::Decor_Iconify)) {
|
||||||
|
tit_i = true;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
case 'l':
|
||||||
|
case 'L':
|
||||||
|
if (!tit_l) {
|
||||||
|
tit_l = true;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
case 'm':
|
||||||
|
case 'M':
|
||||||
|
if (!tit_m && (_decorations & OBClient::Decor_Maximize)) {
|
||||||
|
tit_m = true;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
case 's':
|
||||||
|
case 'S':
|
||||||
|
if (!tit_s && (_decorations & OBClient::Decor_Sticky)) {
|
||||||
|
tit_s = true;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
case 'c':
|
||||||
|
case 'C':
|
||||||
|
if (!tit_c && (_decorations & OBClient::Decor_Close)) {
|
||||||
|
tit_c = true;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// if we get here then we don't want the letter, kill it
|
||||||
|
layout.erase(i--, 1);
|
||||||
|
}
|
||||||
|
if (!tit_l)
|
||||||
|
layout += 'L';
|
||||||
|
|
||||||
// the size of the label. this ASSUMES the layout has only buttons other
|
// the size of the label. this ASSUMES the layout has only buttons other
|
||||||
// that the ONE LABEL!!
|
// that the ONE LABEL!!
|
||||||
|
@ -260,19 +305,19 @@ void OBFrame::adjustSize()
|
||||||
// map/unmap all the windows
|
// map/unmap all the windows
|
||||||
if (_decorations & OBClient::Decor_Titlebar) {
|
if (_decorations & OBClient::Decor_Titlebar) {
|
||||||
_label.show();
|
_label.show();
|
||||||
if (_decorations & OBClient::Decor_Iconify)
|
if (tit_i)
|
||||||
_button_iconify.show();
|
_button_iconify.show();
|
||||||
else
|
else
|
||||||
_button_iconify.hide();
|
_button_iconify.hide();
|
||||||
if (_decorations & OBClient::Decor_Maximize)
|
if (tit_m)
|
||||||
_button_max.show();
|
_button_max.show();
|
||||||
else
|
else
|
||||||
_button_max.hide();
|
_button_max.hide();
|
||||||
if (_decorations & OBClient::Decor_Sticky)
|
if (tit_s)
|
||||||
_button_stick.show();
|
_button_stick.show();
|
||||||
else
|
else
|
||||||
_button_stick.hide();
|
_button_stick.hide();
|
||||||
if (_decorations & OBClient::Decor_Close)
|
if (tit_c)
|
||||||
_button_close.show();
|
_button_close.show();
|
||||||
else
|
else
|
||||||
_button_close.hide();
|
_button_close.hide();
|
||||||
|
|
Loading…
Reference in a new issue