]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk1/listbox.h
more fixes, printing works quite fine now
[wxWidgets.git] / include / wx / gtk1 / listbox.h
index 44f4d5aa19480a942af60fd3c3ab2a09c517eccb..028422912dfb19da6fadb05cd1fb3465f65b0e47 100644 (file)
@@ -82,18 +82,22 @@ class wxListBox: public wxControl
     void SetSelection( int n, bool select = TRUE );
     void SetString( int n, const wxString &string );
     void SetStringSelection( const wxString &string, bool select = TRUE );
+    
     void SetFont( const wxFont &font );
+    void SetDropTarget( wxDropTarget *dropTarget );
+    virtual void SetBackgroundColour(const wxColour &colour);
 
-    virtual GtkWidget *GetConnectWidget(void);
-  
+  // implementation
+    
+    int GetIndex( GtkWidget *item ) const;
+    GtkWidget *GetConnectWidget(void);
+    bool IsOwnGtkWindow( GdkWindow *window );
+    
   private:
   
     GtkList   *m_list;
     wxList     m_clientData;
     
-  public:
-  
-    int GetIndex( GtkWidget *item ) const;
 };
 
 #endif // __GTKLISTBOXH__