...allows us to get rid of the access key constants and the accessor functions in GtkLumiera
50 lines
1.6 KiB
C++
50 lines
1.6 KiB
C++
/*
|
|
ConfigKeys - magic keys to query the global application configuration
|
|
|
|
Copyright (C) Lumiera.org
|
|
2008, Joel Holdsworth <joel@airwebreathe.org.uk>
|
|
2017, Hermann Vosseler <Ichthyostega@web.de>
|
|
|
|
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; either version 2 of
|
|
the License, or (at your option) any later version.
|
|
|
|
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 for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
* *****************************************************/
|
|
|
|
|
|
/** @file config-keys.hpp
|
|
** Definition of access keys for global UI configuration.
|
|
**
|
|
** @see lumiera::AppState general Lumiera application main
|
|
** @see lumiera::Config
|
|
**
|
|
*/
|
|
|
|
#include "gui/config-keys.hpp"
|
|
|
|
namespace gui {
|
|
|
|
|
|
Literal KEY_TITLE = "Lumiera.title";
|
|
Literal KEY_VERSION = "Lumiera.version";
|
|
Literal KEY_WEBSITE = "Lumiera.website";
|
|
Literal KEY_AUTHORS = "Lumiera.authors";
|
|
Literal KEY_COPYRIGHT = "Lumiera.copyright";
|
|
|
|
Literal KEY_STYLESHEET = "Gui.stylesheet";
|
|
Literal KEY_UIRES_PATH = "Gui.resourcepath";
|
|
Literal KEY_ICON_PATH = "Gui.iconpath";
|
|
|
|
|
|
|
|
}// namespace gui
|