// Resources.cc for Fluxbox Window Manager // Copyright (c) 2004 - 2006 Henrik Kinnunen (fluxgen at fluxbox dot org) // // 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. // $Id$ // holds main resource functions #include "FbTk/StringUtil.hh" #include "FbTk/Resource.hh" #include "WinButton.hh" #include "fluxbox.hh" #include "Layer.hh" #include #include #include #ifdef HAVE_CSTRING #include #else #include #endif using std::string; using std::vector; using namespace FbTk; //----------------------------------------------------------------- //---- accessors for int, bool, and some enums with Resource ------ //----------------------------------------------------------------- namespace FbTk { template<> void FbTk::Resource:: setFromString(const char* strval) { int val; if (sscanf(strval, "%d", &val)==1) *this = val; } template<> void FbTk::Resource:: setFromString(const char *strval) { *this = strval; } template<> void FbTk::Resource:: setFromString(char const *strval) { *this = (bool)!strcasecmp(strval, "true"); } template<> void FbTk::Resource >:: setFromString(char const *strval) { vector val; StringUtil::stringtok(val, strval); //clear old values m_value.clear(); for (size_t i = 0; i < val.size(); i++) { if (strcasecmp(val[i].c_str(), "Maximize")==0) m_value.push_back(WinButton::MAXIMIZE); else if (strcasecmp(val[i].c_str(), "Minimize")==0) m_value.push_back(WinButton::MINIMIZE); else if (strcasecmp(val[i].c_str(), "Shade")==0) m_value.push_back(WinButton::SHADE); else if (strcasecmp(val[i].c_str(), "Stick")==0) m_value.push_back(WinButton::STICK); else if (strcasecmp(val[i].c_str(), "MenuIcon")==0) m_value.push_back(WinButton::MENUICON); else if (strcasecmp(val[i].c_str(), "Close")==0) m_value.push_back(WinButton::CLOSE); } } template<> void FbTk::Resource:: setFromString(char const *strval) { if (strcasecmp(strval, "Titlebar")==0) m_value= Fluxbox::ATTACH_AREA_TITLEBAR; else m_value= Fluxbox::ATTACH_AREA_WINDOW; } template<> void FbTk::Resource:: setFromString(const char *strval) { if (sscanf(strval, "%ul", &m_value) != 1) setDefaultValue(); } template<> void FbTk::Resource:: setFromString(const char *strval) { if (sscanf(strval, "%llu", &m_value) != 1) setDefaultValue(); } //----------------------------------------------------------------- //---- manipulators for int, bool, and some enums with Resource --- //----------------------------------------------------------------- template<> string FbTk::Resource:: getString() const { return string(**this == true ? "true" : "false"); } template<> string FbTk::Resource:: getString() const { char strval[256]; sprintf(strval, "%d", **this); return string(strval); } template<> string FbTk::Resource:: getString() const { return **this; } template<> string FbTk::Resource >:: getString() const { string retval; for (size_t i = 0; i < m_value.size(); i++) { switch (m_value[i]) { case WinButton::SHADE: retval.append("Shade"); break; case WinButton::MINIMIZE: retval.append("Minimize"); break; case WinButton::MAXIMIZE: retval.append("Maximize"); break; case WinButton::CLOSE: retval.append("Close"); break; case WinButton::STICK: retval.append("Stick"); break; case WinButton::MENUICON: retval.append("MenuIcon"); break; default: break; } retval.append(" "); } return retval; } template<> string FbTk::Resource:: getString() const { if (m_value == Fluxbox::ATTACH_AREA_TITLEBAR) return "Titlebar"; else return "Window"; } template<> string FbTk::Resource:: getString() const { char tmpstr[128]; sprintf(tmpstr, "%ul", m_value); return string(tmpstr); } template<> string FbTk::Resource:: getString() const { char tmpstr[128]; sprintf(tmpstr, "%llu", (unsigned long long) m_value); return string(tmpstr); } template<> void FbTk::Resource:: setFromString(const char *strval) { int tempnum = 0; if (sscanf(strval, "%d", &tempnum) == 1) m_value = tempnum; else if (strcasecmp(strval, "Menu") == 0) m_value = ::Layer::MENU; else if (strcasecmp(strval, "AboveDock") == 0) m_value = ::Layer::ABOVE_DOCK; else if (strcasecmp(strval, "Dock") == 0) m_value = ::Layer::DOCK; else if (strcasecmp(strval, "Top") == 0) m_value = ::Layer::TOP; else if (strcasecmp(strval, "Normal") == 0) m_value = ::Layer::NORMAL; else if (strcasecmp(strval, "Bottom") == 0) m_value = ::Layer::BOTTOM; else if (strcasecmp(strval, "Desktop") == 0) m_value = ::Layer::DESKTOP; else setDefaultValue(); } template<> string FbTk::Resource:: getString() const { switch (m_value.getNum()) { case Layer::MENU: return string("Menu"); case Layer::ABOVE_DOCK: return string("AboveDock"); case Layer::DOCK: return string("Dock"); case Layer::TOP: return string("Top"); case Layer::NORMAL: return string("Normal"); case Layer::BOTTOM: return string("Bottom"); case Layer::DESKTOP: return string("Desktop"); default: char tmpstr[128]; sprintf(tmpstr, "%d", m_value.getNum()); return string(tmpstr); } } template<> void FbTk::Resource:: setFromString(const char *strval) { if (sscanf(strval, "%ld", &m_value) != 1) setDefaultValue(); } template<> string FbTk::Resource:: getString() const { char tmpstr[128]; sprintf(tmpstr, "%ld", m_value); return string(tmpstr); } } // end namespace FbTk