]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/gtk/listbox.h
Added test.xpm generated from horse.png, for compilation.
[wxWidgets.git] / include / wx / gtk / listbox.h
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: listbox.h
3// Purpose:
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/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;
28class wxArrayInt;
29
30//-----------------------------------------------------------------------------
31// global data
32//-----------------------------------------------------------------------------
33
34extern const char *wxListBoxNameStr;
35
36//-----------------------------------------------------------------------------
37// wxListBox
38//-----------------------------------------------------------------------------
39
40class wxListBox: public wxControl
41{
42 DECLARE_DYNAMIC_CLASS(wxListBox)
43
44 public:
45
46 wxListBox(void);
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 {
55 Create(parent, id, pos, size, n, choices, style, validator, name);
56 }
57 bool Create( wxWindow *parent, wxWindowID id,
58 const wxPoint& pos = wxDefaultPosition,
59 const wxSize& size = wxDefaultSize,
60 int n = 0, const wxString choices[] = (const wxString *) NULL,
61 long style = 0,
62 const wxValidator& validator = wxDefaultValidator,
63 const wxString& name = wxListBoxNameStr );
64 void Append( const wxString &item );
65 void Append( const wxString &item, char *clientData );
66 void Clear(void);
67 void Delete( int n );
68 void Deselect( int n );
69 int FindString( const wxString &item ) const;
70 char *GetClientData( int n ) const;
71 int GetSelection(void) const;
72 int GetSelections( class wxArrayInt &) const;
73 wxString GetString( int n ) const;
74 wxString GetStringSelection(void) const;
75 int Number(void);
76 bool Selected( int n );
77 void Set( int n, const wxString *choices );
78 void SetClientData( int n, char *clientData );
79 void SetFirstItem( int n );
80 void SetFirstItem( const wxString &item );
81 void SetSelection( int n, bool select = TRUE );
82 void SetString( int n, const wxString &string );
83 void SetStringSelection( const wxString &string, bool select = TRUE );
84
85 void SetDropTarget( wxDropTarget *dropTarget );
86
87 // implementation
88
89 int GetIndex( GtkWidget *item ) const;
90 GtkWidget *GetConnectWidget(void);
91 bool IsOwnGtkWindow( GdkWindow *window );
92 void ApplyWidgetStyle();
93
94 GtkList *m_list;
95 wxList m_clientData;
96
97};
98
99#endif // __GTKLISTBOXH__