]>
Commit | Line | Data |
---|---|---|
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 | |
7 | // RCS-ID: $Id$ | |
bbcdf8bc | 8 | // Copyright: (c) Julian Smart |
65571936 | 9 | // Licence: wxWindows licence |
2bda0e17 KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
bbcdf8bc JS |
12 | #ifndef _WX_COMBOBOX_H_ |
13 | #define _WX_COMBOBOX_H_ | |
2bda0e17 | 14 | |
12028905 | 15 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
4438caf4 | 16 | #pragma interface "combobox.h" |
2bda0e17 KB |
17 | #endif |
18 | ||
19 | #include "wx/choice.h" | |
20 | ||
47d67540 | 21 | #if wxUSE_COMBOBOX |
2bda0e17 | 22 | |
4438caf4 VZ |
23 | // ---------------------------------------------------------------------------- |
24 | // Combobox control | |
25 | // ---------------------------------------------------------------------------- | |
26 | ||
2bda0e17 KB |
27 | class WXDLLEXPORT wxComboBox: public wxChoice |
28 | { | |
4438caf4 | 29 | public: |
13bcc348 | 30 | wxComboBox() { Init(); } |
4438caf4 VZ |
31 | |
32 | wxComboBox(wxWindow *parent, 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, | |
6463b9f5 JS |
39 | const wxString& name = wxComboBoxNameStr) |
40 | { | |
13bcc348 VZ |
41 | Init(); |
42 | ||
6463b9f5 JS |
43 | Create(parent, id, value, pos, size, n, choices, style, validator, name); |
44 | } | |
584ad2a3 MB |
45 | wxComboBox(wxWindow *parent, wxWindowID id, |
46 | const wxString& value, | |
47 | const wxPoint& pos, | |
48 | const wxSize& size, | |
49 | const wxArrayString& choices, | |
50 | long style = 0, | |
51 | const wxValidator& validator = wxDefaultValidator, | |
52 | const wxString& name = wxComboBoxNameStr) | |
53 | { | |
13bcc348 VZ |
54 | Init(); |
55 | ||
584ad2a3 MB |
56 | Create(parent, id, value, pos, size, choices, style, validator, name); |
57 | } | |
4438caf4 | 58 | |
f6bcfd97 BP |
59 | bool Create(wxWindow *parent, |
60 | wxWindowID id, | |
61 | const wxString& value = wxEmptyString, | |
62 | const wxPoint& pos = wxDefaultPosition, | |
63 | const wxSize& size = wxDefaultSize, | |
64 | int n = 0, | |
65 | const wxString choices[] = NULL, | |
66 | long style = 0, | |
67 | const wxValidator& validator = wxDefaultValidator, | |
68 | const wxString& name = wxComboBoxNameStr); | |
584ad2a3 MB |
69 | bool Create(wxWindow *parent, |
70 | wxWindowID id, | |
71 | const wxString& value, | |
72 | const wxPoint& pos, | |
73 | const wxSize& size, | |
74 | const wxArrayString& choices, | |
75 | long style = 0, | |
76 | const wxValidator& validator = wxDefaultValidator, | |
77 | const wxString& name = wxComboBoxNameStr); | |
4438caf4 VZ |
78 | |
79 | // List functions: see wxChoice | |
80 | ||
81 | // Text field functions | |
13bcc348 | 82 | wxString GetValue() const { return m_value; } |
4438caf4 VZ |
83 | virtual void SetValue(const wxString& value); |
84 | ||
85 | // Clipboard operations | |
86 | virtual void Copy(); | |
87 | virtual void Cut(); | |
88 | virtual void Paste(); | |
89 | virtual void SetInsertionPoint(long pos); | |
90 | virtual void SetInsertionPointEnd(); | |
91 | virtual long GetInsertionPoint() const; | |
92 | virtual long GetLastPosition() const; | |
93 | virtual void Replace(long from, long to, const wxString& value); | |
94 | virtual void Remove(long from, long to); | |
95 | virtual void SetSelection(int n) { wxChoice::SetSelection(n); } | |
96 | virtual void SetSelection(long from, long to); | |
97 | virtual void SetEditable(bool editable); | |
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); |
3a7d5f7c | 103 | |
f6bcfd97 BP |
104 | virtual WXHBRUSH OnCtlColor(WXHDC pDC, WXHWND pWnd, WXUINT nCtlColor, |
105 | WXUINT message, WXWPARAM wParam, WXLPARAM lParam); | |
106 | ||
107 | WXHWND GetEditHWND() const; | |
fc7a2a60 | 108 | |
71e57cd6 VZ |
109 | protected: |
110 | virtual WXDWORD MSWGetStyle(long style, WXDWORD *exstyle) const; | |
111 | ||
13bcc348 VZ |
112 | // common part of all ctors |
113 | void Init() { m_selectionOld = -1; } | |
114 | ||
115 | ||
116 | // the previous selection (see MSWCommand() to see why it is needed) | |
117 | int m_selectionOld; | |
118 | ||
119 | // the current selection (also see MSWCommand()) | |
120 | wxString m_value; | |
121 | ||
fc7a2a60 VZ |
122 | private: |
123 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxComboBox) | |
2bda0e17 KB |
124 | }; |
125 | ||
47d67540 | 126 | #endif // wxUSE_COMBOBOX |
2bda0e17 | 127 | #endif |
bbcdf8bc | 128 | // _WX_COMBOBOX_H_ |