#ifndef LSGLOBALS_H #define LSGLOBALS_H #include #include class LSGlobals { public: static bool setup(); static QIcon getIcon(QString name); static QIcon getIconForPaneType(QString type); private: static bool m_loaded; static QHash m_icons; static QHash m_pane_icon_names; static bool loadIcon(QString name); }; #endif // LSGLOBALS_H