Searched refs:vect_QActions (Results 1 – 2 of 2) sorted by relevance
/external/opencv3/modules/highgui/src/ |
D | window_QT.cpp | 1788 if (!vect_QActions.empty()) in enablePropertiesButton() 1789 vect_QActions[9]->setDisabled(false); in enablePropertiesButton() 1924 vect_QActions.resize(10); in createActions() 1929 vect_QActions[0] = new QAction(QIcon(":/left-icon"), "Panning left (CTRL+arrowLEFT)", this); in createActions() 1930 vect_QActions[0]->setIconVisibleInMenu(true); in createActions() 1931 QObject::connect(vect_QActions[0], SIGNAL(triggered()), view, SLOT(siftWindowOnLeft())); in createActions() 1933 vect_QActions[1] = new QAction(QIcon(":/right-icon"), "Panning right (CTRL+arrowRIGHT)", this); in createActions() 1934 vect_QActions[1]->setIconVisibleInMenu(true); in createActions() 1935 QObject::connect(vect_QActions[1], SIGNAL(triggered()), view, SLOT(siftWindowOnRight())); in createActions() 1937 vect_QActions[2] = new QAction(QIcon(":/up-icon"), "Panning up (CTRL+arrowUP)", this); in createActions() [all …]
|
D | window_QT.h | 329 QVector<QAction*> vect_QActions; variable
|