]> git.saurik.com Git - wxWidgets.git/blame - include/wx/gtk1/listbox.h
New DnD and Clipboard code
[wxWidgets.git] / include / wx / gtk1 / listbox.h
CommitLineData
c801d85f
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: listbox.h
3// Purpose:
4// Author: Robert Roebling
58614078
RR
5// Id: $Id$
6// Copyright: (c) 1998 Robert Roebling
c801d85f
KB
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/defs.h"
19#include "wx/object.h"
20#include "wx/list.h"
21#include "wx/control.h"
22
23//-----------------------------------------------------------------------------
24// classes
25//-----------------------------------------------------------------------------
26
27class wxListBox;
a3622daa 28class wxArrayInt;
c801d85f
KB
29
30//-----------------------------------------------------------------------------
31// global data
32//-----------------------------------------------------------------------------
33
34extern const char *wxListBoxNameStr;
35
36//-----------------------------------------------------------------------------
37// wxListBox
38//-----------------------------------------------------------------------------
39
fd0eed64 40class wxListBox : public wxControl
c801d85f
KB
41{
42 DECLARE_DYNAMIC_CLASS(wxListBox)
43
fd0eed64 44public:
c801d85f 45
fd0eed64
RR
46 wxListBox();
47 inline wxListBox( wxWindow *parent, wxWindowID id,
48 const wxPoint& pos = wxDefaultPosition,
49 const wxSize& size = wxDefaultSize,
50 int n = 0, const wxString choices[] = (const wxString *) NULL,
51 long style = 0,
52 const wxValidator& validator = wxDefaultValidator,
53 const wxString& name = wxListBoxNameStr )
54 {
caaa4cfd 55 m_hasCheckBoxes = FALSE;
6de97a3b 56 Create(parent, id, pos, size, n, choices, style, validator, name);
fd0eed64
RR
57 }
58 ~wxListBox();
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,
63 long style = 0,
64 const wxValidator& validator = wxDefaultValidator,
65 const wxString& name = wxListBoxNameStr );
66
67 void Append( const wxString &item );
68 void Append( const wxString &item, void* clientData );
69 void Append( const wxString &item, wxClientData* clientData );
70
71 void SetClientData( int n, void* clientData );
72 void* GetClientData( int n );
73 void SetClientObject( int n, wxClientData* clientData );
74 wxClientData* GetClientObject( int n );
75
76 void Clear();
77 void Delete( int n );
78
79 void Deselect( int n );
80 int FindString( const wxString &item ) const;
81 int GetSelection(void) const;
82 int GetSelections( class wxArrayInt &) const;
83 wxString GetString( int n ) const;
84 wxString GetStringSelection(void) const;
85 int Number();
86 bool Selected( int n );
87 void Set( int n, const wxString *choices );
88 void SetFirstItem( int n );
89 void SetFirstItem( const wxString &item );
90 void SetSelection( int n, bool select = TRUE );
91 void SetString( int n, const wxString &string );
92 void SetStringSelection( const wxString &string, bool select = TRUE );
a60c99e6 93
06cfab17 94#if wxUSE_DRAG_AND_DROP
fd0eed64 95 void SetDropTarget( wxDropTarget *dropTarget );
ac57418f 96#endif
debe6624 97
fd0eed64 98// implementation
b4071e91 99
fd0eed64
RR
100 void AppendCommon( const wxString &item );
101 int GetIndex( GtkWidget *item ) const;
102 GtkWidget *GetConnectWidget();
103 bool IsOwnGtkWindow( GdkWindow *window );
104 void ApplyWidgetStyle();
c801d85f 105
fd0eed64 106 GtkList *m_list;
caaa4cfd
RR
107 wxList m_clientDataList;
108 wxList m_clientObjectList;
109 bool m_hasCheckBoxes;
c801d85f
KB
110};
111
112#endif // __GTKLISTBOXH__