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 __GTKLISTBOXH__
11 #define __GTKLISTBOXH__
13 //-----------------------------------------------------------------------------
15 //-----------------------------------------------------------------------------
17 class WXDLLIMPEXP_CORE wxListBox
: public wxListBoxBase
25 wxListBox( wxWindow
*parent
, wxWindowID id
,
26 const wxPoint
& pos
= wxDefaultPosition
,
27 const wxSize
& size
= wxDefaultSize
,
28 int n
= 0, const wxString choices
[] = (const wxString
*) NULL
,
30 const wxValidator
& validator
= wxDefaultValidator
,
31 const wxString
& name
= wxListBoxNameStr
)
34 Create(parent
, id
, pos
, size
, n
, choices
, style
, validator
, name
);
36 wxListBox( wxWindow
*parent
, wxWindowID id
,
39 const wxArrayString
& choices
,
41 const wxValidator
& validator
= wxDefaultValidator
,
42 const wxString
& name
= wxListBoxNameStr
)
45 Create(parent
, id
, pos
, size
, choices
, style
, validator
, name
);
49 void Init(); //common construction
51 bool Create(wxWindow
*parent
, wxWindowID id
,
52 const wxPoint
& pos
= wxDefaultPosition
,
53 const wxSize
& size
= wxDefaultSize
,
54 int n
= 0, const wxString choices
[] = (const wxString
*) NULL
,
56 const wxValidator
& validator
= wxDefaultValidator
,
57 const wxString
& name
= wxListBoxNameStr
);
58 bool Create(wxWindow
*parent
, wxWindowID id
,
61 const wxArrayString
& choices
,
63 const wxValidator
& validator
= wxDefaultValidator
,
64 const wxString
& name
= wxListBoxNameStr
);
66 // implement base class pure virtuals
68 virtual void Delete(int n
);
70 virtual int GetCount() const;
71 virtual wxString
GetString(int n
) const;
72 virtual void SetString(int n
, const wxString
& s
);
73 virtual int FindString(const wxString
& s
, bool bCase
= false) const;
75 virtual bool IsSelected(int n
) const;
76 virtual int GetSelection() const;
77 virtual int GetSelections(wxArrayInt
& aSelections
) const;
79 static wxVisualAttributes
80 GetClassDefaultAttributes(wxWindowVariant variant
= wxWINDOW_VARIANT_NORMAL
);
82 // implementation from now on
84 GtkWidget
*GetConnectWidget();
85 bool IsOwnGtkWindow( GdkWindow
*window
);
86 void OnInternalIdle();
89 void ApplyToolTip( GtkTooltips
*tips
, const wxChar
*tip
);
90 #endif // wxUSE_TOOLTIPS
92 struct _GtkTreeView
*m_treeview
;
93 struct _GtkListStore
*m_liststore
;
95 #if wxUSE_CHECKLISTBOX
97 #endif // wxUSE_CHECKLISTBOX
102 struct _GtkTreeEntry
* GtkGetEntry(int pos
) const;
103 void GtkInsertItems(const wxArrayString
& items
,
104 void** clientData
, int pos
);
105 void GtkSetSelection(int n
, const bool select
, const bool blockEvent
);
108 virtual wxSize
DoGetBestSize() const;
109 virtual void DoSetSelection(int n
, bool select
);
110 virtual int DoAppend(const wxString
& item
);
111 virtual void DoInsertItems(const wxArrayString
& items
, int pos
);
112 virtual void DoSetItems(const wxArrayString
& items
, void **clientData
);
113 virtual void DoSetFirstItem(int n
);
114 virtual void DoSetItemClientData(int n
, void* clientData
);
115 virtual void* DoGetItemClientData(int n
) const;
116 virtual void DoSetItemClientObject(int n
, wxClientData
* clientData
);
117 virtual wxClientData
* DoGetItemClientObject(int n
) const;
118 virtual int DoListHitTest(const wxPoint
& point
) const;
120 void DoApplyWidgetStyle(GtkRcStyle
*style
);
123 DECLARE_DYNAMIC_CLASS(wxListBox
)
126 #endif // __GTKLISTBOXH__