#ifndef _WX_CHOICE_H_
#define _WX_CHOICE_H_
+// ----------------------------------------------------------------------------
// Choice item
+// ----------------------------------------------------------------------------
+
class WXDLLEXPORT wxChoice: public wxChoiceBase
{
DECLARE_DYNAMIC_CLASS(wxChoice)
public:
// ctors
- inline wxChoice() { }
+ inline wxChoice() { Init(); }
+ virtual ~wxChoice();
inline wxChoice( wxWindow* pParent
,wxWindowID vId
,const wxString& rsName = wxChoiceNameStr
)
{
+ Init();
Create( pParent
,vId
,rPos
,const wxString& rsName = wxChoiceNameStr
)
{
+ Init();
Create( pParent
,vId
,rPos
//
// Implement base class virtuals
//
- virtual int DoAppend(const wxString& rsItem);
- virtual int DoInsert(const wxString& rsItem, unsigned int pos);
virtual void Delete(unsigned int n);
virtual void Clear(void);
virtual unsigned int GetCount() const;
virtual int GetSelection(void) const;
+ virtual int GetCurrentSelection(void) const;
virtual void SetSelection(int n);
virtual wxString GetString(unsigned int n) const;
);
protected:
- virtual void DoSetItemClientData(unsigned int n, void* pClientData);
+ // common part of all ctors
+ void Init() { m_lastAcceptedSelection = wxID_NONE; }
+
+ virtual int DoAppend(const wxString& rsItem);
+ virtual int DoInsert(const wxString& rsItem, unsigned int pos);
+ virtual void DoSetItemClientData(unsigned int n, void* pClientData);
virtual void* DoGetItemClientData(unsigned int n) const;
virtual void DoSetItemClientObject(unsigned int n, wxClientData* pClientData);
virtual wxClientData* DoGetItemClientObject(unsigned int n) const;
,int nsizeFlags = wxSIZE_AUTO
);
void Free(void);
+
+ // last "completed" selection, i.e. not the transient one while the user is
+ // browsing the popup list: this is only used when != wxID_NONE which is
+ // the case while the drop down is opened
+ int m_lastAcceptedSelection;
}; // end of CLASS wxChoice
#endif // _WX_CHOICE_H_
// on global settings) rather than inheriting the parent's background colour.
//
SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW));
+
+ // initialize the controls contents
for (int i = 0; i < n; i++)
{
Append(asChoices[i]);
return true;
} // end of wxChoice::Create
+wxChoice::~wxChoice()
+{
+ Free();
+}
+
// ----------------------------------------------------------------------------
// adding/deleting items to/from the list
// ----------------------------------------------------------------------------
void wxChoice::Delete(unsigned int n)
{
wxCHECK_RET( IsValid(n), wxT("invalid item index in wxChoice::Delete") );
+
+ if ( HasClientObjectData() )
+ {
+ delete GetClientObject(n);
+ }
+
::WinSendMsg(GetHwnd(), LM_DELETEITEM, (MPARAM)n, (MPARAM)0);
} // end of wxChoice::Delete
// ----------------------------------------------------------------------------
int wxChoice::GetSelection() const
+{
+ // if m_lastAcceptedSelection is set, it means that the dropdown is
+ // currently shown and that we want to use the last "permanent" selection
+ // instead of whatever is under the mouse pointer currently
+ //
+ // otherwise, get the selection from the control
+ return m_lastAcceptedSelection == wxID_NONE ? GetCurrentSelection()
+ : m_lastAcceptedSelection;
+}
+
+int wxChoice::GetCurrentSelection() const
{
return((int)LONGFROMMR(::WinSendMsg(GetHwnd(), LM_QUERYSELECTION, (MPARAM)LIT_FIRST, (MPARAM)0)));
} // end of wxChoice::GetSelection