diff options
author | Oz Linden <oz@lindenlab.com> | 2012-06-04 10:24:36 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2012-06-04 10:24:36 -0400 |
commit | ef962b37e9bce22ed26f4e8a36ed04d670298fe8 (patch) | |
tree | ea952ca93e0c9aff15e6d9ac3261f8c62f31c4e9 /indra/newview/llfloaterspellchecksettings.h | |
parent | 3329291a5ef392bf822d8163b0a7e2c88b2e7965 (diff) | |
parent | 20210455f5a350b3e8e24515ba7af71db0eece0b (diff) |
merge dictionary import
Diffstat (limited to 'indra/newview/llfloaterspellchecksettings.h')
-rw-r--r-- | indra/newview/llfloaterspellchecksettings.h | 25 |
1 files changed, 21 insertions, 4 deletions
diff --git a/indra/newview/llfloaterspellchecksettings.h b/indra/newview/llfloaterspellchecksettings.h index 2fbf47617a..3a4428d4c3 100644 --- a/indra/newview/llfloaterspellchecksettings.h +++ b/indra/newview/llfloaterspellchecksettings.h @@ -38,11 +38,28 @@ public: /*virtual*/ void onOpen(const LLSD& key); protected: - void onCancel(); - void onClickDictMove(const std::string& from, const std::string& to); - void onOK(); - void onSave(); + void onBtnCancel(); + void onBtnImport(); + void onBtnMove(const std::string& from, const std::string& to); + void onBtnOK(); + void onSpellCheckSettingsChange(); void refreshDictionaryLists(bool from_settings); }; +class LLFloaterSpellCheckerImport : public LLFloater +{ +public: + LLFloaterSpellCheckerImport(const LLSD& key); + + /*virtual*/ BOOL postBuild(); + +protected: + void onBtnBrowse(); + void onBtnCancel(); + void onBtnOK(); + + std::string mDictionaryDir; + std::string mDictionaryBasename; +}; + #endif // LLFLOATERSPELLCHECKERSETTINGS_H |