]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk1/listbox.h
bool wxString::operator!() const added
[wxWidgets.git] / include / wx / gtk1 / listbox.h
index 2a062629b6301e0cf50b0b3d8d8fa546060a46c5..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
     
@@ -101,8 +107,9 @@ public:
   void ApplyWidgetStyle();
     
   GtkList   *m_list;
-  wxList   m_clientDataList;
-  wxList   m_clientObjectList;
+  wxList     m_clientDataList;
+  wxList     m_clientObjectList;
+  bool       m_hasCheckBoxes;
 };
 
 #endif // __GTKLISTBOXH__