]>
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
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
);
41 bool Create(wxWindow
*parent
,
43 const wxString
& value
= wxEmptyString
,
44 const wxPoint
& pos
= wxDefaultPosition
,
45 const wxSize
& size
= wxDefaultSize
,
47 const wxString choices
[] = NULL
,
49 const wxValidator
& validator
= wxDefaultValidator
,
50 const wxString
& name
= wxComboBoxNameStr
);
52 // List functions: see wxChoice
54 // Text field functions
55 wxString
GetValue() const { return GetLabel(); }
56 virtual void SetValue(const wxString
& value
);
58 // Clipboard operations
62 virtual void SetInsertionPoint(long pos
);
63 virtual void SetInsertionPointEnd();
64 virtual long GetInsertionPoint() const;
65 virtual long GetLastPosition() const;
66 virtual void Replace(long from
, long to
, const wxString
& value
);
67 virtual void Remove(long from
, long to
);
68 virtual void SetSelection(int n
) { wxChoice::SetSelection(n
); }
69 virtual void SetSelection(long from
, long to
);
70 virtual void SetEditable(bool editable
);
72 // implementation only from now on
73 virtual bool MSWCommand(WXUINT param
, WXWORD id
);
74 bool MSWProcessEditMsg(WXUINT msg
, WXWPARAM wParam
, WXLPARAM lParam
);
75 virtual WXHBRUSH
OnCtlColor(WXHDC pDC
, WXHWND pWnd
, WXUINT nCtlColor
,
76 WXUINT message
, WXWPARAM wParam
, WXLPARAM lParam
);
78 WXHWND
GetEditHWND() const;
81 DECLARE_DYNAMIC_CLASS_NO_COPY(wxComboBox
)
84 #endif // wxUSE_COMBOBOX