diff options
author | Kitty Barnett <develop@catznip.com> | 2012-06-04 16:10:32 +0200 |
---|---|---|
committer | Kitty Barnett <develop@catznip.com> | 2012-06-04 16:10:32 +0200 |
commit | 20210455f5a350b3e8e24515ba7af71db0eece0b (patch) | |
tree | 50e0150f86a43dc0488dc7f8615cbbcda9b222bc /indra/newview/llfloaterspellchecksettings.h | |
parent | 17605cc894ad458915d958919554345334892eb0 (diff) |
STORM-276 Dictionary import functionality and floater
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 33c376fff6..521b586835 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 // LLFLOATERAUTOREPLACESETTINGS_H |