]>
Commit | Line | Data |
---|---|---|
9b6dbb09 JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: combobox.h | |
3 | // Purpose: wxComboBox class | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 17/09/98 | |
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 | ||
3399051e | 15 | #if defined(__GNUG__) && !defined(__APPLE__) |
9b6dbb09 JS |
16 | #pragma interface "combobox.h" |
17 | #endif | |
18 | ||
19 | #include "wx/choice.h" | |
20 | ||
9b6dbb09 JS |
21 | // Combobox item |
22 | class WXDLLEXPORT wxComboBox: public wxChoice | |
23 | { | |
bfc6fde4 | 24 | DECLARE_DYNAMIC_CLASS(wxComboBox) |
83df96d6 | 25 | |
bfc6fde4 | 26 | public: |
d8d18184 | 27 | wxComboBox() { m_inSetSelection = false; } |
bfc6fde4 | 28 | ~wxComboBox(); |
83df96d6 | 29 | |
bfc6fde4 | 30 | inline wxComboBox(wxWindow *parent, wxWindowID id, |
83df96d6 JS |
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) | |
bfc6fde4 | 38 | { |
d8d18184 | 39 | m_inSetSelection = false; |
ec75d791 MB |
40 | Create(parent, id, value, pos, size, n, choices, |
41 | style, validator, name); | |
bfc6fde4 | 42 | } |
83df96d6 | 43 | |
bfc6fde4 | 44 | bool Create(wxWindow *parent, wxWindowID id, |
83df96d6 JS |
45 | const wxString& value = wxEmptyString, |
46 | const wxPoint& pos = wxDefaultPosition, | |
47 | const wxSize& size = wxDefaultSize, | |
48 | int n = 0, const wxString choices[] = NULL, | |
49 | long style = 0, | |
50 | const wxValidator& validator = wxDefaultValidator, | |
51 | const wxString& name = wxComboBoxNameStr); | |
52 | ||
ec75d791 MB |
53 | // implementation of wxControlWithItems |
54 | virtual int DoAppend(const wxString& item); | |
243dbf1a | 55 | virtual int DoInsert(const wxString& item, int pos); |
bfc6fde4 VZ |
56 | virtual void Delete(int n); |
57 | virtual void Clear(); | |
58 | virtual int GetSelection() const ; | |
59 | virtual void SetSelection(int n); | |
60 | virtual int FindString(const wxString& s) const; | |
61 | virtual wxString GetString(int n) const ; | |
9b1bd0c6 MB |
62 | virtual void SetString(int n, const wxString& s); |
63 | ||
bfc6fde4 VZ |
64 | // Text field functions |
65 | virtual wxString GetValue() const ; | |
66 | virtual void SetValue(const wxString& value); | |
83df96d6 | 67 | |
bfc6fde4 VZ |
68 | // Clipboard operations |
69 | virtual void Copy(); | |
70 | virtual void Cut(); | |
71 | virtual void Paste(); | |
72 | virtual void SetInsertionPoint(long pos); | |
73 | virtual void SetInsertionPointEnd(); | |
74 | virtual long GetInsertionPoint() const ; | |
75 | virtual long GetLastPosition() const ; | |
76 | virtual void Replace(long from, long to, const wxString& value); | |
77 | virtual void Remove(long from, long to); | |
78 | virtual void SetSelection(long from, long to); | |
79 | virtual void SetEditable(bool editable); | |
83df96d6 | 80 | |
bfc6fde4 VZ |
81 | // Implementation |
82 | virtual void ChangeFont(bool keepOriginalSize = TRUE); | |
83 | virtual void ChangeBackgroundColour(); | |
84 | virtual void ChangeForegroundColour(); | |
85 | WXWidget GetTopWidget() const { return m_mainWidget; } | |
86 | WXWidget GetMainWidget() const { return m_mainWidget; } | |
ec75d791 MB |
87 | |
88 | virtual wxSize DoGetBestSize() const; | |
bfc6fde4 VZ |
89 | protected: |
90 | virtual void DoSetSize(int x, int y, | |
83df96d6 JS |
91 | int width, int height, |
92 | int sizeFlags = wxSIZE_AUTO); | |
e1aae528 MB |
93 | private: |
94 | // only implemented for native combo box | |
95 | void AdjustDropDownListSize(); | |
d8d18184 MB |
96 | |
97 | // implementation detail, should really be private | |
98 | public: | |
99 | bool m_inSetSelection; | |
9b6dbb09 JS |
100 | }; |
101 | ||
102 | #endif | |
83df96d6 | 103 | // _WX_COMBOBOX_H_ |