wxChoice and wxListBox GTK+ changes (wxChoice works, wxListBox still doesn't)
[wxWidgets.git] / include / wx / gtk / listbox.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: listbox.h
3 // Purpose: wxListBox class declaration
4 // Author: Robert Roebling
5 // Id: $Id$
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
9
10
11 #ifndef __GTKLISTBOXH__
12 #define __GTKLISTBOXH__
13
14 #ifdef __GNUG__
15 #pragma interface
16 #endif
17
18 #include "wx/list.h"
19
20 //-----------------------------------------------------------------------------
21 // wxListBox
22 //-----------------------------------------------------------------------------
23
24 class wxListBox : public wxListBoxBase
25 {
26 public:
27 // ctors and such
28 wxListBox();
29 wxListBox( wxWindow *parent, wxWindowID id,
30 const wxPoint& pos = wxDefaultPosition,
31 const wxSize& size = wxDefaultSize,
32 int n = 0, const wxString choices[] = (const wxString *) NULL,
33 long style = 0,
34 const wxValidator& validator = wxDefaultValidator,
35 const wxString& name = wxListBoxNameStr )
36 {
37 #if wxUSE_CHECKLISTBOX
38 m_hasCheckBoxes = FALSE;
39 #endif // wxUSE_CHECKLISTBOX
40 Create(parent, id, pos, size, n, choices, style, validator, name);
41 }
42 virtual ~wxListBox();
43
44 bool Create(wxWindow *parent, wxWindowID id,
45 const wxPoint& pos = wxDefaultPosition,
46 const wxSize& size = wxDefaultSize,
47 int n = 0, const wxString choices[] = (const wxString *) NULL,
48 long style = 0,
49 const wxValidator& validator = wxDefaultValidator,
50 const wxString& name = wxListBoxNameStr);
51
52 // implement base class pure virtuals
53 virtual void Clear();
54 virtual void Delete(int n);
55
56 virtual int GetCount() const;
57 virtual wxString GetString(int n) const;
58 virtual void SetString(int n, const wxString& s);
59 virtual int FindString(const wxString& s) const;
60
61 virtual bool IsSelected(int n) const;
62 virtual void SetSelection(int n, bool select = TRUE);
63 virtual int GetSelection() const;
64 virtual int GetSelections(wxArrayInt& aSelections) const;
65
66 virtual int DoAppend(const wxString& item);
67 virtual void DoInsertItems(const wxArrayString& items, int pos);
68 virtual void DoSetItems(const wxArrayString& items, void **clientData);
69
70 virtual void DoSetFirstItem(int n);
71
72 virtual void DoSetClientData(int n, void* clientData);
73 virtual void* DoGetClientData(int n) const;
74 virtual void DoSetClientObject(int n, wxClientData* clientData);
75 virtual wxClientData* DoGetClientObject(int n) const;
76
77 // implementation from now on
78
79 #if wxUSE_DRAG_AND_DROP
80 void SetDropTarget( wxDropTarget *dropTarget );
81 #endif
82
83 void DisableEvents();
84 void EnableEvents();
85 void AppendWithoutSorting( const wxString &item );
86 int GetIndex( GtkWidget *item ) const;
87 GtkWidget *GetConnectWidget();
88 bool IsOwnGtkWindow( GdkWindow *window );
89 void ApplyWidgetStyle();
90 void OnInternalIdle();
91
92 #if wxUSE_TOOLTIPS
93 void ApplyToolTip( GtkTooltips *tips, const wxChar *tip );
94 #endif // wxUSE_TOOLTIPS
95
96 GtkList *m_list;
97 wxList m_clientData;
98
99 #if wxUSE_CHECKLISTBOX
100 bool m_hasCheckBoxes;
101 #endif // wxUSE_CHECKLISTBOX
102
103 private:
104 // this array is only used for controls with wxCB_SORT style, so only
105 // allocate it if it's needed (hence using pointer)
106 wxSortedArrayString *m_strings;
107
108 DECLARE_DYNAMIC_CLASS(wxListBox)
109 };
110
111 #endif // __GTKLISTBOXH__