]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/motif/listbox.h
range with m_minimumPaneSize and m_maximumPaneSize
[wxWidgets.git] / include / wx / motif / listbox.h
index 8672e99adafa2b1409872e64a2d14a22534f4070..0a7ccee86fc3a75049118458618e71d4dab77832 100644 (file)
@@ -74,7 +74,11 @@ class WXDLLEXPORT wxListBox: public wxControl
   virtual int GetSelections(wxArrayInt& aSelections) const;
   virtual bool Selected(int n) const ;
   virtual wxString GetString(int n) const ;
+
   virtual void SetSize(int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO);
+  virtual void SetSize(const wxRect& rect, int sizeFlags = wxSIZE_AUTO)
+    { wxWindow::SetSize(rect, sizeFlags); }
+  virtual void SetSize(const wxSize& size) { wxWindow::SetSize(size); }
 
   // Set the specified item at the first visible item
   // or scroll to max range.
@@ -89,6 +93,10 @@ class WXDLLEXPORT wxListBox: public wxControl
 
   void Command(wxCommandEvent& event);
 
+// Implementation
+  virtual void ChangeFont(bool keepOriginalSize = TRUE);
+  virtual void ChangeBackgroundColour();
+  virtual void ChangeForegroundColour();
   WXWidget GetTopWidget() const;
 
 protected:
@@ -97,9 +105,6 @@ protected:
 
   // List mapping positions->client data
   wxList    m_clientDataList;
-
-public:
-  bool      m_inSetValue;
 };
 
 #endif