]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk/listbox.h
Add functor-taking overload of CallAfter().
[wxWidgets.git] / include / wx / gtk / listbox.h
index ed32f28246a5e9049077811b0861a4eb98d492a2..365166bfcf1fad9cb89a4a1ccbe16bd89a585e60 100644 (file)
@@ -10,7 +10,7 @@
 #ifndef _WX_GTK_LISTBOX_H_
 #define _WX_GTK_LISTBOX_H_
 
-struct _GtkTreeEntry;
+struct _wxTreeEntry;
 struct _GtkTreeIter;
 
 //-----------------------------------------------------------------------------
@@ -75,16 +75,14 @@ public:
 
     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 ApplyToolTip( GtkTooltips *tips, const gchar *tip );
-#endif // wxUSE_TOOLTIPS
+    virtual GtkWidget *GetConnectWidget();
 
     struct _GtkTreeView   *m_treeview;
     struct _GtkListStore  *m_liststore;
@@ -93,10 +91,13 @@ public:
     bool       m_hasCheckBoxes;
 #endif // wxUSE_CHECKLISTBOX
 
-    struct _GtkTreeEntry* GtkGetEntry(unsigned pos) const;
+    struct _wxTreeEntry* GTKGetEntry(unsigned pos) const;
 
-    void GtkDisableEvents();
-    void GtkEnableEvents();
+    void GTKDisableEvents();
+    void GTKEnableEvents();
+
+    void GTKOnSelectionChanged();
+    void GTKOnActivated(int item);
 
 protected:
     virtual void DoClear();
@@ -110,6 +111,7 @@ protected:
     virtual int DoInsertItems(const wxArrayStringsAdapter& items,
                               unsigned int pos,
                               void **clientData, wxClientDataType type);
+    virtual int DoInsertOneItem(const wxString& item, unsigned int pos);
 
     virtual void DoSetFirstItem(int n);
     virtual void DoSetItemClientData(unsigned int n, void* clientData);
@@ -117,13 +119,10 @@ protected:
     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;
+    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);
+    int GTKGetIndexFor(_GtkTreeIter& iter) const;
 
     // common part of DoSetFirstItem() and EnsureVisible()
     void DoScrollToCell(int n, float alignY, float alignX);