Lumiera  0.pre.03
»edit your freedom«
config-keys.cpp
1 /*
2  ConfigKeys - magic keys to query the global application configuration
3 
4  Copyright (C) Lumiera.org
5  2008, Joel Holdsworth <joel@airwebreathe.org.uk>
6  2017, Hermann Vosseler <Ichthyostega@web.de>
7 
8  This program is free software; you can redistribute it and/or
9  modify it under the terms of the GNU General Public License as
10  published by the Free Software Foundation; either version 2 of
11  the License, or (at your option) any later version.
12 
13  This program is distributed in the hope that it will be useful,
14  but WITHOUT ANY WARRANTY; without even the implied warranty of
15  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  GNU General Public License for more details.
17 
18  You should have received a copy of the GNU General Public License
19  along with this program; if not, write to the Free Software
20  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 
22 * *****************************************************/
23 
24 
33 #include "stage/config-keys.hpp"
34 
35 namespace stage {
36 
37 
38  Literal KEY_TITLE = "Lumiera.title";
39  Literal KEY_VERSION = "Lumiera.version";
40  Literal KEY_WEBSITE = "Lumiera.website";
41  Literal KEY_AUTHORS = "Lumiera.authors";
42  Literal KEY_COPYRIGHT = "Lumiera.copyright";
43 
44  Literal KEY_STYLESHEET = "Gui.stylesheet";
45  Literal KEY_UIRES_PATH = "Gui.resourcepath";
46  Literal KEY_ICON_PATH = "Gui.iconpath";
47 
48 
49 
50 }// namespace stage
Definition of access keys for global UI configuration.
Lumiera GTK UI implementation root.
Definition: guifacade.cpp:46