Home
last modified time | relevance | path

Searched refs:m_view (Results 1 – 13 of 13) sorted by relevance

/OK3568_Linux_fs/app/forlinx/flapp/src/plugins/simplebrowser/
H A Dwebpopupwindow.cpp62 , m_view(new WebView(this)) in WebPopupWindow()
71 layout->addWidget(m_view); in WebPopupWindow()
73 m_view->setPage(new WebPage(profile, m_view)); in WebPopupWindow()
74 m_view->setFocus(); in WebPopupWindow()
79 connect(m_view, &WebView::titleChanged, this, &QWidget::setWindowTitle); in WebPopupWindow()
80 connect(m_view, &WebView::urlChanged, [this](const QUrl &url) { in WebPopupWindow()
83 connect(m_view, &WebView::favIconChanged, m_favAction, &QAction::setIcon); in WebPopupWindow()
84 …connect(m_view->page(), &WebPage::geometryChangeRequested, this, &WebPopupWindow::handleGeometryCh… in WebPopupWindow()
85 connect(m_view->page(), &WebPage::windowCloseRequested, this, &QWidget::close); in WebPopupWindow()
90 return m_view; in view()
[all …]
H A Dwebpopupwindow.h78 WebView *m_view; variable
/OK3568_Linux_fs/app/forlinx/flapp/src/plugins/imxwayland/simplebrowser/
H A Dwebpopupwindow.cpp62 , m_view(new WebView(this)) in WebPopupWindow()
71 layout->addWidget(m_view); in WebPopupWindow()
73 m_view->setPage(new WebPage(profile, m_view)); in WebPopupWindow()
74 m_view->setFocus(); in WebPopupWindow()
79 connect(m_view, &WebView::titleChanged, this, &QWidget::setWindowTitle); in WebPopupWindow()
80 connect(m_view, &WebView::urlChanged, [this](const QUrl &url) { in WebPopupWindow()
83 connect(m_view, &WebView::favIconChanged, m_favAction, &QAction::setIcon); in WebPopupWindow()
84 …connect(m_view->page(), &WebPage::geometryChangeRequested, this, &WebPopupWindow::handleGeometryCh… in WebPopupWindow()
85 connect(m_view->page(), &WebPage::windowCloseRequested, this, &QWidget::close); in WebPopupWindow()
90 return m_view; in view()
[all …]
H A Dwebpopupwindow.h78 WebView *m_view; variable
/OK3568_Linux_fs/app/forlinx/forlinx_up4_qt/simplebrowser/
H A Dwebpopupwindow.cpp63 , m_view(new WebView(this)) in WebPopupWindow()
72 layout->addWidget(m_view); in WebPopupWindow()
74 m_view->setPage(new WebPage(profile, m_view)); in WebPopupWindow()
75 m_view->setFocus(); in WebPopupWindow()
80 connect(m_view, &WebView::titleChanged, this, &QWidget::setWindowTitle); in WebPopupWindow()
81 connect(m_view, &WebView::urlChanged, [this](const QUrl &url) { in WebPopupWindow()
84 connect(m_view, &WebView::favIconChanged, m_favAction, &QAction::setIcon); in WebPopupWindow()
85 …connect(m_view->page(), &WebPage::geometryChangeRequested, this, &WebPopupWindow::handleGeometryCh… in WebPopupWindow()
86 connect(m_view->page(), &WebPage::windowCloseRequested, this, &QWidget::close); in WebPopupWindow()
91 return m_view; in view()
[all …]
H A Dwebpopupwindow.h78 WebView *m_view; variable
/OK3568_Linux_fs/app/forlinx/forlinx_qt/simplebrowser/
H A Dwebpopupwindow.cpp63 , m_view(new WebView(this)) in WebPopupWindow()
72 layout->addWidget(m_view); in WebPopupWindow()
74 m_view->setPage(new WebPage(profile, m_view)); in WebPopupWindow()
75 m_view->setFocus(); in WebPopupWindow()
80 connect(m_view, &WebView::titleChanged, this, &QWidget::setWindowTitle); in WebPopupWindow()
81 connect(m_view, &WebView::urlChanged, [this](const QUrl &url) { in WebPopupWindow()
84 connect(m_view, &WebView::favIconChanged, m_favAction, &QAction::setIcon); in WebPopupWindow()
85 …connect(m_view->page(), &WebPage::geometryChangeRequested, this, &WebPopupWindow::handleGeometryCh… in WebPopupWindow()
86 connect(m_view->page(), &WebPage::windowCloseRequested, this, &QWidget::close); in WebPopupWindow()
91 return m_view; in view()
[all …]
H A Dwebpopupwindow.h78 WebView *m_view; variable
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/declarativemaps/
H A Dqdeclarativegeomapitemtransitionmanager.cpp55 if (m_view && m_view->m_enter) in transitionEnter()
56 transition(enterActions, m_view->m_enter, m_mapItem); in transitionEnter()
66 if (m_view && m_view->m_exit) in transitionExit()
67 transition(exitActions, m_view->m_exit, m_mapItem); in transitionExit()
H A Dqdeclarativegeomapitemview.cpp430 group->m_transitionManager->m_view = this; in transitionItemOut()
443 item->m_transitionManager->m_view = this; in transitionItemOut()
496 item->m_transitionManager->m_view = this; in addItemToMap()
524 item->m_transitionManager->m_view = this; in addItemViewToMap()
544 item->m_transitionManager->m_view = this; in addItemGroupToMap()
H A Dqdeclarativegeomapitemtransitionmanager_p.h112 QDeclarativeGeoMapItemView *m_view = nullptr; variable
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/maps/
H A Dqgeoprojection.cpp622 m_view = m_eye - m_center; in setupCamera()
623 QDoubleVector3D side = QDoubleVector3D::normal(m_view, QDoubleVector3D(0.0, 1.0, 0.0)); in setupCamera()
624 m_up = QDoubleVector3D::normal(side, m_view); in setupCamera()
633 mBearing.rotate(m_cameraData.bearing(), m_view); in setupCamera()
642 m_side = QDoubleVector3D::normal(m_up, m_view); in setupCamera()
648 m_eye = mTilt * m_view + m_center; in setupCamera()
649 eye0 = mTilt * m_view; in setupCamera()
658m_view = m_eye - m_center; // ToDo: this should be inverted (center - eye), and the rest should fo… in setupCamera()
659 m_viewNormalized = m_view.normalized(); in setupCamera()
660 m_up = QDoubleVector3D::normal(m_view, m_side); in setupCamera()
H A Dqgeoprojection_p.h243 QDoubleVector3D m_view; variable