summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swift/Controllers')
-rw-r--r--Swift/Controllers/SettingConstants.cpp2
-rw-r--r--Swift/Controllers/SettingConstants.h2
2 files changed, 4 insertions, 0 deletions
diff --git a/Swift/Controllers/SettingConstants.cpp b/Swift/Controllers/SettingConstants.cpp
index a5328a4..a6756f5 100644
--- a/Swift/Controllers/SettingConstants.cpp
+++ b/Swift/Controllers/SettingConstants.cpp
@@ -22,7 +22,9 @@ const SettingsProvider::Setting<bool> SettingConstants::PLAY_SOUNDS("playSounds"
const SettingsProvider::Setting<std::string> SettingConstants::HIGHLIGHT_RULES("highlightRules", "@");
const SettingsProvider::Setting<bool> SettingConstants::SPELL_CHECKER("spellChecker", false);
const SettingsProvider::Setting<std::string> SettingConstants::DICT_PATH("dictPath", "/usr/share/myspell/dicts/");
const SettingsProvider::Setting<std::string> SettingConstants::PERSONAL_DICT_PATH("personaldictPath", "/home/");
const SettingsProvider::Setting<std::string> SettingConstants::DICT_FILE("dictFile", "en_US.dic");
const SettingsProvider::Setting<std::string> SettingConstants::INVITE_AUTO_ACCEPT_MODE("inviteAutoAcceptMode", "presence");
+const SettingsProvider::Setting<std::string> SettingConstants::TRELLIS_GRID_SIZE("trellisGridSize", "");
+const SettingsProvider::Setting<std::string> SettingConstants::TRELLIS_GRID_POSITIONS("trellisGridPositions", "");
}
diff --git a/Swift/Controllers/SettingConstants.h b/Swift/Controllers/SettingConstants.h
index 4d25bde..90e1db6 100644
--- a/Swift/Controllers/SettingConstants.h
+++ b/Swift/Controllers/SettingConstants.h
@@ -25,8 +25,10 @@ namespace Swift {
static const SettingsProvider::Setting<std::string> HIGHLIGHT_RULES;
static const SettingsProvider::Setting<bool> SPELL_CHECKER;
static const SettingsProvider::Setting<std::string> DICT_PATH;
static const SettingsProvider::Setting<std::string> PERSONAL_DICT_PATH;
static const SettingsProvider::Setting<std::string> DICT_FILE;
static const SettingsProvider::Setting<std::string> INVITE_AUTO_ACCEPT_MODE;
+ static const SettingsProvider::Setting<std::string> TRELLIS_GRID_SIZE;
+ static const SettingsProvider::Setting<std::string> TRELLIS_GRID_POSITIONS;
};
}