]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/os2/textctrl.h
Unicode compilation fix.
[wxWidgets.git] / include / wx / os2 / textctrl.h
index b7a701274ff621bc2ccf62be72d49a74c0f6499b..9eb7c150002991efd89f90ccb44616a0175c3003 100644 (file)
@@ -30,6 +30,7 @@ public:
     {
         Create(pParent, vId, rsValue, rPos, rSize, lStyle, rValidator, rsName);
     }
+    ~wxTextCtrl();
 
     bool Create( wxWindow*          pParent
                 ,wxWindowID         vId
@@ -118,7 +119,6 @@ public:
                               ,long lTo
                              );
     virtual void SetEditable(bool bEditable);
-    virtual void SetFocus(void);
     virtual void SetWindowStyleFlag(long lStyle);
 
     //
@@ -155,12 +155,16 @@ public:
     void OnPaste(wxCommandEvent& rEvent);
     void OnUndo(wxCommandEvent& rEvent);
     void OnRedo(wxCommandEvent& rEvent);
+    void OnDelete(wxCommandEvent& rEvent);
+    void OnSelectAll(wxCommandEvent& rEvent);
 
     void OnUpdateCut(wxUpdateUIEvent& rEvent);
     void OnUpdateCopy(wxUpdateUIEvent& rEvent);
     void OnUpdatePaste(wxUpdateUIEvent& rEvent);
     void OnUpdateUndo(wxUpdateUIEvent& rEvent);
     void OnUpdateRedo(wxUpdateUIEvent& rEvent);
+    void OnUpdateDelete(wxUpdateUIEvent& rEvent);
+    void OnUpdateSelectAll(wxUpdateUIEvent& rEvent);
 
     inline bool IsMLE(void) {return m_bIsMLE;}
     inline void SetMLE(bool bIsMLE) {m_bIsMLE = bIsMLE;}