Lines Matching full:slot
160 connect(page(), SIGNAL(loadStarted()), this, SLOT(loadStarted()));
161 connect(page(), SIGNAL(loadFinished(bool)), this, SLOT(loadFinished()));
163 this, SLOT(showLinkHover(const QString&, const QString&)));
168 connect(this, SIGNAL(destroyed()), inspector, SLOT(deleteLater()));
374 m_view, SLOT(print(QPrinter*)));
482 fileMenu->addAction("New Window", this, SLOT(newWindow()), QKeySequence::New);
483 fileMenu->addAction(tr("Open File..."), this, SLOT(openFile()), QKeySequence::Open);
484 fileMenu->addAction("Close Window", this, SLOT(close()), QKeySequence::Close);
486 fileMenu->addAction("Take Screen Shot...", this, SLOT(screenshot()));
487 fileMenu->addAction(tr("Print..."), this, SLOT(print()), QKeySequence::Print);
489 fileMenu->addAction("Quit", QApplication::instance(), SLOT(closeAllWindows()), QKeySequence(Qt::CTRL | Qt::Key_Q));
499 QAction* setEditable = editMenu->addAction("Set Editable", this, SLOT(setEditable(bool)));
506 QAction* zoomIn = viewMenu->addAction("Zoom &In", this, SLOT(zoomIn()));
507 QAction* zoomOut = viewMenu->addAction("Zoom &Out", this, SLOT(zoomOut()));
508 QAction* resetZoom = viewMenu->addAction("Reset Zoom", this, SLOT(resetZoom()));
509 QAction* zoomTextOnly = viewMenu->addAction("Zoom Text Only", this, SLOT(toggleZoomTextOnly(bool)));
513 viewMenu->addAction("Dump HTML", this, SLOT(dumpHtml()));
514 // viewMenu->addAction("Dump plugins", this, SLOT(dumpPlugins()));
532 toolsMenu->addAction("Select Elements...", this, SLOT(selectElements()));
533 QAction* showInspectorAction = toolsMenu->addAction("Show Web Inspector", inspector, SLOT(setVisible(bool)), QKeySequence(Qt::CTRL | Qt::ALT | Qt::Key_I));
535 showInspectorAction->connect(inspector, SIGNAL(visibleChanged(bool)), SLOT(setChecked(bool)));
538 QAction* touchMockAction = toolsMenu->addAction("Toggle multitouch mocking", this, SLOT(setTouchMocking(bool)));
543 QAction* toggleAcceleratedCompositing = toolsMenu->addAction("Toggle Accelerated Compositing", this, SLOT(toggleAcceleratedCompositing(bool)));
547 QAction* toggleGraphicsView = toolsMenu->addAction("Toggle use of QGraphicsView", this, SLOT(initializeView(bool)));
721 QObject::connect(window->page()->mainFrame(), SIGNAL(loadFinished(bool)), &loader, SLOT(loadNext()));