HomeSort by relevance Sort by last modified time
    Searched defs:button_name (Results 1 - 2 of 2) sorted by null

  /external/opencv3/modules/highgui/src/
window_QT.h 141 void addButton(QString button_name, int button_type, int initial_button_state , void* on_change, void* userdata);
171 void addButton(QString button_name, CvButtonCallback call, void* userdata, int button_type, int initial_button_state);
185 CvPushButton(CvButtonbar* par, QString button_name, CvButtonCallback call, void* userdata);
189 QString button_name ; member in class:CvPushButton
202 CvCheckBox(CvButtonbar* par, QString button_name, CvButtonCallback call, void* userdata, int initial_button_state);
206 QString button_name ; member in class:CvCheckBox
219 CvRadioButton(CvButtonbar* par, QString button_name, CvButtonCallback call, void* userdata, int initial_button_state);
223 QString button_name ; member in class:CvRadioButton
window_QT.cpp 456 static CvButtonbar* icvFindButtonBarByName(const char* button_name, QBoxLayout* layout)
458 QString nameQt(button_name);
617 CV_IMPL int cvCreateButton(const char* button_name, CvButtonCallback on_change, void* userdata, int button_type, int initial_button_state)
628 Q_ARG(QString, QString(button_name)),
1108 void GuiReceiver::addButton(QString button_name, int button_type, int initial_button_state, void* on_change, void* userdata)
1117 b = CvWindow::createButtonBar(button_name); //the bar has the name of the first button attached to it
1126 b = CvWindow::createButtonBar(button_name); //the bar has the name of the first button attached to it
1132 b->addButton(button_name, (CvButtonCallback) on_change, userdata, button_type, initial_button_state);
1398 QString button_name = name; local
    [all...]

Completed in 592 milliseconds