|
|
|
@ -23,12 +23,6 @@ namespace Launcher
|
|
|
|
|
bool loadSettings();
|
|
|
|
|
void saveSettings();
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Load the cells associated with the given content files for use in autocomplete
|
|
|
|
|
* @param filePaths the file paths of the content files to be examined
|
|
|
|
|
*/
|
|
|
|
|
void loadCellsForAutocomplete(QStringList filePaths);
|
|
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
|
void slotLoadedCellsChanged(QStringList cellNames);
|
|
|
|
|
|
|
|
|
@ -41,6 +35,11 @@ namespace Launcher
|
|
|
|
|
Config::GameSettings &mGameSettings;
|
|
|
|
|
Settings::Manager &mEngineSettings;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Load the cells associated with the given content files for use in autocomplete
|
|
|
|
|
* @param filePaths the file paths of the content files to be examined
|
|
|
|
|
*/
|
|
|
|
|
void loadCellsForAutocomplete(QStringList filePaths);
|
|
|
|
|
void loadSettingBool(QCheckBox *checkbox, const std::string& setting, const std::string& group);
|
|
|
|
|
void saveSettingBool(QCheckBox *checkbox, const std::string& setting, const std::string& group);
|
|
|
|
|
};
|
|
|
|
|