]> git.saurik.com Git - wxWidgets.git/commitdiff
correct tabbing for full keyboard access
authorStefan Csomor <csomor@advancedconcepts.ch>
Thu, 9 Feb 2006 15:03:51 +0000 (15:03 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Thu, 9 Feb 2006 15:03:51 +0000 (15:03 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37410 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/mac/carbon/combobox.h
include/wx/mac/carbon/spinctrl.h

index 2232caa7771d24e251be3268b0e3f60edeba6768..4ad1e4846a18d4134ae8b1bde9f6f9e8067ea624 100644 (file)
@@ -27,13 +27,12 @@ class WXDLLEXPORT wxComboBox : public wxControl, public wxComboBoxBase
   DECLARE_DYNAMIC_CLASS(wxComboBox)
 
  public:
-    inline wxComboBox() {}
+    wxComboBox() ;
     virtual ~wxComboBox();
 
     // forward these functions to all subcontrols
     virtual bool Enable(bool enable = true);
     virtual bool Show(bool show = true);
-    virtual void SetFocus();
 
     // callback functions
     virtual void DelegateTextChanged( const wxString& value );
@@ -125,6 +124,7 @@ class WXDLLEXPORT wxComboBox : public wxControl, public wxComboBoxBase
 
     wxCONTROL_ITEMCONTAINER_CLIENTDATAOBJECT_RECAST
 
+    WX_DECLARE_CONTROL_CONTAINER();
 protected:
     // override the base class virtuals involved in geometry calculations
     virtual wxSize DoGetBestSize() const;
@@ -143,6 +143,8 @@ protected:
     // the subcontrols
     wxComboBoxText*     m_text;
     wxComboBoxChoice*   m_choice;
+
+    DECLARE_EVENT_TABLE()
 };
 
 #endif
index 384e2b1d7a3d331faee12756a08e6cd330759b72..597009107364602d9c782e7443db5bc1199243b7 100755 (executable)
@@ -76,7 +76,6 @@ public:
     // forward these functions to all subcontrols
     virtual bool Enable(bool enable = TRUE);
     virtual bool Show(bool show = TRUE);
-    virtual void SetFocus();
 
     // get the subcontrols
     wxTextCtrl *GetText() const { return m_text; }
@@ -90,6 +89,8 @@ public:
     // number is out of range
     bool GetTextValue(int *val) const;
 
+    WX_DECLARE_CONTROL_CONTAINER();
+
 protected:
     // override the base class virtuals involved into geometry calculations
     virtual wxSize DoGetBestSize() const;
@@ -104,6 +105,7 @@ private:
     wxSpinButton *m_btn;
     
 private:
+    DECLARE_EVENT_TABLE()
     DECLARE_DYNAMIC_CLASS(wxSpinCtrl)
 };