]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/msw/combobox.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/msw/combobox.h
3 // Purpose: wxComboBox class
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_COMBOBOX_H_
13 #define _WX_COMBOBOX_H_
15 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
16 #pragma interface "combobox.h"
19 #include "wx/choice.h"
23 // ----------------------------------------------------------------------------
25 // ----------------------------------------------------------------------------
27 class WXDLLEXPORT wxComboBox
: public wxChoice
30 wxComboBox() { Init(); }
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
,
38 const wxValidator
& validator
= wxDefaultValidator
,
39 const wxString
& name
= wxComboBoxNameStr
)
43 Create(parent
, id
, value
, pos
, size
, n
, choices
, style
, validator
, name
);
45 wxComboBox(wxWindow
*parent
, wxWindowID id
,
46 const wxString
& value
,
49 const wxArrayString
& choices
,
51 const wxValidator
& validator
= wxDefaultValidator
,
52 const wxString
& name
= wxComboBoxNameStr
)
56 Create(parent
, id
, value
, pos
, size
, choices
, style
, validator
, name
);
59 bool Create(wxWindow
*parent
,
61 const wxString
& value
= wxEmptyString
,
62 const wxPoint
& pos
= wxDefaultPosition
,
63 const wxSize
& size
= wxDefaultSize
,
65 const wxString choices
[] = NULL
,
67 const wxValidator
& validator
= wxDefaultValidator
,
68 const wxString
& name
= wxComboBoxNameStr
);
69 bool Create(wxWindow
*parent
,
71 const wxString
& value
,
74 const wxArrayString
& choices
,
76 const wxValidator
& validator
= wxDefaultValidator
,
77 const wxString
& name
= wxComboBoxNameStr
);
79 // List functions: see wxChoice
81 // Text field functions
82 wxString
GetValue() const { return m_value
; }
83 virtual void SetValue(const wxString
& value
);
85 // Clipboard operations
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 int GetSelection() const;
98 virtual void GetSelection(long* from
, long* to
) const;
99 virtual void SetEditable(bool editable
);
100 virtual void Clear() { wxChoice::Clear(); m_selectionOld
= -1; }
102 // implementation only from now on
103 virtual bool MSWCommand(WXUINT param
, WXWORD id
);
104 bool MSWProcessEditMsg(WXUINT msg
, WXWPARAM wParam
, WXLPARAM lParam
);
105 virtual WXLRESULT
MSWWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
);
107 WXHWND
GetEditHWND() const;
110 virtual WXDWORD
MSWGetStyle(long style
, WXDWORD
*exstyle
) const;
112 // common part of all ctors
113 void Init() { m_selectionOld
= -1; }
116 // the previous selection (see MSWCommand() to see why it is needed)
119 // the current selection (also see MSWCommand())
123 DECLARE_DYNAMIC_CLASS_NO_COPY(wxComboBox
)
126 #endif // wxUSE_COMBOBOX