void OnEvent(wxMouseEvent& event);
+ void SetText(const wxString& text) { m_text = text; Refresh(); }
+
private:
+ wxString m_text;
+
bool m_dirty;
DECLARE_EVENT_TABLE()
void InitToolBar(wxToolBar* toolBar);
void OnSize(wxSizeEvent& event);
- void OnIconize(wxIconizeEvent& event);
void OnAbout(wxCommandEvent& event);
void OnNewWindow(wxCommandEvent& event);
void OnQuit(wxCommandEvent& event);
void OnMove(wxMoveEvent& event);
void OnClose(wxCloseEvent& event);
+#if wxUSE_CLIPBOARD
+ void OnPaste(wxCommandEvent& event);
+ void OnUpdatePaste(wxUpdateUIEvent& event);
+#endif // wxUSE_CLIPBOARD
+
DECLARE_EVENT_TABLE()
};