]> git.saurik.com Git - wxWidgets.git/blame - include/wx/gtk1/listbox.h
Removed dependency on wxTabView.
[wxWidgets.git] / include / wx / gtk1 / listbox.h
CommitLineData
c801d85f
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: listbox.h
ff8bfdbb 3// Purpose: wxListBox class declaration
c801d85f 4// Author: Robert Roebling
58614078
RR
5// Id: $Id$
6// Copyright: (c) 1998 Robert Roebling
ff8bfdbb 7// Licence: wxWindows licence
c801d85f
KB
8/////////////////////////////////////////////////////////////////////////////
9
10
11#ifndef __GTKLISTBOXH__
12#define __GTKLISTBOXH__
13
ab7ce33c 14#if defined(__GNUG__) && !defined(__APPLE__)
34eac3a8 15#pragma interface "listbox.h"
c801d85f
KB
16#endif
17
c801d85f 18#include "wx/list.h"
c801d85f
KB
19
20//-----------------------------------------------------------------------------
21// wxListBox
22//-----------------------------------------------------------------------------
23
2ee3ee1b 24class wxListBox : public wxListBoxBase
c801d85f 25{
fd0eed64 26public:
2ee3ee1b 27 // ctors and such
ff8bfdbb
VZ
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 {
88ac883a 37#if wxUSE_CHECKLISTBOX
ff8bfdbb 38 m_hasCheckBoxes = FALSE;
88ac883a 39#endif // wxUSE_CHECKLISTBOX
ff8bfdbb
VZ
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
2ee3ee1b
VZ
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
6c8a980f
VZ
72 virtual void DoSetItemClientData(int n, void* clientData);
73 virtual void* DoGetItemClientData(int n) const;
74 virtual void DoSetItemClientObject(int n, wxClientData* clientData);
75 virtual wxClientData* DoGetItemClientObject(int n) const;
2ee3ee1b
VZ
76
77 // implementation from now on
c801d85f 78
11e1c70d
RR
79 void GtkAddItem( const wxString &item, int pos=-1 );
80 int GtkGetIndex( GtkWidget *item ) const;
ff8bfdbb
VZ
81 GtkWidget *GetConnectWidget();
82 bool IsOwnGtkWindow( GdkWindow *window );
83 void ApplyWidgetStyle();
5e014a0c 84 void OnInternalIdle();
ff8bfdbb
VZ
85
86#if wxUSE_TOOLTIPS
4de6207a 87 void ApplyToolTip( GtkTooltips *tips, const wxChar *tip );
ff8bfdbb
VZ
88#endif // wxUSE_TOOLTIPS
89
90 GtkList *m_list;
11e1c70d 91 wxList m_clientList;
88ac883a
VZ
92
93#if wxUSE_CHECKLISTBOX
ff8bfdbb 94 bool m_hasCheckBoxes;
88ac883a 95#endif // wxUSE_CHECKLISTBOX
c801d85f 96
bac95742
RR
97 int m_prevSelection;
98 bool m_blockEvent;
8161b5b9 99
3ae4c570
VZ
100 virtual void FixUpMouseEvent(GtkWidget *widget, wxCoord& x, wxCoord& y);
101
f68586e5
VZ
102protected:
103 virtual wxSize DoGetBestSize() const;
104
8161b5b9
VZ
105 // return the string label for the given item
106 wxString GetRealLabel(struct _GList *item) const;
107
2ee3ee1b
VZ
108private:
109 // this array is only used for controls with wxCB_SORT style, so only
110 // allocate it if it's needed (hence using pointer)
111 wxSortedArrayString *m_strings;
112
113 DECLARE_DYNAMIC_CLASS(wxListBox)
114};
dcf924a3 115
c801d85f 116#endif // __GTKLISTBOXH__