Files
GDevelop/IDE/MySpellCheckDialog.h
T
Florian 9203fab207 Initial import
git-svn-id: svn://localhost@6 8062f311-0dae-4547-b526-b8ab9ac864a5
2010-01-24 19:15:15 +00:00

64 lines
1.8 KiB
C++

#ifndef __MY_SPELL_CHECK_DIALOG__
#define __MY_SPELL_CHECK_DIALOG__
// For compilers that support precompilation, includes "wx/wx.h".
#include "wx/wxprec.h"
#ifndef WX_PRECOMP
#include "wx/wx.h"
#endif
#include "SpellCheckDialogInterface.h"
// modelless SpellChecker dialog
class MySpellingDialog : public wxSpellCheckDialogInterface
{
public:
MySpellingDialog(wxWindow *parent, wxSpellCheckEngineInterface* SpellChecker = NULL);
~MySpellingDialog();
// Code handling the interface
void OnRecheckPage(wxCommandEvent& event);
void OnCheckWord(wxCommandEvent& event);
void OnReplaceWord(wxCommandEvent& event);
void OnIgnoreWord(wxCommandEvent& event);
void OnReplaceAll(wxCommandEvent& event);
void OnIgnoreAll(wxCommandEvent& event);
void OnAddWordToCustomDictionary(wxCommandEvent& event);
void OnEditCustomDictionary(wxCommandEvent& event);
void OnInit(wxInitDialogEvent& event);
void PopulateLanguageCombo();
void OnChangeLanguage(wxCommandEvent& event);
void OnChangeSuggestionSelection(wxCommandEvent& event);
void OnDblClkSuggestionSelection(wxCommandEvent& event);
void OnClose(wxCommandEvent& event);
virtual void SetMisspelledWord(const wxString& strMisspelling);
void CreateDialog();
private:
DECLARE_EVENT_TABLE()
};
class MyPersonalDictionaryDialog : public wxDialog
{
public:
MyPersonalDictionaryDialog(wxWindow* parent, wxSpellCheckEngineInterface* pEngine);
~MyPersonalDictionaryDialog();
void CreateDialog();
void PopulatePersonalWordListBox();
void AddWordToPersonalDictionary(wxCommandEvent& event);
void ReplaceInPersonalDictionary(wxCommandEvent& event);
void RemoveFromPersonalDictionary(wxCommandEvent& event);
void OnClose(wxCommandEvent& event);
protected:
wxSpellCheckEngineInterface* m_pSpellCheckEngine;
private:
DECLARE_EVENT_TABLE()
};
#endif // __MY_SPELL_CHECK_DIALOG__