]> git.saurik.com Git - wxWidgets.git/blame - include/wx/msw/combobox.h
Don't define __STRICT_ANSI__, we should build both with and without it.
[wxWidgets.git] / include / wx / msw / combobox.h
CommitLineData
2bda0e17 1/////////////////////////////////////////////////////////////////////////////
f6bcfd97 2// Name: wx/msw/combobox.h
2bda0e17
KB
3// Purpose: wxComboBox class
4// Author: Julian Smart
5// Modified by:
6// Created: 01/02/97
bbcdf8bc 7// Copyright: (c) Julian Smart
65571936 8// Licence: wxWindows licence
2bda0e17
KB
9/////////////////////////////////////////////////////////////////////////////
10
bbcdf8bc
JS
11#ifndef _WX_COMBOBOX_H_
12#define _WX_COMBOBOX_H_
2bda0e17 13
2bda0e17 14#include "wx/choice.h"
74f35eea 15#include "wx/textentry.h"
2bda0e17 16
47d67540 17#if wxUSE_COMBOBOX
2bda0e17 18
4438caf4
VZ
19// ----------------------------------------------------------------------------
20// Combobox control
21// ----------------------------------------------------------------------------
22
53a2db12 23class WXDLLIMPEXP_CORE wxComboBox : public wxChoice,
b7bfef38 24 public wxTextEntry
2bda0e17 25{
4438caf4 26public:
b7bfef38 27 wxComboBox() { Init(); }
4438caf4
VZ
28
29 wxComboBox(wxWindow *parent, wxWindowID id,
30 const wxString& value = wxEmptyString,
31 const wxPoint& pos = wxDefaultPosition,
32 const wxSize& size = wxDefaultSize,
33 int n = 0, const wxString choices[] = NULL,
34 long style = 0,
35 const wxValidator& validator = wxDefaultValidator,
6463b9f5
JS
36 const wxString& name = wxComboBoxNameStr)
37 {
b7bfef38 38 Init();
6463b9f5 39 Create(parent, id, value, pos, size, n, choices, style, validator, name);
b7bfef38 40
6463b9f5 41 }
b7bfef38 42
584ad2a3
MB
43 wxComboBox(wxWindow *parent, wxWindowID id,
44 const wxString& value,
45 const wxPoint& pos,
46 const wxSize& size,
47 const wxArrayString& choices,
48 long style = 0,
49 const wxValidator& validator = wxDefaultValidator,
50 const wxString& name = wxComboBoxNameStr)
51 {
b7bfef38
VZ
52 Init();
53
584ad2a3
MB
54 Create(parent, id, value, pos, size, choices, style, validator, name);
55 }
4438caf4 56
f6bcfd97
BP
57 bool Create(wxWindow *parent,
58 wxWindowID id,
59 const wxString& value = wxEmptyString,
60 const wxPoint& pos = wxDefaultPosition,
61 const wxSize& size = wxDefaultSize,
62 int n = 0,
63 const wxString choices[] = NULL,
64 long style = 0,
65 const wxValidator& validator = wxDefaultValidator,
66 const wxString& name = wxComboBoxNameStr);
584ad2a3
MB
67 bool Create(wxWindow *parent,
68 wxWindowID id,
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);
4438caf4 76
36a96421
VZ
77 // See wxComboBoxBase discussion of IsEmpty().
78 bool IsListEmpty() const { return wxItemContainer::IsEmpty(); }
79 bool IsTextEmpty() const { return wxTextEntry::IsEmpty(); }
80
74f35eea
VZ
81 // resolve ambiguities among virtual functions inherited from both base
82 // classes
e6a84162 83 virtual void Clear();
e9717bd5 84 virtual wxString GetValue() const;
4438caf4 85 virtual void SetValue(const wxString& value);
74f35eea
VZ
86 virtual wxString GetStringSelection() const
87 { return wxChoice::GetStringSelection(); }
d1d1f817
VZ
88 virtual void Popup() { MSWDoPopupOrDismiss(true); }
89 virtual void Dismiss() { MSWDoPopupOrDismiss(false); }
7d90194c 90 virtual void SetSelection(int n) { wxChoice::SetSelection(n); }
74f35eea
VZ
91 virtual void SetSelection(long from, long to)
92 { wxTextEntry::SetSelection(from, to); }
7d90194c 93 virtual int GetSelection() const { return wxChoice::GetSelection(); }
5ddb3b8c 94 virtual bool ContainsHWND(WXHWND hWnd) const;
e9717bd5 95 virtual void GetSelection(long *from, long *to) const;
74f35eea 96
7d90194c 97 virtual bool IsEditable() const;
150e31d2 98
f6bcfd97 99 // implementation only from now on
4438caf4 100 virtual bool MSWCommand(WXUINT param, WXWORD id);
f6bcfd97 101 bool MSWProcessEditMsg(WXUINT msg, WXWPARAM wParam, WXLPARAM lParam);
c140b7e7 102 virtual WXLRESULT MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam);
90ac8b50 103 bool MSWShouldPreProcessMessage(WXMSG *pMsg);
fc7a2a60 104
150e31d2
JS
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
71e57cd6
VZ
122 virtual WXDWORD MSWGetStyle(long style, WXDWORD *exstyle) const;
123
63f7d502
VZ
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
3c75d8ba 129protected:
d6b9cc87
VZ
130#if wxUSE_TOOLTIPS
131 virtual void DoSetToolTip(wxToolTip *tip);
132#endif
133
aa24f946
VZ
134 virtual wxSize DoGetSizeFromTextSize(int xlen, int ylen = -1) const;
135
e9717bd5
VZ
136 // this is the implementation of GetEditHWND() which can also be used when
137 // we don't have the edit control, it simply returns NULL then
138 //
139 // try not to use this function unless absolutely necessary (as in the
140 // message handling code where the edit control might not be created yet
141 // for the messages we receive during the control creation) as normally
142 // just testing for IsEditable() and using GetEditHWND() should be enough
143 WXHWND GetEditHWNDIfAvailable() const;
144
b7bfef38
VZ
145 virtual void EnableTextChangedEvents(bool enable)
146 {
147 m_allowTextEvents = enable;
148 }
149
fc7a2a60 150private:
63f7d502
VZ
151 // there are the overridden wxTextEntry methods which should only be called
152 // when we do have an edit control so they assert if this is not the case
153 virtual wxWindow *GetEditableWindow();
3c75d8ba
PC
154 virtual WXHWND GetEditHWND() const;
155
b7bfef38
VZ
156 // common part of all ctors
157 void Init()
158 {
159 m_allowTextEvents = true;
160 }
161
162 // normally true, false if text events are currently disabled
163 bool m_allowTextEvents;
164
fc7a2a60 165 DECLARE_DYNAMIC_CLASS_NO_COPY(wxComboBox)
150e31d2 166 DECLARE_EVENT_TABLE()
2bda0e17
KB
167};
168
47d67540 169#endif // wxUSE_COMBOBOX
74f35eea
VZ
170
171#endif // _WX_COMBOBOX_H_