blob: fe387a14c602be5baff9a6fcb9ac03b792bf5193 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include "BorderTheme.hh"
BorderTheme::BorderTheme(FbTk::Theme &theme, const std::string &name,
const std::string &altname):
m_width(theme, name + ".borderWidth", altname + ".BorderWidth"),
m_color(theme, name + ".borderColor", altname + ".BorderColor") {
// set default values
*m_width = 0;
m_color->setFromString("black", theme.screenNum());
}
|