• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/generic/

Lines Matching defs:wxOwnerDrawnComboBox

3 // Purpose:     wxOwnerDrawnComboBox, wxVListBoxComboPopup
161 wxOwnerDrawnComboBox* combo = (wxOwnerDrawnComboBox*) m_combo;
163 wxASSERT_MSG( combo->IsKindOf(CLASSINFO(wxOwnerDrawnComboBox)),
174 wxOwnerDrawnComboBox* combo = (wxOwnerDrawnComboBox*) m_combo;
176 wxASSERT_MSG( combo->IsKindOf(CLASSINFO(wxOwnerDrawnComboBox)),
187 wxOwnerDrawnComboBox* combo = (wxOwnerDrawnComboBox*) m_combo;
189 wxASSERT_MSG( combo->IsKindOf(CLASSINFO(wxOwnerDrawnComboBox)),
206 wxOwnerDrawnComboBox* combo = (wxOwnerDrawnComboBox*) m_combo;
208 wxASSERT_MSG( combo->IsKindOf(CLASSINFO(wxOwnerDrawnComboBox)),
831 // wxOwnerDrawnComboBox
835 BEGIN_EVENT_TABLE(wxOwnerDrawnComboBox, wxComboCtrl)
839 IMPLEMENT_DYNAMIC_CLASS2(wxOwnerDrawnComboBox, wxComboCtrl, wxControlWithItems)
841 void wxOwnerDrawnComboBox::Init()
845 bool wxOwnerDrawnComboBox::Create(wxWindow *parent,
857 wxOwnerDrawnComboBox::wxOwnerDrawnComboBox(wxWindow *parent,
873 bool wxOwnerDrawnComboBox::Create(wxWindow *parent,
892 bool wxOwnerDrawnComboBox::Create(wxWindow *parent,
917 wxOwnerDrawnComboBox::~wxOwnerDrawnComboBox()
923 void wxOwnerDrawnComboBox::DoSetPopupControl(wxComboPopup* popup)
943 // wxOwnerDrawnComboBox item manipulation methods
946 void wxOwnerDrawnComboBox::Clear()
955 void wxOwnerDrawnComboBox::Delete(unsigned int n)
957 wxCHECK_RET( IsValid(n), _T("invalid index in wxOwnerDrawnComboBox::Delete") );
965 unsigned int wxOwnerDrawnComboBox::GetCount() const
973 wxString wxOwnerDrawnComboBox::GetString(unsigned int n) const
975 wxCHECK_MSG( IsValid(n), wxEmptyString, _T("invalid index in wxOwnerDrawnComboBox::GetString") );
983 void wxOwnerDrawnComboBox::SetString(unsigned int n, const wxString& s)
987 wxCHECK_RET( IsValid(n), _T("invalid index in wxOwnerDrawnComboBox::SetString") );
992 int wxOwnerDrawnComboBox::FindString(const wxString& s, bool bCase) const
1000 void wxOwnerDrawnComboBox::Select(int n)
1004 wxCHECK_RET( (n == wxNOT_FOUND) || IsValid(n), _T("invalid index in wxOwnerDrawnComboBox::Select") );
1021 int wxOwnerDrawnComboBox::GetSelection() const
1029 int wxOwnerDrawnComboBox::DoAppend(const wxString& item)
1037 int wxOwnerDrawnComboBox::DoInsert(const wxString& item, unsigned int pos)
1049 void wxOwnerDrawnComboBox::DoSetItemClientData(unsigned int n, void* clientData)
1056 void* wxOwnerDrawnComboBox::DoGetItemClientData(unsigned int n) const
1064 void wxOwnerDrawnComboBox::DoSetItemClientObject(unsigned int n, wxClientData* clientData)
1069 wxClientData* wxOwnerDrawnComboBox::DoGetItemClientObject(unsigned int n) const
1075 // wxOwnerDrawnComboBox item drawing and measuring default implementations
1078 void wxOwnerDrawnComboBox::OnDrawItem( wxDC& dc,
1095 wxCoord wxOwnerDrawnComboBox::OnMeasureItem( size_t WXUNUSED(item) ) const
1100 wxCoord wxOwnerDrawnComboBox::OnMeasureItemWidth( size_t WXUNUSED(item) ) const
1105 void wxOwnerDrawnComboBox::OnDrawBackground(wxDC& dc,