Home | History | Annotate | Download | only in QGVLauncher

Lines Matching defs:scene

261     QGraphicsScene* scene() const { return m_scene; }
277 , scene(other)
285 , scene(new SharedScene())
294 view->setScene(scene->scene());
304 view->setMainWidget(scene->webView());
306 connect(scene->webView(), SIGNAL(loadFinished(bool)), this, SLOT(loadFinished(bool)));
307 connect(scene->webView(), SIGNAL(titleChanged(const QString&)), this, SLOT(setWindowTitle(const QString&)));
308 connect(scene->webView()->page(), SIGNAL(windowCloseRequested()), this, SLOT(close()));
313 s0->assignProperty(scene->webView(), "yRotation", 0);
316 s1->assignProperty(scene->webView(), "yRotation", 90);
319 QPropertyAnimation *yRotationAnim = new QPropertyAnimation(scene->webView(), "yRotation", this);
324 s2->assignProperty(scene->webView(), "yRotation", -90);
349 return scene->webView()->page();
377 QUrl url = scene->webView()->url();
401 MainWindow* mw = new MainWindow(scene);
438 scene->webView()->load(url);
439 scene->webView()->setFocus(Qt::OtherFocusReason);
444 QWebPage* page = scene->webView()->page();
480 QExplicitlySharedDataPointer<SharedScene> scene;