]> git.saurik.com Git - wxWidgets.git/blob - include/wx/msw/combobox.h
Refactor: move wxComboBox::MSWDoPopupOrDismiss() down to wxChoice.
[wxWidgets.git] / include / wx / msw / combobox.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/msw/combobox.h
3 // Purpose: wxComboBox class
4 // Author: Julian Smart
5 // Modified by:
6 // Created: 01/02/97
7 // RCS-ID: $Id$
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_COMBOBOX_H_
13 #define _WX_COMBOBOX_H_
14
15 #include "wx/choice.h"
16 #include "wx/textentry.h"
17
18 #if wxUSE_COMBOBOX
19
20 // ----------------------------------------------------------------------------
21 // Combobox control
22 // ----------------------------------------------------------------------------
23
24 class WXDLLIMPEXP_CORE wxComboBox : public wxChoice,
25 public wxTextEntry
26 {
27 public:
28 wxComboBox() { Init(); }
29
30 wxComboBox(wxWindow *parent, wxWindowID id,
31 const wxString& value = wxEmptyString,
32 const wxPoint& pos = wxDefaultPosition,
33 const wxSize& size = wxDefaultSize,
34 int n = 0, const wxString choices[] = NULL,
35 long style = 0,
36 const wxValidator& validator = wxDefaultValidator,
37 const wxString& name = wxComboBoxNameStr)
38 {
39 Init();
40 Create(parent, id, value, pos, size, n, choices, style, validator, name);
41
42 }
43
44 wxComboBox(wxWindow *parent, wxWindowID id,
45 const wxString& value,
46 const wxPoint& pos,
47 const wxSize& size,
48 const wxArrayString& choices,
49 long style = 0,
50 const wxValidator& validator = wxDefaultValidator,
51 const wxString& name = wxComboBoxNameStr)
52 {
53 Init();
54
55 Create(parent, id, value, pos, size, choices, style, validator, name);
56 }
57
58 bool Create(wxWindow *parent,
59 wxWindowID id,
60 const wxString& value = wxEmptyString,
61 const wxPoint& pos = wxDefaultPosition,
62 const wxSize& size = wxDefaultSize,
63 int n = 0,
64 const wxString choices[] = NULL,
65 long style = 0,
66 const wxValidator& validator = wxDefaultValidator,
67 const wxString& name = wxComboBoxNameStr);
68 bool Create(wxWindow *parent,
69 wxWindowID id,
70 const wxString& value,
71 const wxPoint& pos,
72 const wxSize& size,
73 const wxArrayString& choices,
74 long style = 0,
75 const wxValidator& validator = wxDefaultValidator,
76 const wxString& name = wxComboBoxNameStr);
77
78 // See wxComboBoxBase discussion of IsEmpty().
79 bool IsListEmpty() const { return wxItemContainer::IsEmpty(); }
80 bool IsTextEmpty() const { return wxTextEntry::IsEmpty(); }
81
82 // resolve ambiguities among virtual functions inherited from both base
83 // classes
84 virtual void Clear();
85 virtual wxString GetValue() const;
86 virtual void SetValue(const wxString& value);
87 virtual wxString GetStringSelection() const
88 { return wxChoice::GetStringSelection(); }
89 virtual void Popup() { MSWDoPopupOrDismiss(true); }
90 virtual void Dismiss() { MSWDoPopupOrDismiss(false); }
91 virtual void SetSelection(int n) { wxChoice::SetSelection(n); }
92 virtual void SetSelection(long from, long to)
93 { wxTextEntry::SetSelection(from, to); }
94 virtual int GetSelection() const { return wxChoice::GetSelection(); }
95 virtual void GetSelection(long *from, long *to) const;
96
97 virtual bool IsEditable() const;
98
99 // implementation only from now on
100 virtual bool MSWCommand(WXUINT param, WXWORD id);
101 bool MSWProcessEditMsg(WXUINT msg, WXWPARAM wParam, WXLPARAM lParam);
102 virtual WXLRESULT MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam);
103 bool MSWShouldPreProcessMessage(WXMSG *pMsg);
104
105 // Standard event handling
106 void OnCut(wxCommandEvent& event);
107 void OnCopy(wxCommandEvent& event);
108 void OnPaste(wxCommandEvent& event);
109 void OnUndo(wxCommandEvent& event);
110 void OnRedo(wxCommandEvent& event);
111 void OnDelete(wxCommandEvent& event);
112 void OnSelectAll(wxCommandEvent& event);
113
114 void OnUpdateCut(wxUpdateUIEvent& event);
115 void OnUpdateCopy(wxUpdateUIEvent& event);
116 void OnUpdatePaste(wxUpdateUIEvent& event);
117 void OnUpdateUndo(wxUpdateUIEvent& event);
118 void OnUpdateRedo(wxUpdateUIEvent& event);
119 void OnUpdateDelete(wxUpdateUIEvent& event);
120 void OnUpdateSelectAll(wxUpdateUIEvent& event);
121
122 virtual WXDWORD MSWGetStyle(long style, WXDWORD *exstyle) const;
123
124 #if wxUSE_UXTHEME
125 // override wxTextEntry method to work around Windows bug
126 virtual bool SetHint(const wxString& hint);
127 #endif // wxUSE_UXTHEME
128
129 protected:
130 #if wxUSE_TOOLTIPS
131 virtual void DoSetToolTip(wxToolTip *tip);
132 #endif
133
134 // this is the implementation of GetEditHWND() which can also be used when
135 // we don't have the edit control, it simply returns NULL then
136 //
137 // try not to use this function unless absolutely necessary (as in the
138 // message handling code where the edit control might not be created yet
139 // for the messages we receive during the control creation) as normally
140 // just testing for IsEditable() and using GetEditHWND() should be enough
141 WXHWND GetEditHWNDIfAvailable() const;
142
143 virtual void EnableTextChangedEvents(bool enable)
144 {
145 m_allowTextEvents = enable;
146 }
147
148 private:
149 // there are the overridden wxTextEntry methods which should only be called
150 // when we do have an edit control so they assert if this is not the case
151 virtual wxWindow *GetEditableWindow();
152 virtual WXHWND GetEditHWND() const;
153
154 // common part of all ctors
155 void Init()
156 {
157 m_allowTextEvents = true;
158 }
159
160 // normally true, false if text events are currently disabled
161 bool m_allowTextEvents;
162
163 DECLARE_DYNAMIC_CLASS_NO_COPY(wxComboBox)
164 DECLARE_EVENT_TABLE()
165 };
166
167 #endif // wxUSE_COMBOBOX
168
169 #endif // _WX_COMBOBOX_H_