]> git.saurik.com Git - wxWidgets.git/blame - include/wx/gtk/combobox.h
Allow wxPGMultiButton to work even if primary editor control was not created in wxPGE...
[wxWidgets.git] / include / wx / gtk / combobox.h
CommitLineData
c801d85f 1/////////////////////////////////////////////////////////////////////////////
853dcc57 2// Name: wx/gtk/combobox.h
c801d85f
KB
3// Purpose:
4// Author: Robert Roebling
5// Created: 01/02/97
5ebd1fb2 6// Id: $Id$
dbf858b5 7// Copyright: (c) 1998 Robert Roebling
7d8268a1 8// Licence: wxWindows licence
c801d85f
KB
9/////////////////////////////////////////////////////////////////////////////
10
0416c418
PC
11#ifndef _WX_GTK_COMBOBOX_H_
12#define _WX_GTK_COMBOBOX_H_
7f4dc78d 13
a2c94110
VZ
14#include "wx/choice.h"
15
ff654490
VZ
16typedef struct _GtkEntry GtkEntry;
17
c801d85f
KB
18//-----------------------------------------------------------------------------
19// wxComboBox
20//-----------------------------------------------------------------------------
21
a2c94110
VZ
22class WXDLLIMPEXP_CORE wxComboBox : public wxChoice,
23 public wxTextEntry
7f4dc78d 24{
fd0eed64 25public:
e78c1d78
RR
26 wxComboBox()
27 : wxChoice(), wxTextEntry()
28 {
29 Init();
30 }
0ec1179b
VZ
31 wxComboBox(wxWindow *parent,
32 wxWindowID id,
33 const wxString& value = wxEmptyString,
34 const wxPoint& pos = wxDefaultPosition,
35 const wxSize& size = wxDefaultSize,
36 int n = 0, const wxString choices[] = NULL,
37 long style = 0,
38 const wxValidator& validator = wxDefaultValidator,
39 const wxString& name = wxComboBoxNameStr)
e78c1d78 40 : wxChoice(), wxTextEntry()
738f9e5a 41 {
e78c1d78 42 Init();
738f9e5a
RR
43 Create(parent, id, value, pos, size, n, choices, style, validator, name);
44 }
0ec1179b
VZ
45
46 wxComboBox(wxWindow *parent, wxWindowID id,
47 const wxString& value,
48 const wxPoint& pos,
49 const wxSize& size,
50 const wxArrayString& choices,
51 long style = 0,
52 const wxValidator& validator = wxDefaultValidator,
53 const wxString& name = wxComboBoxNameStr)
e78c1d78 54 : wxChoice(), wxTextEntry()
584ad2a3 55 {
e78c1d78 56 Init();
584ad2a3
MB
57 Create(parent, id, value, pos, size, choices, style, validator, name);
58 }
6f6f938f 59
738f9e5a 60 bool Create(wxWindow *parent, wxWindowID id,
0ec1179b
VZ
61 const wxString& value = wxEmptyString,
62 const wxPoint& pos = wxDefaultPosition,
63 const wxSize& size = wxDefaultSize,
64 int n = 0, const wxString choices[] = (const wxString *) NULL,
65 long style = 0,
66 const wxValidator& validator = wxDefaultValidator,
67 const wxString& name = wxComboBoxNameStr);
584ad2a3 68 bool Create(wxWindow *parent, wxWindowID id,
0ec1179b
VZ
69 const wxString& value,
70 const wxPoint& pos,
71 const wxSize& size,
72 const wxArrayString& choices,
73 long style = 0,
74 const wxValidator& validator = wxDefaultValidator,
75 const wxString& name = wxComboBoxNameStr);
7f4dc78d 76
a2c94110 77 // Set/GetSelection() from wxTextEntry and wxChoice
d95c5149 78
a2c94110 79 virtual void SetSelection(int n) { wxChoice::SetSelection(n); }
0ec1179b 80 virtual void SetSelection(long from, long to)
a2c94110 81 { wxTextEntry::SetSelection(from, to); }
d95c5149 82
a2c94110 83 virtual int GetSelection() const { return wxChoice::GetSelection(); }
0ec1179b 84 virtual void GetSelection(long *from, long *to) const
a2c94110 85 { return wxTextEntry::GetSelection(from, to); }
0ec1179b
VZ
86
87 virtual wxString GetStringSelection() const
88 {
89 return wxItemContainer::GetStringSelection();
90 }
91
a2c94110
VZ
92 virtual void Clear()
93 {
94 wxTextEntry::Clear();
95 wxItemContainer::Clear();
96 }
97
98 bool IsEmpty() const { return wxItemContainer::IsEmpty(); }
30ed6e5c 99
738f9e5a 100 void OnChar( wxKeyEvent &event );
30ed6e5c 101
150e31d2
JS
102 // Standard event handling
103 void OnCut(wxCommandEvent& event);
104 void OnCopy(wxCommandEvent& event);
105 void OnPaste(wxCommandEvent& event);
106 void OnUndo(wxCommandEvent& event);
107 void OnRedo(wxCommandEvent& event);
108 void OnDelete(wxCommandEvent& event);
109 void OnSelectAll(wxCommandEvent& event);
110
111 void OnUpdateCut(wxUpdateUIEvent& event);
112 void OnUpdateCopy(wxUpdateUIEvent& event);
113 void OnUpdatePaste(wxUpdateUIEvent& event);
114 void OnUpdateUndo(wxUpdateUIEvent& event);
115 void OnUpdateRedo(wxUpdateUIEvent& event);
116 void OnUpdateDelete(wxUpdateUIEvent& event);
117 void OnUpdateSelectAll(wxUpdateUIEvent& event);
118
a2c94110
VZ
119 virtual void DisableEvents();
120 virtual void EnableEvents();
738f9e5a 121 GtkWidget* GetConnectWidget();
30ed6e5c 122
9d522606
RD
123 static wxVisualAttributes
124 GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
150e31d2 125
f68586e5 126protected:
d95c5149 127 // From wxWindowGTK:
ef5c70f9 128 virtual GdkWindow *GTKGetWindow(wxArrayGdkWindows& windows) const;
d95c5149 129
3c75d8ba
PC
130 // Widgets that use the style->base colour for the BG colour should
131 // override this and return true.
132 virtual bool UseGTKStyleBase() const { return true; }
133
e78c1d78
RR
134 // Override in derived classes to create combo box widgets with
135 // custom list stores.
136 virtual void GTKCreateComboBoxWidget();
137
ff654490 138 // return the GtkEntry part of the combobox
e78c1d78
RR
139 GtkEntry *GetEntry() const { return m_entry; }
140
141 GtkEntry* m_entry;
ff654490 142
3c75d8ba 143private:
0ec1179b 144 // From wxTextEntry:
63f7d502 145 virtual wxWindow *GetEditableWindow() { return this; }
0ec1179b
VZ
146 virtual GtkEditable *GetEditable() const;
147 virtual void EnableTextChangedEvents(bool enable)
148 {
149 if ( enable )
150 EnableEvents();
151 else
152 DisableEvents();
153 }
154
e78c1d78
RR
155 void Init();
156
6f6f938f 157 DECLARE_DYNAMIC_CLASS_NO_COPY(wxComboBox)
738f9e5a 158 DECLARE_EVENT_TABLE()
7f4dc78d
RR
159};
160
0416c418 161#endif // _WX_GTK_COMBOBOX_H_