]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/motif/combobox.h
1 /////////////////////////////////////////////////////////////////////////////
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_
16 #pragma interface "combobox.h"
19 #include "wx/choice.h"
21 WXDLLEXPORT_DATA(extern const char*) wxComboBoxNameStr
;
22 WXDLLEXPORT_DATA(extern const char*) wxEmptyString
;
25 class WXDLLEXPORT wxComboBox
: public wxChoice
27 DECLARE_DYNAMIC_CLASS(wxComboBox
)
30 wxComboBox() { m_inSetSelection
= false; }
33 inline wxComboBox(wxWindow
*parent
, wxWindowID id
,
34 const wxString
& value
= wxEmptyString
,
35 const wxPoint
& pos
= wxDefaultPosition
,
36 const wxSize
& size
= wxDefaultSize
,
37 int n
= 0, const wxString choices
[] = NULL
,
39 const wxValidator
& validator
= wxDefaultValidator
,
40 const wxString
& name
= wxComboBoxNameStr
)
42 m_inSetSelection
= false;
43 Create(parent
, id
, value
, pos
, size
, n
, choices
,
44 style
, validator
, name
);
47 bool Create(wxWindow
*parent
, wxWindowID id
,
48 const wxString
& value
= wxEmptyString
,
49 const wxPoint
& pos
= wxDefaultPosition
,
50 const wxSize
& size
= wxDefaultSize
,
51 int n
= 0, const wxString choices
[] = NULL
,
53 const wxValidator
& validator
= wxDefaultValidator
,
54 const wxString
& name
= wxComboBoxNameStr
);
56 // implementation of wxControlWithItems
57 virtual int DoAppend(const wxString
& item
);
58 virtual void Delete(int n
);
60 virtual int GetSelection() const ;
61 virtual void SetSelection(int n
);
62 virtual int FindString(const wxString
& s
) const;
63 virtual wxString
GetString(int n
) const ;
64 virtual void SetString(int n
, const wxString
& s
);
66 // Text field functions
67 virtual wxString
GetValue() const ;
68 virtual void SetValue(const wxString
& value
);
70 // Clipboard operations
74 virtual void SetInsertionPoint(long pos
);
75 virtual void SetInsertionPointEnd();
76 virtual long GetInsertionPoint() const ;
77 virtual long GetLastPosition() const ;
78 virtual void Replace(long from
, long to
, const wxString
& value
);
79 virtual void Remove(long from
, long to
);
80 virtual void SetSelection(long from
, long to
);
81 virtual void SetEditable(bool editable
);
84 virtual void ChangeFont(bool keepOriginalSize
= TRUE
);
85 virtual void ChangeBackgroundColour();
86 virtual void ChangeForegroundColour();
87 WXWidget
GetTopWidget() const { return m_mainWidget
; }
88 WXWidget
GetMainWidget() const { return m_mainWidget
; }
90 virtual wxSize
DoGetBestSize() const;
92 virtual void DoSetSize(int x
, int y
,
93 int width
, int height
,
94 int sizeFlags
= wxSIZE_AUTO
);
96 // only implemented for native combo box
97 void AdjustDropDownListSize();
99 // implementation detail, should really be private
101 bool m_inSetSelection
;