Searched refs:nItem (Results 1 - 10 of 10) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/os2/
H A Dradiobox.h104 virtual bool Enable(unsigned int nItem, bool bEnable = true);
113 virtual bool Show(unsigned int nItem, bool bShow = true);
163 void SetLabel( int nItem, const wxString& rsLabel );
165 wxString GetLabel(int nItem) const;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/os2/
H A Dradiobox.cpp513 bool wxRadioBox::Enable(unsigned int nItem, bool bEnable) argument
515 wxCHECK_MSG( IsValid(nItem), false,
518 ::WinEnableWindow((HWND) m_ahRadioButtons[nItem], bEnable);
536 wxString wxRadioBox::GetLabel(int nItem) const
538 wxCHECK_MSG( IsValid(nItem), wxEmptyString, wxT("invalid radiobox index") );
540 return wxGetWindowText(m_ahRadioButtons[nItem]);
779 void wxRadioBox::SetString(unsigned int nItem, const wxString& rsLabel) argument
781 wxCHECK_RET( IsValid(nItem), wxT("invalid radiobox index") );
783 m_pnRadioWidth[nItem] = m_pnRadioHeight[nItem]
813 Show(unsigned int nItem, bool bShow) argument
[all...]
H A Dchecklst.cpp410 size_t nItem = (size_t)(nY / vHeight); local
412 if (nItem < m_nNumItems)
413 GetItem(nItem)->Toggle();
H A Dframe.cpp1044 bool wxFrame::HandleMenuSelect( WXWORD nItem, argument
1053 rc = ::WinSendMsg(hMenu, MM_QUERYITEM, MPFROM2SHORT(nItem, TRUE), (MPARAM)&mItem);
1057 wxMenuEvent vEvent(wxEVT_MENU_HIGHLIGHT, nItem);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/msw/
H A Dchecklst.cpp507 int nItem = HitTest(event.GetX(), event.GetY()); local
509 if ( nItem != wxNOT_FOUND )
511 wxCheckListBoxItem *item = GetItem(nItem);
526 int nItem = (int)::SendMessage local
534 return nItem >= (int)m_noItems ? wxNOT_FOUND : nItem;
H A Dframe.cpp982 bool wxFrame::HandleMenuSelect(WXWORD nItem, WXWORD flags, WXHMENU hMenu) argument
993 item = nItem;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/mac/classic/
H A Dchecklst.cpp434 size_t nItem = ((size_t)event.GetY()) / lineheight + topcell ; local
436 if ( nItem < m_noItems )
438 Check(nItem, !IsChecked(nItem) ) ;
440 event.SetInt(nItem);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/ownerdrw/
H A Downerdrw.cpp357 unsigned int nItem = event.GetInt(); local
358 strSelection.Printf(wxT("item %d was %schecked"), nItem,
359 m_pListBox->IsChecked(nItem) ? wxT("") : wxT("un"));
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/msw/
H A Dframe.h86 bool HandleMenuSelect(WXWORD nItem, WXWORD nFlags, WXHMENU hMenu);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/checklst/
H A Dchecklst.cpp463 unsigned int nItem = event.GetInt(); local
465 wxLogStatus(this, wxT("item %d was %schecked"), nItem,
466 m_pListBox->IsChecked(nItem) ? wxT("") : wxT("un"));

Completed in 93 milliseconds