]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk1/listbox.h
Removed wxNullRegion
[wxWidgets.git] / include / wx / gtk1 / listbox.h
index fb21e9e100e2abd1dbc29ac38b97a37dc53d0e80..9d6cafe665c2b46ae0e8bbeb47a9fdc18aa2dc5d 100644 (file)
@@ -52,6 +52,7 @@ public:
                     const wxValidator& validator = wxDefaultValidator,
                    const wxString& name = wxListBoxNameStr )
   {
+      m_hasCheckBoxes = FALSE;
       Create(parent, id, pos, size, n, choices, style, validator, name);
   }
   ~wxListBox();
@@ -90,7 +91,12 @@ public:
   void SetString( int n, const wxString &string );
   void SetStringSelection( const wxString &string, bool select = TRUE );
     
+#if wxUSE_DRAG_AND_DROP
   void SetDropTarget( wxDropTarget *dropTarget );
+#endif
+  void SetToolTip( wxToolTip *tip );
+  void SetToolTip( const wxString &tip );
+
 
 // implementation
     
@@ -102,6 +108,8 @@ public:
     
   GtkList   *m_list;
   wxList     m_clientDataList;
+  wxList     m_clientObjectList;
+  bool       m_hasCheckBoxes;
 };
 
 #endif // __GTKLISTBOXH__