本文整理汇总了C++中QWebEngineView::move方法的典型用法代码示例。如果您正苦于以下问题:C++ QWebEngineView::move方法的具体用法?C++ QWebEngineView::move怎么用?C++ QWebEngineView::move使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类QWebEngineView
的用法示例。
在下文中一共展示了QWebEngineView::move方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: main
int main(int argc, char *argv[]) {
// инициализация окна
QApplication a(argc, argv);
QWebEngineView *view = new QWebEngineView();
// размеры окна
int WIDTH = 1024;
int HEIGHT = 520;
// размеры Desktop
int screenWidth;
int screenHeight;
// centered
int x, y;
// расчет значений Desktop
QDesktopWidget *desktop = QApplication::desktop();
screenWidth = desktop->width();
screenHeight = desktop->height();
// новые значения
x = (screenWidth - WIDTH) / 2;
y = (screenHeight - HEIGHT) / 2;
// центрируем window
view->resize(WIDTH, HEIGHT);
view->move(x, y);
// title window
view->setWindowTitle("Игра жизнь");
// отключаем ненужные Qt события
view->setContextMenuPolicy(Qt::CustomContextMenu);
// подгружаем визуализацию
view->load(QUrl("qrc:live.html"));
view->show();
return a.exec();
}
示例2: openPDFWindow
void MainWindow::openPDFWindow(QString url){
QWebEngineView * pdfView;
if(!pdfViewList.contains(url)){
pdfView = new QWebEngineView(0);
QUrl theurl = QUrl(url);
pdfView->setSizePolicy(QSizePolicy::Maximum, QSizePolicy::Maximum);
pdfView->load( theurl );
pdfView->show();
pdfViewList.insert(url, pdfView);
pdfView->setAttribute(Qt::WA_DeleteOnClose);
pdfView->showNormal();
int frameHeight = pdfView->frameGeometry().height()-pdfView->geometry().height();
pdfView->move( (screenRect.width() - 640)/2, screenRect.y() );
pdfView->resize( 640, screenRect.height()-frameHeight );
connect(pdfView, SIGNAL(destroyed(QObject*)), this, SLOT(onPDFViewClose(QObject*)) );
//pdfView->settings()->enablePersistentStorage(QDir::tempPath());
QWebSettings::globalSettings()->setAttribute(QWebSettings::DeveloperExtrasEnabled, true);
}else{