1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/msw/choice.h
3 // Purpose: wxChoice class
4 // Author: Julian Smart
5 // Modified by: Vadim Zeitlin to derive from wxChoiceBase
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
15 struct tagCOMBOBOXINFO
;
17 // ----------------------------------------------------------------------------
19 // ----------------------------------------------------------------------------
21 class WXDLLIMPEXP_CORE wxChoice
: public wxChoiceBase
25 wxChoice() { Init(); }
28 wxChoice(wxWindow
*parent
,
30 const wxPoint
& pos
= wxDefaultPosition
,
31 const wxSize
& size
= wxDefaultSize
,
32 int n
= 0, const wxString choices
[] = NULL
,
34 const wxValidator
& validator
= wxDefaultValidator
,
35 const wxString
& name
= wxChoiceNameStr
)
38 Create(parent
, id
, pos
, size
, n
, choices
, style
, validator
, name
);
41 wxChoice(wxWindow
*parent
,
45 const wxArrayString
& choices
,
47 const wxValidator
& validator
= wxDefaultValidator
,
48 const wxString
& name
= wxChoiceNameStr
)
51 Create(parent
, id
, pos
, size
, choices
, style
, validator
, name
);
54 bool Create(wxWindow
*parent
,
56 const wxPoint
& pos
= wxDefaultPosition
,
57 const wxSize
& size
= wxDefaultSize
,
58 int n
= 0, const wxString choices
[] = NULL
,
60 const wxValidator
& validator
= wxDefaultValidator
,
61 const wxString
& name
= wxChoiceNameStr
);
62 bool Create(wxWindow
*parent
,
66 const wxArrayString
& choices
,
68 const wxValidator
& validator
= wxDefaultValidator
,
69 const wxString
& name
= wxChoiceNameStr
);
71 virtual bool Show(bool show
= true);
73 virtual void SetLabel(const wxString
& label
);
75 virtual unsigned int GetCount() const;
76 virtual int GetSelection() const;
77 virtual int GetCurrentSelection() const;
78 virtual void SetSelection(int n
);
80 virtual int FindString(const wxString
& s
, bool bCase
= false) const;
81 virtual wxString
GetString(unsigned int n
) const;
82 virtual void SetString(unsigned int n
, const wxString
& s
);
84 virtual wxVisualAttributes
GetDefaultAttributes() const
86 return GetClassDefaultAttributes(GetWindowVariant());
89 static wxVisualAttributes
90 GetClassDefaultAttributes(wxWindowVariant variant
= wxWINDOW_VARIANT_NORMAL
);
93 virtual bool MSWCommand(WXUINT param
, WXWORD id
);
94 WXLRESULT
MSWWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
);
95 virtual WXHBRUSH
MSWControlColor(WXHDC hDC
, WXHWND hWnd
);
96 virtual bool MSWShouldPreProcessMessage(WXMSG
*pMsg
);
97 virtual WXDWORD
MSWGetStyle(long style
, WXDWORD
*exstyle
) const;
99 // returns true if the platform should explicitly apply a theme border
100 virtual bool CanApplyThemeBorder() const { return false; }
103 // choose the default border for this window
104 virtual wxBorder
GetDefaultBorder() const { return wxBORDER_NONE
; }
106 // common part of all ctors
109 m_lastAcceptedSelection
=
110 m_pendingSelection
= wxID_NONE
;
111 m_heightOwn
= wxDefaultCoord
;
114 virtual void DoDeleteOneItem(unsigned int n
);
115 virtual void DoClear();
117 virtual int DoInsertItems(const wxArrayStringsAdapter
& items
,
119 void **clientData
, wxClientDataType type
);
121 virtual void DoMoveWindow(int x
, int y
, int width
, int height
);
122 virtual void DoSetItemClientData(unsigned int n
, void* clientData
);
123 virtual void* DoGetItemClientData(unsigned int n
) const;
125 // MSW implementation
126 virtual wxSize
DoGetBestSize() const;
127 virtual void DoGetSize(int *w
, int *h
) const;
128 virtual void DoSetSize(int x
, int y
,
129 int width
, int height
,
130 int sizeFlags
= wxSIZE_AUTO
);
131 virtual wxSize
DoGetSizeFromTextSize(int xlen
, int ylen
= -1) const;
133 // Show or hide the popup part of the control.
134 void MSWDoPopupOrDismiss(bool show
);
136 // update the height of the drop down list to fit the number of items we
137 // have (without changing the visible height)
138 void MSWUpdateDropDownHeight();
140 // set the height of the visible part of the control to m_heightOwn
141 void MSWUpdateVisibleHeight();
143 // Call GetComboBoxInfo() and return false if it's not supported by this
144 // system. Notice that the caller must initialize info.cbSize.
145 bool MSWGetComboBoxInfo(tagCOMBOBOXINFO
* info
) const;
147 // create and initialize the control
148 bool CreateAndInit(wxWindow
*parent
, wxWindowID id
,
151 int n
, const wxString choices
[],
153 const wxValidator
& validator
,
154 const wxString
& name
);
156 // free all memory we have (used by Clear() and dtor)
159 // set the height for simple combo box
160 int SetHeightSimpleComboBox(int nItems
) const;
162 #if wxUSE_DEFERRED_SIZING
163 virtual void MSWEndDeferWindowPos();
164 #endif // wxUSE_DEFERRED_SIZING
166 // These variables are only used while the drop down is opened.
168 // The first one contains the item that had been originally selected before
169 // the drop down was opened and the second one the item we should select
170 // when the drop down is closed again.
171 int m_lastAcceptedSelection
,
174 // the height of the control itself if it was set explicitly or
175 // wxDefaultCoord if it hadn't
178 DECLARE_DYNAMIC_CLASS_NO_COPY(wxChoice
)
181 #endif // _WX_CHOICE_H_