1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxListBox class declaration
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
11 #ifndef __GTKLISTBOXH__
12 #define __GTKLISTBOXH__
19 #include "wx/object.h"
21 #include "wx/control.h"
23 //-----------------------------------------------------------------------------
25 //-----------------------------------------------------------------------------
30 //-----------------------------------------------------------------------------
32 //-----------------------------------------------------------------------------
34 extern const char *wxListBoxNameStr
;
36 //-----------------------------------------------------------------------------
38 //-----------------------------------------------------------------------------
40 class wxListBox
: public wxControl
42 DECLARE_DYNAMIC_CLASS(wxListBox
)
46 wxListBox( wxWindow
*parent
, wxWindowID id
,
47 const wxPoint
& pos
= wxDefaultPosition
,
48 const wxSize
& size
= wxDefaultSize
,
49 int n
= 0, const wxString choices
[] = (const wxString
*) NULL
,
51 const wxValidator
& validator
= wxDefaultValidator
,
52 const wxString
& name
= wxListBoxNameStr
)
54 m_hasCheckBoxes
= FALSE
;
55 Create(parent
, id
, pos
, size
, n
, choices
, style
, validator
, name
);
59 bool Create(wxWindow
*parent
, wxWindowID id
,
60 const wxPoint
& pos
= wxDefaultPosition
,
61 const wxSize
& size
= wxDefaultSize
,
62 int n
= 0, const wxString choices
[] = (const wxString
*) NULL
,
64 const wxValidator
& validator
= wxDefaultValidator
,
65 const wxString
& name
= wxListBoxNameStr
);
67 void Append( const wxString
&item
);
68 void Append( const wxString
&item
, void* clientData
);
69 void Append( const wxString
&item
, wxClientData
* clientData
);
71 void InsertItems(int nItems
, const wxString items
[], int pos
);
73 void SetClientData( int n
, void* clientData
);
74 void* GetClientData( int n
);
75 void SetClientObject( int n
, wxClientData
* clientData
);
76 wxClientData
* GetClientObject( int n
);
81 void Deselect( int n
);
82 int FindString( const wxString
&item
) const;
83 int GetSelection(void) const;
84 int GetSelections( class wxArrayInt
&) const;
85 wxString
GetString( int n
) const;
86 wxString
GetStringSelection(void) const;
88 bool Selected( int n
);
89 void Set( int n
, const wxString
*choices
);
90 void SetFirstItem( int n
);
91 void SetFirstItem( const wxString
&item
);
92 void SetSelection( int n
, bool select
= TRUE
);
93 void SetString( int n
, const wxString
&string
);
94 void SetStringSelection( const wxString
&string
, bool select
= TRUE
);
96 #if wxUSE_DRAG_AND_DROP
97 void SetDropTarget( wxDropTarget
*dropTarget
);
102 void AppendCommon( const wxString
&item
);
103 int GetIndex( GtkWidget
*item
) const;
104 GtkWidget
*GetConnectWidget();
105 bool IsOwnGtkWindow( GdkWindow
*window
);
106 void ApplyWidgetStyle();
109 void ApplyToolTip( GtkTooltips
*tips
, const char *tip
);
110 #endif // wxUSE_TOOLTIPS
113 wxList m_clientDataList
;
114 wxList m_clientObjectList
;
115 bool m_hasCheckBoxes
;
118 #endif // __GTKLISTBOXH__