]> git.saurik.com Git - wxWidgets.git/blame - include/wx/gtk1/combobox.h
Added a const for CW compilation
[wxWidgets.git] / include / wx / gtk1 / combobox.h
CommitLineData
c801d85f
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: combobox.h
3// Purpose:
4// Author: Robert Roebling
5// Created: 01/02/97
5ebd1fb2 6// Id: $Id$
dbf858b5 7// Copyright: (c) 1998 Robert Roebling
c801d85f
KB
8// Licence: wxWindows licence
9/////////////////////////////////////////////////////////////////////////////
10
11
12#ifndef __GTKCOMBOBOXH__
13#define __GTKCOMBOBOXH__
14
ab7ce33c 15#if defined(__GNUG__) && !defined(__APPLE__)
5ebd1fb2 16#pragma interface "combobox.h"
c801d85f
KB
17#endif
18
19#include "wx/defs.h"
ac57418f 20
dcf924a3
RR
21#if wxUSE_COMBOBOX
22
c801d85f 23#include "wx/object.h"
c801d85f
KB
24#include "wx/control.h"
25
26//-----------------------------------------------------------------------------
27// classes
28//-----------------------------------------------------------------------------
29
30class wxComboBox;
31
7f4dc78d
RR
32//-----------------------------------------------------------------------------
33// global data
34//-----------------------------------------------------------------------------
35
401eb3de 36extern const wxChar* wxComboBoxNameStr;
9d2f3c71 37extern const wxChar* wxEmptyString;
7f4dc78d 38
c801d85f
KB
39//-----------------------------------------------------------------------------
40// wxComboBox
41//-----------------------------------------------------------------------------
42
fd0eed64 43class wxComboBox : public wxControl
7f4dc78d 44{
fd0eed64 45public:
738f9e5a
RR
46 inline wxComboBox() {}
47 inline wxComboBox(wxWindow *parent, wxWindowID id,
7f4dc78d
RR
48 const wxString& value = wxEmptyString,
49 const wxPoint& pos = wxDefaultPosition,
50 const wxSize& size = wxDefaultSize,
c67daf87 51 int n = 0, const wxString choices[] = (const wxString *) NULL,
debe6624 52 long style = 0,
6de97a3b 53 const wxValidator& validator = wxDefaultValidator,
7f4dc78d 54 const wxString& name = wxComboBoxNameStr)
738f9e5a
RR
55 {
56 Create(parent, id, value, pos, size, n, choices, style, validator, name);
57 }
58 ~wxComboBox();
59 bool Create(wxWindow *parent, wxWindowID id,
7f4dc78d
RR
60 const wxString& value = wxEmptyString,
61 const wxPoint& pos = wxDefaultPosition,
62 const wxSize& size = wxDefaultSize,
c67daf87 63 int n = 0, const wxString choices[] = (const wxString *) NULL,
debe6624 64 long style = 0,
6de97a3b 65 const wxValidator& validator = wxDefaultValidator,
7f4dc78d
RR
66 const wxString& name = wxComboBoxNameStr);
67
738f9e5a
RR
68 void Append( const wxString &item );
69 void Append( const wxString &item, void* clientData );
70 void Append( const wxString &item, wxClientData* clientData );
fd0eed64 71
738f9e5a
RR
72 void SetClientData( int n, void* clientData );
73 void* GetClientData( int n );
74 void SetClientObject( int n, wxClientData* clientData );
75 wxClientData* GetClientObject( int n );
fd0eed64 76
738f9e5a
RR
77 void SetClientObject( wxClientData *data ) { wxControl::SetClientObject( data ); }
78 wxClientData *GetClientObject() const { return wxControl::GetClientObject(); }
79 void SetClientData( void *data ) { wxControl::SetClientData( data ); }
80 void *GetClientData() const { return wxControl::GetClientData(); }
0de9b5b2 81
738f9e5a
RR
82 void Clear();
83 void Delete( int n );
868a2826 84
738f9e5a
RR
85 int FindString( const wxString &item );
86 int GetSelection() const;
87 wxString GetString( int n ) const;
88 wxString GetStringSelection() const;
1e6feb95 89 int GetCount() const { return Number(); }
738f9e5a
RR
90 int Number() const;
91 void SetSelection( int n );
92 void SetStringSelection( const wxString &string );
1a44c925 93 void SetString(int n, const wxString &text);
738f9e5a
RR
94
95 wxString GetValue() const;
96 void SetValue(const wxString& value);
97
98 void Copy();
99 void Cut();
100 void Paste();
101 void SetInsertionPoint( long pos );
102 void SetInsertionPointEnd();
103 long GetInsertionPoint() const;
104 long GetLastPosition() const;
105 void Replace( long from, long to, const wxString& value );
106 void Remove( long from, long to );
107 void SetSelection( long from, long to );
108 void SetEditable( bool editable );
868a2826 109
738f9e5a 110 // implementation
868a2826 111
2b5f62a0
VZ
112 virtual void SetFocus();
113
738f9e5a
RR
114 void OnSize( wxSizeEvent &event );
115 void OnChar( wxKeyEvent &event );
47908e25 116
738f9e5a
RR
117 bool m_alreadySent;
118 wxList m_clientDataList;
119 wxList m_clientObjectList;
159b66c0 120 int m_prevSelection;
738f9e5a
RR
121
122 void DisableEvents();
123 void EnableEvents();
124 void AppendCommon( const wxString &item );
125 GtkWidget* GetConnectWidget();
126 bool IsOwnGtkWindow( GdkWindow *window );
127 void ApplyWidgetStyle();
128
f68586e5
VZ
129protected:
130 virtual wxSize DoGetBestSize() const;
131
738f9e5a
RR
132private:
133 DECLARE_DYNAMIC_CLASS(wxComboBox)
134 DECLARE_EVENT_TABLE()
7f4dc78d
RR
135};
136
dcf924a3
RR
137#endif
138
ac57418f
RR
139#endif
140
141 // __GTKCOMBOBOXH__