fluxbox/src/IconbarTheme.cc

103 lines
4.2 KiB
C++
Raw Normal View History

2003-08-13 10:03:06 +00:00
// IconbarTheme.cc
2005-02-07 13:42:43 +00:00
// Copyright (c) 2003 - 2005 Henrik Kinnunen (fluxgen at fluxbox dot org)
2003-08-13 10:03:06 +00:00
// and Simon Bowden (rathnor at users.sourceforge.net)
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the "Software"),
// to deal in the Software without restriction, including without limitation
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
// and/or sell copies of the Software, and to permit persons to whom the
// Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.
2004-11-19 11:37:27 +00:00
// $Id$
2003-08-13 10:03:06 +00:00
2003-08-11 15:53:13 +00:00
#include "IconbarTheme.hh"
#include "FbTk/App.hh"
IconbarTheme::IconbarTheme(int screen_num,
const std::string &name,
const std::string &altname):
FbTk::Theme(screen_num),
m_focused_texture(*this, name + ".focused", altname + ".Focused"),
m_unfocused_texture(*this, name + ".unfocused", altname + ".Unfocused"),
2003-08-12 00:17:56 +00:00
m_empty_texture(*this, name + ".empty", altname + ".Empty"),
2003-08-13 09:59:25 +00:00
m_focused_border(*this, name + ".focused", altname + ".Focused"),
m_unfocused_border(*this, name + ".unfocused", altname + ".Unfocused"),
m_border(*this, name, altname),
2003-08-11 15:53:13 +00:00
m_focused_text(*this, name + ".focused", altname + ".Focused"),
2003-08-19 21:26:45 +00:00
m_unfocused_text(*this, name + ".unfocused", altname + ".Unfocused"),
2004-01-13 14:41:32 +00:00
m_name(name),
m_alpha(*this, name+".alpha", altname+".Alpha") {
2003-08-11 15:53:13 +00:00
FbTk::ThemeManager::instance().loadTheme(*this);
}
IconbarTheme::~IconbarTheme() {
}
2003-08-13 09:59:25 +00:00
2003-08-11 15:53:13 +00:00
void IconbarTheme::reconfigTheme() {
m_focused_text.update();
m_unfocused_text.update();
}
2003-08-19 21:26:45 +00:00
// fallback resources
bool IconbarTheme::fallback(FbTk::ThemeItem_base &item) {
using namespace FbTk;
ThemeManager &tm = ThemeManager::instance();
2003-08-28 23:51:26 +00:00
if (&m_focused_texture == &item) {
2004-04-26 15:04:37 +00:00
return (tm.loadItem(item, "window.label.focus", "Window.Label.Focus") ||
tm.loadItem(item, "toolbar.windowLabel", "toolbar.windowLabel"));
2003-08-28 23:51:26 +00:00
} else if (&m_unfocused_texture == &item) {
2004-04-26 15:04:37 +00:00
return (tm.loadItem(item, "window.label.unfocus", "Window.Label.Unfocus") ||
2003-08-19 21:26:45 +00:00
tm.loadItem(item, "toolbar.windowLabel", "toolbar.windowLabel"));
2004-04-26 15:04:37 +00:00
} else if (&m_empty_texture == &item) {
return (tm.loadItem(item, m_focused_texture.name(), m_focused_texture.altName()) ||
tm.loadItem(item, "toolbar.windowLabel", "toolbar.windowLabel") ||
tm.loadItem(item, "toolbar", "toolbar")
);
2004-08-25 17:16:40 +00:00
} else if (item.name() == m_name + ".focused.borderWidth" ||
2003-08-19 21:26:45 +00:00
item.name() == m_name + ".unfocused.borderWidth")
2004-08-25 17:16:40 +00:00
// don't fallback for base border, for theme backwards compatibility
2003-08-19 21:26:45 +00:00
return tm.loadItem(item, "borderWidth", "BorderWidth");
2003-08-28 23:51:26 +00:00
2004-08-25 17:16:40 +00:00
else if (item.name() == m_name + ".focused.borderColor" ||
2003-08-19 21:26:45 +00:00
item.name() == m_name + ".unfocused.borderColor")
2003-08-28 23:51:26 +00:00
2003-08-19 21:26:45 +00:00
return tm.loadItem(item, "borderColor", "BorderColor");
2003-08-28 23:51:26 +00:00
2003-08-19 21:26:45 +00:00
else if (item.name() == m_name + ".focused.font" ||
item.name() == m_name + ".unfocused.font")
2003-08-28 23:51:26 +00:00
2003-08-19 21:26:45 +00:00
return tm.loadItem(item, "window.font", "Window.Font");
2003-08-28 23:51:26 +00:00
else if (item.name() == m_name + ".focused.textColor") {
return tm.loadItem(item, "window.label.focus.textColor", "Window.Label.Focus.TextColor");
2004-01-13 14:41:32 +00:00
} else if (item.name() == m_name + ".unfocused.textColor") {
2003-08-19 21:26:45 +00:00
return tm.loadItem(item, "window.label.unfocus.textColor", "Window.Label.Unfocus.TextColor");
2004-01-13 14:41:32 +00:00
} else if (item.name() == m_name + ".alpha") {
if (!tm.loadItem(item, "toolbar.alpha", "Toolbar.Alpha")) {
*m_alpha = 255;
}
return true;
2004-01-13 14:41:32 +00:00
}
2003-08-28 23:51:26 +00:00
2003-08-19 21:26:45 +00:00
return false;
}