]> git.saurik.com Git - wxWidgets.git/blame - include/wx/gtk/listbox.h
MVC works now.
[wxWidgets.git] / include / wx / gtk / listbox.h
CommitLineData
c801d85f 1/////////////////////////////////////////////////////////////////////////////
853dcc57 2// Name: wx/gtk/listbox.h
ff8bfdbb 3// Purpose: wxListBox class declaration
c801d85f 4// Author: Robert Roebling
58614078
RR
5// Id: $Id$
6// Copyright: (c) 1998 Robert Roebling
65571936 7// Licence: wxWindows licence
c801d85f
KB
8/////////////////////////////////////////////////////////////////////////////
9
c801d85f
KB
10#ifndef __GTKLISTBOXH__
11#define __GTKLISTBOXH__
12
c801d85f 13#include "wx/list.h"
c801d85f 14
b5f6b52a
MB
15class WXDLLIMPEXP_BASE wxSortedArrayString;
16
c801d85f
KB
17//-----------------------------------------------------------------------------
18// wxListBox
19//-----------------------------------------------------------------------------
20
20123d49 21class WXDLLIMPEXP_CORE wxListBox : public wxListBoxBase
c801d85f 22{
fd0eed64 23public:
2ee3ee1b 24 // ctors and such
ff8bfdbb
VZ
25 wxListBox();
26 wxListBox( wxWindow *parent, wxWindowID id,
27 const wxPoint& pos = wxDefaultPosition,
28 const wxSize& size = wxDefaultSize,
29 int n = 0, const wxString choices[] = (const wxString *) NULL,
30 long style = 0,
31 const wxValidator& validator = wxDefaultValidator,
32 const wxString& name = wxListBoxNameStr )
33 {
88ac883a 34#if wxUSE_CHECKLISTBOX
ff8bfdbb 35 m_hasCheckBoxes = FALSE;
88ac883a 36#endif // wxUSE_CHECKLISTBOX
ff8bfdbb
VZ
37 Create(parent, id, pos, size, n, choices, style, validator, name);
38 }
584ad2a3
MB
39 wxListBox( wxWindow *parent, wxWindowID id,
40 const wxPoint& pos,
41 const wxSize& size,
42 const wxArrayString& choices,
43 long style = 0,
44 const wxValidator& validator = wxDefaultValidator,
45 const wxString& name = wxListBoxNameStr )
46 {
47#if wxUSE_CHECKLISTBOX
48 m_hasCheckBoxes = FALSE;
49#endif // wxUSE_CHECKLISTBOX
50 Create(parent, id, pos, size, choices, style, validator, name);
51 }
ff8bfdbb
VZ
52 virtual ~wxListBox();
53
54 bool Create(wxWindow *parent, wxWindowID id,
55 const wxPoint& pos = wxDefaultPosition,
56 const wxSize& size = wxDefaultSize,
57 int n = 0, const wxString choices[] = (const wxString *) NULL,
58 long style = 0,
59 const wxValidator& validator = wxDefaultValidator,
60 const wxString& name = wxListBoxNameStr);
584ad2a3
MB
61 bool Create(wxWindow *parent, wxWindowID id,
62 const wxPoint& pos,
63 const wxSize& size,
64 const wxArrayString& choices,
65 long style = 0,
66 const wxValidator& validator = wxDefaultValidator,
67 const wxString& name = wxListBoxNameStr);
ff8bfdbb 68
2ee3ee1b
VZ
69 // implement base class pure virtuals
70 virtual void Clear();
71 virtual void Delete(int n);
72
73 virtual int GetCount() const;
74 virtual wxString GetString(int n) const;
75 virtual void SetString(int n, const wxString& s);
853dcc57 76 virtual int FindString(const wxString& s, bool bCase = false) const;
2ee3ee1b
VZ
77
78 virtual bool IsSelected(int n) const;
2ee3ee1b
VZ
79 virtual int GetSelection() const;
80 virtual int GetSelections(wxArrayInt& aSelections) const;
81
9d522606
RD
82 static wxVisualAttributes
83 GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
853dcc57 84
2ee3ee1b 85 // implementation from now on
c801d85f 86
11e1c70d
RR
87 void GtkAddItem( const wxString &item, int pos=-1 );
88 int GtkGetIndex( GtkWidget *item ) const;
ff8bfdbb
VZ
89 GtkWidget *GetConnectWidget();
90 bool IsOwnGtkWindow( GdkWindow *window );
5e014a0c 91 void OnInternalIdle();
ff8bfdbb
VZ
92
93#if wxUSE_TOOLTIPS
4de6207a 94 void ApplyToolTip( GtkTooltips *tips, const wxChar *tip );
ff8bfdbb
VZ
95#endif // wxUSE_TOOLTIPS
96
97 GtkList *m_list;
11e1c70d 98 wxList m_clientList;
88ac883a
VZ
99
100#if wxUSE_CHECKLISTBOX
ff8bfdbb 101 bool m_hasCheckBoxes;
88ac883a 102#endif // wxUSE_CHECKLISTBOX
c801d85f 103
bac95742
RR
104 int m_prevSelection;
105 bool m_blockEvent;
8161b5b9 106
3ae4c570
VZ
107 virtual void FixUpMouseEvent(GtkWidget *widget, wxCoord& x, wxCoord& y);
108
f68586e5
VZ
109protected:
110 virtual wxSize DoGetBestSize() const;
6f02a879
VZ
111 virtual void DoSetSelection(int n, bool select);
112 virtual int DoAppend(const wxString& item);
113 virtual void DoInsertItems(const wxArrayString& items, int pos);
114 virtual void DoSetItems(const wxArrayString& items, void **clientData);
115 virtual void DoSetFirstItem(int n);
116 virtual void DoSetItemClientData(int n, void* clientData);
117 virtual void* DoGetItemClientData(int n) const;
118 virtual void DoSetItemClientObject(int n, wxClientData* clientData);
119 virtual wxClientData* DoGetItemClientObject(int n) const;
120 void DoApplyWidgetStyle(GtkRcStyle *style);
f68586e5 121
8161b5b9
VZ
122 // return the string label for the given item
123 wxString GetRealLabel(struct _GList *item) const;
124
9d522606
RD
125 // Widgets that use the style->base colour for the BG colour should
126 // override this and return true.
127 virtual bool UseGTKStyleBase() const { return true; }
128
2ee3ee1b
VZ
129private:
130 // this array is only used for controls with wxCB_SORT style, so only
131 // allocate it if it's needed (hence using pointer)
132 wxSortedArrayString *m_strings;
133
134 DECLARE_DYNAMIC_CLASS(wxListBox)
135};
dcf924a3 136
c801d85f 137#endif // __GTKLISTBOXH__