]> git.saurik.com Git - wxWidgets.git/blob - include/wx/msw/combobox.h
part of wxComboBox to wxEntry refactoring (should have been part of rev48952)
[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 WXDLLEXPORT wxComboBox : public wxChoice,
25 public wxTextEntry
26 {
27 public:
28 wxComboBox() { }
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 Create(parent, id, value, pos, size, n, choices, style, validator, name);
40 }
41 wxComboBox(wxWindow *parent, wxWindowID id,
42 const wxString& value,
43 const wxPoint& pos,
44 const wxSize& size,
45 const wxArrayString& choices,
46 long style = 0,
47 const wxValidator& validator = wxDefaultValidator,
48 const wxString& name = wxComboBoxNameStr)
49 {
50 Create(parent, id, value, pos, size, choices, style, validator, name);
51 }
52
53 bool Create(wxWindow *parent,
54 wxWindowID id,
55 const wxString& value = wxEmptyString,
56 const wxPoint& pos = wxDefaultPosition,
57 const wxSize& size = wxDefaultSize,
58 int n = 0,
59 const wxString choices[] = NULL,
60 long style = 0,
61 const wxValidator& validator = wxDefaultValidator,
62 const wxString& name = wxComboBoxNameStr);
63 bool Create(wxWindow *parent,
64 wxWindowID id,
65 const wxString& value,
66 const wxPoint& pos,
67 const wxSize& size,
68 const wxArrayString& choices,
69 long style = 0,
70 const wxValidator& validator = wxDefaultValidator,
71 const wxString& name = wxComboBoxNameStr);
72
73 // resolve ambiguities among virtual functions inherited from both base
74 // classes
75 virtual void SetValue(const wxString& value);
76 virtual wxString GetStringSelection() const
77 { return wxChoice::GetStringSelection(); }
78
79 virtual void SetSelection(int n) { wxChoice::SetSelection(n); }
80 virtual void SetSelection(long from, long to)
81 { wxTextEntry::SetSelection(from, to); }
82 virtual int GetSelection() const { return wxChoice::GetSelection(); }
83 virtual void GetSelection(long *from, long *to) const
84 { wxTextEntry::GetSelection(from, to); }
85
86 virtual bool IsEditable() const;
87
88 // implementation only from now on
89 virtual bool MSWCommand(WXUINT param, WXWORD id);
90 bool MSWProcessEditMsg(WXUINT msg, WXWPARAM wParam, WXLPARAM lParam);
91 virtual WXLRESULT MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam);
92 bool MSWShouldPreProcessMessage(WXMSG *pMsg);
93
94 // Standard event handling
95 void OnCut(wxCommandEvent& event);
96 void OnCopy(wxCommandEvent& event);
97 void OnPaste(wxCommandEvent& event);
98 void OnUndo(wxCommandEvent& event);
99 void OnRedo(wxCommandEvent& event);
100 void OnDelete(wxCommandEvent& event);
101 void OnSelectAll(wxCommandEvent& event);
102
103 void OnUpdateCut(wxUpdateUIEvent& event);
104 void OnUpdateCopy(wxUpdateUIEvent& event);
105 void OnUpdatePaste(wxUpdateUIEvent& event);
106 void OnUpdateUndo(wxUpdateUIEvent& event);
107 void OnUpdateRedo(wxUpdateUIEvent& event);
108 void OnUpdateDelete(wxUpdateUIEvent& event);
109 void OnUpdateSelectAll(wxUpdateUIEvent& event);
110
111 protected:
112 virtual WXDWORD MSWGetStyle(long style, WXDWORD *exstyle) const;
113
114 #if wxUSE_TOOLTIPS
115 virtual void DoSetToolTip(wxToolTip *tip);
116 #endif
117
118 virtual WXHWND GetEditHWND() const;
119
120 private:
121 DECLARE_DYNAMIC_CLASS_NO_COPY(wxComboBox)
122 DECLARE_EVENT_TABLE()
123 };
124
125 #endif // wxUSE_COMBOBOX
126
127 #endif // _WX_COMBOBOX_H_