diff options
author | Treeki <treeki@gmail.com> | 2012-09-12 14:57:44 +0200 |
---|---|---|
committer | Treeki <treeki@gmail.com> | 2012-09-12 14:57:44 +0200 |
commit | 3189ca5efc5826405bf2e9c7d9949ad5ea9a8a10 (patch) | |
tree | d10e8cd4e462db28dd3c2f995905c4df57a20fed /lsglobals.cpp | |
parent | be8b56a7f0a8f6ba5456a099b61d032fd8aa2f61 (diff) | |
download | LayoutStudio-3189ca5efc5826405bf2e9c7d9949ad5ea9a8a10.tar.gz LayoutStudio-3189ca5efc5826405bf2e9c7d9949ad5ea9a8a10.zip |
initial un-exporter version
Diffstat (limited to '')
-rw-r--r-- | lsglobals.cpp | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/lsglobals.cpp b/lsglobals.cpp deleted file mode 100644 index 07f505e..0000000 --- a/lsglobals.cpp +++ /dev/null @@ -1,52 +0,0 @@ -/******************************************************************************* - This file is part of LayoutStudio (http://github.com/Treeki/LayoutStudio) - Copyright (c) 2010 Treeki (treeki@gmail.com) - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, version 2.0. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License 2.0 for more details. - - You should have received a copy of the GNU General Public License 2.0 - along with this program. If not, see <http://www.gnu.org/licenses/>. -*******************************************************************************/ - -#include "lsglobals.h" - -bool LSGlobals::m_loaded = false; -QHash<QString, QIcon> LSGlobals::m_icons; - - -bool LSGlobals::setup() { - if (m_loaded) - return false; - - - - // Load icons - loadIcon("pane"); - loadIcon("picture"); - loadIcon("textbox"); - loadIcon("bounding"); - loadIcon("window"); - - - - m_loaded = true; - return true; -} - - -bool LSGlobals::loadIcon(QString name) { - m_icons[name] = QIcon(QString(":icons/%1").arg(name)); - return true; -} - - -QIcon LSGlobals::getIcon(QString name) { - return m_icons.value(name); -} |