00001 #include "BorderTheme.hh"
00002
00003 BorderTheme::BorderTheme(FbTk::Theme &theme, const std::string &name,
00004 const std::string &altname):
00005 m_width(theme, name + ".borderWidth", altname + ".BorderWidth"),
00006 m_color(theme, name + ".borderColor", altname + ".BorderColor") {
00007
00008 *m_width = 0;
00009 m_color->setFromString("black", theme.screenNum());
00010 }