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

Lines Matching refs:id

135 wxToolBarToolBase *wxToolBarBase::DoAddTool(int id,
147 return InsertTool(GetToolsCount(), id, label, bitmap, bmpDisabled,
152 int id,
164 wxToolBarToolBase *tool = CreateTool(id, label, bitmap, bmpDisabled, kind,
226 wxControl *wxToolBarBase::FindControl( int id )
241 else if ( control->GetId() == id )
280 wxToolBarToolBase *wxToolBarBase::RemoveTool(int id)
286 if ( node->GetData()->GetId() == id )
328 bool wxToolBarBase::DeleteTool(int id)
334 if ( node->GetData()->GetId() == id )
351 wxToolBarToolBase *wxToolBarBase::FindById(int id) const
360 if ( tool->GetId() == id )
445 void wxToolBarBase::EnableTool(int id, bool enable)
447 wxToolBarToolBase *tool = FindById(id);
457 void wxToolBarBase::ToggleTool(int id, bool toggle)
459 wxToolBarToolBase *tool = FindById(id);
470 void wxToolBarBase::SetToggle(int id, bool toggle)
472 wxToolBarToolBase *tool = FindById(id);
482 void wxToolBarBase::SetToolShortHelp(int id, const wxString& help)
484 wxToolBarToolBase *tool = FindById(id);
491 void wxToolBarBase::SetToolLongHelp(int id, const wxString& help)
493 wxToolBarToolBase *tool = FindById(id);
500 wxObject *wxToolBarBase::GetToolClientData(int id) const
502 wxToolBarToolBase *tool = FindById(id);
507 void wxToolBarBase::SetToolClientData(int id, wxObject *clientData)
509 wxToolBarToolBase *tool = FindById(id);
516 int wxToolBarBase::GetToolPos(int id) const
523 if ( node->GetData()->GetId() == id )
532 bool wxToolBarBase::GetToolState(int id) const
534 wxToolBarToolBase *tool = FindById(id);
540 bool wxToolBarBase::GetToolEnabled(int id) const
542 wxToolBarToolBase *tool = FindById(id);
548 wxString wxToolBarBase::GetToolShortHelp(int id) const
550 wxToolBarToolBase *tool = FindById(id);
556 wxString wxToolBarBase::GetToolLongHelp(int id) const
558 wxToolBarToolBase *tool = FindById(id);
584 bool wxToolBarBase::OnLeftClick(int id, bool toggleDown)
586 wxCommandEvent event(wxEVT_COMMAND_TOOL_CLICKED, id);
602 void wxToolBarBase::OnRightClick(int id,
606 wxCommandEvent event(wxEVT_COMMAND_TOOL_RCLICKED, id);
608 event.SetInt(id);
615 // Note that for this event, the id of the window is used,
617 // the tool id.
618 void wxToolBarBase::OnMouseEnter(int id)
622 event.SetInt(id);
628 wxToolBarToolBase* tool = id == wxID_ANY ? (wxToolBarToolBase*)NULL : FindById(id);
631 frame->DoGiveHelp( help, id != wxID_ANY );
658 int id = node->GetData()->GetId();
660 wxUpdateUIEvent event(id);
666 EnableTool(id, event.GetEnabled());
668 ToggleTool(id, event.GetChecked());