• 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:wxGenericColourDialog

40 IMPLEMENT_DYNAMIC_CLASS(wxGenericColourDialog, wxDialog)
42 BEGIN_EVENT_TABLE(wxGenericColourDialog, wxDialog)
43 EVT_BUTTON(wxID_ADD_CUSTOM, wxGenericColourDialog::OnAddCustom)
45 EVT_SLIDER(wxID_RED_SLIDER, wxGenericColourDialog::OnRedSlider)
46 EVT_SLIDER(wxID_GREEN_SLIDER, wxGenericColourDialog::OnGreenSlider)
47 EVT_SLIDER(wxID_BLUE_SLIDER, wxGenericColourDialog::OnBlueSlider)
49 EVT_PAINT(wxGenericColourDialog::OnPaint)
50 EVT_MOUSE_EVENTS(wxGenericColourDialog::OnMouseEvent)
51 EVT_CLOSE(wxGenericColourDialog::OnCloseWindow)
118 wxGenericColourDialog::wxGenericColourDialog()
125 wxGenericColourDialog::wxGenericColourDialog(wxWindow *parent,
133 wxGenericColourDialog::~wxGenericColourDialog()
137 void wxGenericColourDialog::OnCloseWindow(wxCloseEvent& WXUNUSED(event))
142 bool wxGenericColourDialog::Create(wxWindow *parent, wxColourData *data)
160 int wxGenericColourDialog::ShowModal()
167 void wxGenericColourDialog::OnMouseEvent(wxMouseEvent& event)
204 void wxGenericColourDialog::OnPaint(wxPaintEvent& event)
220 void wxGenericColourDialog::CalculateMeasurements()
254 void wxGenericColourDialog::CreateWidgets()
312 void wxGenericColourDialog::InitializeColours(void)
371 void wxGenericColourDialog::PaintBasicColours(wxDC& dc)
393 void wxGenericColourDialog::PaintCustomColours(wxDC& dc)
416 void wxGenericColourDialog::PaintHighlight(wxDC& dc, bool draw)
462 void wxGenericColourDialog::PaintCustomColour(wxDC& dc)
476 void wxGenericColourDialog::OnBasicColourClick(int which)
498 void wxGenericColourDialog::OnCustomColourClick(int which)
520 void wxGenericColourDialog::OnOk(void)
525 void wxGenericColourDialog::OnCancel(void)
532 void wxGenericColourDialog::OnAddCustom(wxCommandEvent& WXUNUSED(event))
554 void wxGenericColourDialog::OnRedSlider(wxCommandEvent& WXUNUSED(event))
564 void wxGenericColourDialog::OnGreenSlider(wxCommandEvent& WXUNUSED(event))
574 void wxGenericColourDialog::OnBlueSlider(wxCommandEvent& WXUNUSED(event))