summaryrefslogtreecommitdiff
path: root/src/gui/theme.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2012-09-05 22:12:03 +0300
committerAndrei Karas <akaras@inbox.ru>2012-09-05 22:12:03 +0300
commit22ed653d8b630c813333d5c73a4ca02dede2a5a5 (patch)
treea8cffab510c989ffc7603be52a6e75d7fcb5cd87 /src/gui/theme.cpp
parent6fee84f3838bdd900e8cfc4a1e4d7f15f35bd6ed (diff)
downloadplus-22ed653d8b630c813333d5c73a4ca02dede2a5a5.tar.gz
plus-22ed653d8b630c813333d5c73a4ca02dede2a5a5.tar.bz2
plus-22ed653d8b630c813333d5c73a4ca02dede2a5a5.tar.xz
plus-22ed653d8b630c813333d5c73a4ca02dede2a5a5.zip
Add theme attribute for close button padding.
Attribute name: closePadding Default value: 3 pixels.
Diffstat (limited to 'src/gui/theme.cpp')
-rw-r--r--src/gui/theme.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/gui/theme.cpp b/src/gui/theme.cpp
index 26f250c4c..26d1e7402 100644
--- a/src/gui/theme.cpp
+++ b/src/gui/theme.cpp
@@ -431,6 +431,7 @@ Skin *Theme::readSkin(const std::string &filename, const bool full)
memset(&images, 0, sizeof(ImageRect));
int padding = 3;
int titlePadding = 4;
+ int closePadding = 3;
std::map<std::string, int> *const mOptions
= new std::map<std::string, int>();
@@ -483,6 +484,10 @@ Skin *Theme::readSkin(const std::string &filename, const bool full)
{
titlePadding = XML::getProperty(partNode, "value", 4);
}
+ else if (name == "closePadding")
+ {
+ closePadding = XML::getProperty(partNode, "value", 3);
+ }
else
{
(*mOptions)[name] = XML::getProperty(
@@ -501,6 +506,8 @@ Skin *Theme::readSkin(const std::string &filename, const bool full)
if (dBorders)
dBorders->decRef();
+ (*mOptions)["closePadding"] = closePadding;
+
Skin *const skin = new Skin(border, images, filename, "", padding,
titlePadding, mOptions);
skin->updateAlpha(mMinimumOpacity);