File: ModIniKeys.cpp

package info (click to toggle)
freespace2-launcher-wxlauncher 0.11.0%2Bdfsg-2
  • links: PTS, VCS
  • area: contrib
  • in suites: buster
  • size: 2,368 kB
  • sloc: cpp: 13,446; python: 797; makefile: 12; sh: 12
file content (65 lines) | stat: -rw-r--r-- 3,601 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/*
 Copyright (C) 2009-2013 wxLauncher Team
 
 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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 */

#include "global/ModIniKeys.h"

const wxString MOD_INI_KEY_LAUNCHER_MOD_NAME				(_T("/launcher/modname"));
const wxString MOD_INI_KEY_LAUNCHER_IMAGE_255X112			(_T("/launcher/image255x112"));
const wxString MOD_INI_KEY_LAUNCHER_IMAGE_182X80			(_T("/launcher/image182x80"));
const wxString MOD_INI_KEY_LAUNCHER_INFO_TEXT				(_T("/launcher/infotext"));
const wxString MOD_INI_KEY_LAUNCHER_AUTHOR					(_T("/launcher/author"));
const wxString MOD_INI_KEY_LAUNCHER_NOTES					(_T("/launcher/notes"));
const wxString MOD_INI_KEY_LAUNCHER_WARN					(_T("/launcher/warn"));

const wxString MOD_INI_KEY_LAUNCHER_WEBSITE					(_T("/launcher/website"));
const wxString MOD_INI_KEY_LAUNCHER_FORUM					(_T("/launcher/forum"));
const wxString MOD_INI_KEY_LAUNCHER_BUGS					(_T("/launcher/bugs"));
const wxString MOD_INI_KEY_LAUNCHER_SUPPORT					(_T("/launcher/support"));

const wxString MOD_INI_KEY_RESOLUTION_MIN_HORIZONTAL_RES	(_T("/resolution/minhorizontalres"));
const wxString MOD_INI_KEY_RESOLUTION_MIN_VERTICAL_RES		(_T("/resolution/minverticalres"));

const wxString MOD_INI_KEY_EXTREMEFORCE_FORCED_FLAGS_ON		(_T("/extremeforce/forcedflagson"));
const wxString MOD_INI_KEY_EXTREMEFORCE_FORCED_FLAGS_OFF	(_T("/extremeforce/forcedflagsoff"));

const wxString MOD_INI_KEY_MULTIMOD_PRIMARY_LIST			(_T("/multimod/primarylist"));
const wxString MOD_INI_KEY_MULTIMOD_SECONDRY_LIST			(_T("/multimod/secondrylist"));
const wxString MOD_INI_KEY_MULTIMOD_SECONDARY_LIST			(_T("/multimod/secondarylist"));

const wxString MOD_INI_KEY_SKIN_WINDOW_TITLE				(_T("/skin/windowtitle"));
const wxString MOD_INI_KEY_SKIN_WINDOW_ICON					(_T("/skin/windowicon"));
const wxString MOD_INI_KEY_SKIN_BANNER						(_T("/skin/banner"));
const wxString MOD_INI_KEY_SKIN_WELCOME_TEXT				(_T("/skin/welcometext"));

const wxString MOD_INI_KEY_SKIN_MOD_IMAGE_255X112			(_T("/skin/modimage255x112"));
const wxString MOD_INI_KEY_SKIN_MOD_IMAGE_182X80			(_T("/skin/modimage182x80"));

const wxString MOD_INI_KEY_SKIN_ICON_OK						(_T("/skin/iconok"));
const wxString MOD_INI_KEY_SKIN_ICON_WARNING				(_T("/skin/iconwarn"));
const wxString MOD_INI_KEY_SKIN_ICON_WARNING_BIG			(_T("/skin/iconwarnbig"));
const wxString MOD_INI_KEY_SKIN_ICON_ERROR					(_T("/skin/iconerror"));
const wxString MOD_INI_KEY_SKIN_ICON_INFO					(_T("/skin/iconinfo"));
const wxString MOD_INI_KEY_SKIN_ICON_INFO_BIG				(_T("/skin/iconinfobig"));
const wxString MOD_INI_KEY_SKIN_ICON_HELP					(_T("/skin/iconhelp"));
const wxString MOD_INI_KEY_SKIN_ICON_HELP_BIG				(_T("/skin/iconhelpbig"));
const wxString MOD_INI_KEY_SKIN_ICON_IDEAL					(_T("/skin/iconideal"));

const wxString MOD_INI_KEY_SKIN_NEWS_SOURCE					(_T("/skin/newssource"));

const wxString MOD_INI_KEY_RECOMMENDED_LIGHTING_NAME		(_T("/recommendedlighting/name"));
const wxString MOD_INI_KEY_RECOMMENDED_LIGHTING_FLAGSET		(_T("/recommendedlighting/flagset"));