-class wxListBox: public wxControl
-{
- DECLARE_DYNAMIC_CLASS(wxListBox)
-
- public:
-
- wxListBox(void);
- wxListBox( wxWindow *parent, wxWindowID id,
- const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
- int n = 0, const wxString choices[] = NULL,
- long style = 0, const wxString &name = wxListBoxNameStr );
- bool Create( wxWindow *parent, wxWindowID id,
- const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
- int n = 0, const wxString choices[] = NULL,
- long style = 0, const wxString &name = wxListBoxNameStr );
- void Append( const wxString &item );
- void Append( const wxString &item, char *clientData );
- void Clear(void);
- void Delete( int n );
- void Deselect( int n );
- int FindString( const wxString &item ) const;
- char *GetClientData( int n ) const;
- int GetSelection(void) const;
- int GetSelections( class wxArrayInt &) const;
- wxString GetString( int n ) const;
- wxString GetStringSelection(void) const;
- int Number(void);
- bool Selected( int n );
- void Set( int n, const wxString *choices );
- void SetClientData( int n, char *clientData );
- void SetFirstItem( int n );
- void SetFirstItem( const wxString &item );
- void SetSelection( int n, bool select = TRUE );
- void SetString( int n, const wxString &string );
- void SetStringSelection( const wxString &string, bool select = TRUE );
-
- virtual GtkWidget *GetConnectWidget(void);
-
- private:
-
- GtkList *m_list;
- wxList m_clientData;
-
- public:
-
- int GetIndex( GtkWidget *item ) const;
+ virtual void EnsureVisible(int n);
+
+ virtual void Update();
+
+ static wxVisualAttributes
+ GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
+
+ // implementation from now on
+
+ GtkWidget *GetConnectWidget();
+
+#if wxUSE_TOOLTIPS
+ void GTKApplyToolTip( GtkTooltips *tips, const gchar *tip );
+#endif // wxUSE_TOOLTIPS
+
+ struct _GtkTreeView *m_treeview;
+ struct _GtkListStore *m_liststore;
+
+#if wxUSE_CHECKLISTBOX
+ bool m_hasCheckBoxes;
+#endif // wxUSE_CHECKLISTBOX
+
+ struct _GtkTreeEntry* GtkGetEntry(unsigned pos) const;
+
+ void GtkDisableEvents();
+ void GtkEnableEvents();
+
+protected:
+ virtual void DoClear();
+ virtual void DoDeleteOneItem(unsigned int n);
+ virtual wxSize DoGetBestSize() const;
+ virtual void DoApplyWidgetStyle(GtkRcStyle *style);
+ virtual GdkWindow *GTKGetWindow(wxArrayGdkWindows& windows) const;
+
+ virtual void DoSetSelection(int n, bool select);
+
+ virtual int DoInsertItems(const wxArrayStringsAdapter& items,
+ unsigned int pos,
+ void **clientData, wxClientDataType type);
+
+ virtual void DoSetFirstItem(int n);
+ virtual void DoSetItemClientData(unsigned int n, void* clientData);
+ virtual void* DoGetItemClientData(unsigned int n) const;
+ virtual int DoListHitTest(const wxPoint& point) const;
+
+ // get the iterator for the given index, returns false if invalid
+ bool GtkGetIteratorFor(unsigned pos, _GtkTreeIter *iter) const;
+
+ // get the index for the given iterator, return wxNOT_FOUND on failure
+ int GtkGetIndexFor(_GtkTreeIter& iter) const;
+
+ // set the specified item
+ void GtkSetItem(_GtkTreeIter& iter, const _GtkTreeEntry *entry);
+
+ // common part of DoSetFirstItem() and EnsureVisible()
+ void DoScrollToCell(int n, float alignY, float alignX);
+
+private:
+ void Init(); //common construction
+
+ DECLARE_DYNAMIC_CLASS(wxListBox)