]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk/combobox.h
USE_xxx constants renamed to wxUSE_xxx. This is an incompatible change, you
[wxWidgets.git] / include / wx / gtk / combobox.h
index a0d3c360833a453a751bd0f2daf218c7e0a91cfb..c7d7b7064bcd59f92a585d3062e4bcd60aed18bf 100644 (file)
@@ -64,7 +64,6 @@ class wxComboBox: public wxControl
            const wxValidator& validator = wxDefaultValidator,
            const wxString& name = wxComboBoxNameStr);
 
-  // List functions
   void Clear(void);
   void Append( const wxString &item );
   void Append( const wxString &item, char* clientData );
@@ -79,11 +78,9 @@ class wxComboBox: public wxControl
   void SetSelection( int n );
   void SetStringSelection( const wxString &string );
 
-  // Text field functions
   wxString GetValue(void) const ;
   void SetValue(const wxString& value);
 
-  // Clipboard operations
   void Copy(void);
   void Cut(void);
   void Paste(void);
@@ -95,14 +92,22 @@ class wxComboBox: public wxControl
   void Remove(long from, long to);
   void SetSelection(long from, long to);
   void SetEditable(bool editable);
+  
+  void SetFont( const wxFont &font );
+  void OnSize( wxSizeEvent &event );
+  
+  // implementation
 
+    bool     m_alreadySent;
+    
   private:
   
     wxList   m_clientData;
+
+  GtkWidget* GetConnectWidget(void);
+  bool IsOwnGtkWindow( GdkWindow *window );
   
-  public:
-  
-    bool     m_alreadySent;
+  DECLARE_EVENT_TABLE()
 };
 
 #endif // __GTKCOMBOBOXH__