48 lines
2.3 KiB
C++
48 lines
2.3 KiB
C++
#include "global.h"
|
|
#include "SpecialFiles.h"
|
|
|
|
const RString SpecialFiles::USER_PACKAGES_DIR = "UserPackages/";
|
|
const RString SpecialFiles::PACKAGES_DIR = "Packages/";
|
|
const RString SpecialFiles::KEYMAPS_PATH = "Save/Keymaps.ini";
|
|
const RString SpecialFiles::PREFERENCES_INI_PATH = "Save/Preferences.ini";
|
|
const RString SpecialFiles::THEMES_DIR = "Themes/";
|
|
const RString SpecialFiles::LANGUAGES_SUBDIR = "Languages/";
|
|
// TODO: A theme should be able to specify a base language.
|
|
const RString SpecialFiles::BASE_LANGUAGE = "en";
|
|
const RString SpecialFiles::METRICS_FILE = "metrics.ini";
|
|
const RString SpecialFiles::CACHE_DIR = "Cache/";
|
|
const RString SpecialFiles::BASE_THEME_NAME = "_fallback";
|
|
const RString SpecialFiles::DEFAULTS_INI_PATH = "Data/Defaults.ini";
|
|
const RString SpecialFiles::STATIC_INI_PATH = "Data/Static.ini";
|
|
const RString SpecialFiles::TYPE_TXT_FILE = "Data/Type.txt";
|
|
const RString SpecialFiles::SONGS_DIR = "Songs/";
|
|
const RString SpecialFiles::COURSES_DIR = "Courses/";
|
|
const RString SpecialFiles::NOTESKINS_DIR = "NoteSkins/";
|
|
|
|
|
|
/*
|
|
* (c) 2003-2005 Chris Danford
|
|
* All rights reserved.
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
* copy of this software and associated documentation files (the
|
|
* "Software"), to deal in the Software without restriction, including
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
* distribute, and/or sell copies of the Software, and to permit persons to
|
|
* whom the Software is furnished to do so, provided that the above
|
|
* copyright notice(s) and this permission notice appear in all copies of
|
|
* the Software and that both the above copyright notice(s) and this
|
|
* permission notice appear in supporting documentation.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
|
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
|
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT
|
|
* OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
|
|
* OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
* OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
* PERFORMANCE OF THIS SOFTWARE.
|
|
*/
|
|
|