From 3189ca5efc5826405bf2e9c7d9949ad5ea9a8a10 Mon Sep 17 00:00:00 2001 From: Treeki Date: Wed, 12 Sep 2012 14:57:44 +0200 Subject: initial un-exporter version --- lsglobals.cpp | 52 ---------------------------------------------------- 1 file changed, 52 deletions(-) delete mode 100644 lsglobals.cpp (limited to 'lsglobals.cpp') 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 . -*******************************************************************************/ - -#include "lsglobals.h" - -bool LSGlobals::m_loaded = false; -QHash 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); -} -- cgit v1.2.3