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

Lines Matching refs:item

99         item
127 // Radio box item
339 void wxRadioBox::SetString(unsigned int item, const wxString& label)
341 wxCHECK_RET( IsValid(item), wxT("invalid radiobox index") );
343 m_radioWidth[item] =
344 m_radioHeight[item] = wxDefaultCoord;
346 ::SetWindowText((*m_radioButtons)[item], label.c_str());
366 wxString wxRadioBox::GetString(unsigned int item) const
368 wxCHECK_MSG( IsValid(item), wxEmptyString,
371 return wxGetWindowText((*m_radioButtons)[item]);
385 bool wxRadioBox::Enable(unsigned int item, bool enable)
387 wxCHECK_MSG( IsValid(item), false,
388 wxT("invalid item in wxRadioBox::Enable()") );
390 BOOL ret = ::EnableWindow((*m_radioButtons)[item], enable);
395 bool wxRadioBox::IsItemEnabled(unsigned int item) const
397 wxCHECK_MSG( IsValid(item), false,
398 wxT("invalid item in wxRadioBox::IsItemEnabled()") );
400 return ::IsWindowEnabled((*m_radioButtons)[item]) != 0;
404 bool wxRadioBox::Show(unsigned int item, bool show)
406 wxCHECK_MSG( IsValid(item), false,
407 wxT("invalid item in wxRadioBox::Show()") );
409 BOOL ret = ::ShowWindow((*m_radioButtons)[item], show ? SW_SHOW : SW_HIDE);
420 bool wxRadioBox::IsItemShown(unsigned int item) const
422 wxCHECK_MSG( IsValid(item), false,
423 wxT("invalid item in wxRadioBox::IsItemShown()") );
428 return (::GetWindowLong((*m_radioButtons)[item],
439 void wxRadioBox::DoSetItemToolTip(unsigned int item, wxToolTip *tooltip)
441 // we have already checked for the item to be valid in wxRadioBoxBase
442 const HWND hwndRbtn = (*m_radioButtons)[item];
459 for ( size_t item = 0; item < m_radioButtons->GetCount(); item++ )
461 ::SetParent((*m_radioButtons)[item], hwndParent);
630 // item is the last in its row if it is a multiple of the number of
631 // columns or if it is just the last item
637 // item is the last in the row if it is in the last columns