1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/gtk/listbox.h
3 // Purpose: wxListBox class declaration
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 #ifndef _WX_GTK_LISTBOX_H_
11 #define _WX_GTK_LISTBOX_H_
16 //-----------------------------------------------------------------------------
18 //-----------------------------------------------------------------------------
20 class WXDLLIMPEXP_CORE wxListBox
: public wxListBoxBase
28 wxListBox( wxWindow
*parent
, wxWindowID id
,
29 const wxPoint
& pos
= wxDefaultPosition
,
30 const wxSize
& size
= wxDefaultSize
,
31 int n
= 0, const wxString choices
[] = (const wxString
*) NULL
,
33 const wxValidator
& validator
= wxDefaultValidator
,
34 const wxString
& name
= wxListBoxNameStr
)
37 Create(parent
, id
, pos
, size
, n
, choices
, style
, validator
, name
);
39 wxListBox( wxWindow
*parent
, wxWindowID id
,
42 const wxArrayString
& choices
,
44 const wxValidator
& validator
= wxDefaultValidator
,
45 const wxString
& name
= wxListBoxNameStr
)
48 Create(parent
, id
, pos
, size
, choices
, style
, validator
, name
);
52 bool Create(wxWindow
*parent
, wxWindowID id
,
53 const wxPoint
& pos
= wxDefaultPosition
,
54 const wxSize
& size
= wxDefaultSize
,
55 int n
= 0, const wxString choices
[] = (const wxString
*) NULL
,
57 const wxValidator
& validator
= wxDefaultValidator
,
58 const wxString
& name
= wxListBoxNameStr
);
59 bool Create(wxWindow
*parent
, wxWindowID id
,
62 const wxArrayString
& choices
,
64 const wxValidator
& validator
= wxDefaultValidator
,
65 const wxString
& name
= wxListBoxNameStr
);
67 virtual unsigned int GetCount() const;
68 virtual wxString
GetString(unsigned int n
) const;
69 virtual void SetString(unsigned int n
, const wxString
& s
);
70 virtual int FindString(const wxString
& s
, bool bCase
= false) const;
72 virtual bool IsSelected(int n
) const;
73 virtual int GetSelection() const;
74 virtual int GetSelections(wxArrayInt
& aSelections
) const;
76 static wxVisualAttributes
77 GetClassDefaultAttributes(wxWindowVariant variant
= wxWINDOW_VARIANT_NORMAL
);
79 // implementation from now on
81 GtkWidget
*GetConnectWidget();
84 void ApplyToolTip( GtkTooltips
*tips
, const gchar
*tip
);
85 #endif // wxUSE_TOOLTIPS
87 struct _GtkTreeView
*m_treeview
;
88 struct _GtkListStore
*m_liststore
;
90 #if wxUSE_CHECKLISTBOX
92 #endif // wxUSE_CHECKLISTBOX
96 struct _GtkTreeEntry
* GtkGetEntry(unsigned pos
) const;
97 void GtkDeselectAll();
98 void GtkSetSelection(int n
, const bool select
, const bool blockEvent
);
101 virtual void DoClear();
102 virtual void DoDeleteOneItem(unsigned int n
);
103 virtual wxSize
DoGetBestSize() const;
104 virtual void DoApplyWidgetStyle(GtkRcStyle
*style
);
105 virtual GdkWindow
*GTKGetWindow(wxArrayGdkWindows
& windows
) const;
107 virtual void DoSetSelection(int n
, bool select
);
109 virtual int DoInsertItems(const wxArrayStringsAdapter
& items
,
111 void **clientData
, wxClientDataType type
);
113 virtual void DoSetFirstItem(int n
);
114 virtual void DoSetItemClientData(unsigned int n
, void* clientData
);
115 virtual void* DoGetItemClientData(unsigned int n
) const;
116 virtual int DoListHitTest(const wxPoint
& point
) const;
118 // get the iterator for the given index, returns false if invalid
119 bool GtkGetIteratorFor(unsigned pos
, _GtkTreeIter
*iter
) const;
121 // get the index for the given iterator, return wxNOT_FOUND on failure
122 int GtkGetIndexFor(_GtkTreeIter
& iter
) const;
124 // set the specified item
125 void GtkSetItem(_GtkTreeIter
& iter
, const _GtkTreeEntry
*entry
);
128 void Init(); //common construction
130 DECLARE_DYNAMIC_CLASS(wxListBox
)
133 #endif // _WX_GTK_LISTBOX_H_