]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/os2/combobox.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxComboBox class
4 // Author: David Webster
8 // Copyright: (c) David Webster
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_COMBOBOX_H_
13 #define _WX_COMBOBOX_H_
15 #include "wx/choice.h"
19 WXDLLEXPORT_DATA(extern const char*) wxComboBoxNameStr
;
20 WXDLLEXPORT_DATA(extern const char*) wxEmptyString
;
23 class WXDLLEXPORT wxComboBox
: public wxChoice
25 DECLARE_DYNAMIC_CLASS(wxComboBox
)
28 inline wxComboBox() {}
30 inline 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
,
37 # if defined(__VISAGECPP__)
38 const wxValidator
* validator
= wxDefaultValidator
,
40 const wxValidator
& validator
= wxDefaultValidator
,
43 const wxString
& name
= wxComboBoxNameStr
)
45 Create(parent
, id
, value
, pos
, size
, n
, choices
, style
, validator
, name
);
48 bool Create(wxWindow
*parent
, wxWindowID id
,
49 const wxString
& value
= wxEmptyString
,
50 const wxPoint
& pos
= wxDefaultPosition
,
51 const wxSize
& size
= wxDefaultSize
,
52 int n
= 0, const wxString choices
[] = NULL
,
55 # if defined(__VISAGECPP__)
56 const wxValidator
* validator
= wxDefaultValidator
,
58 const wxValidator
& validator
= wxDefaultValidator
,
61 const wxString
& name
= wxComboBoxNameStr
);
63 // List functions: see wxChoice
65 wxString
GetValue() const { return GetLabel(); }
66 virtual void SetValue(const wxString
& value
);
68 // Clipboard operations
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(int n
) { wxChoice::SetSelection(n
); }
79 virtual void SetSelection(long from
, long to
);
80 virtual void SetEditable(bool editable
);
82 virtual bool OS2Command(WXUINT param
, WXWORD id
);
85 virtual void DoSetSize(int x
, int y
,
86 int width
, int height
,
87 int sizeFlags
= wxSIZE_AUTO
);
90 #endif // wxUSE_COMBOBOX