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)
5  2008, Joel Holdsworth <joel@airwebreathe.org.uk>
6  2017, Hermann Vosseler <Ichthyostega@web.de>
7 
8   **Lumiera** is free software; you can redistribute it and/or modify it
9   under the terms of the GNU General Public License as published by the
10   Free Software Foundation; either version 2 of the License, or (at your
11   option) any later version. See the file COPYING for further details.
12 
13 * *****************************************************************/
14 
15 
24 #include "stage/config-keys.hpp"
25 
26 namespace stage {
27 
28 
29  Literal KEY_TITLE = "Lumiera.title";
30  Literal KEY_VERSION = "Lumiera.version";
31  Literal KEY_WEBSITE = "Lumiera.website";
32  Literal KEY_AUTHORS = "Lumiera.authors";
33  Literal KEY_COPYRIGHT = "Lumiera.copyright";
34 
35  Literal KEY_STYLESHEET = "Gui.stylesheet";
36  Literal KEY_UIRES_PATH = "Gui.resourcepath";
37  Literal KEY_ICON_PATH = "Gui.iconpath";
38 
39 
40 
41 }// namespace stage
Definition of access keys for global UI configuration.
Lumiera GTK UI implementation root.
Definition: guifacade.cpp:37