本文整理汇总了C++中QmlApplicationViewer::setWindowTitle方法的典型用法代码示例。如果您正苦于以下问题:C++ QmlApplicationViewer::setWindowTitle方法的具体用法?C++ QmlApplicationViewer::setWindowTitle怎么用?C++ QmlApplicationViewer::setWindowTitle使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类QmlApplicationViewer
的用法示例。
在下文中一共展示了QmlApplicationViewer::setWindowTitle方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: main
Q_DECL_EXPORT int main(int argc, char *argv[])
{
QScopedPointer<QApplication> app(createApplication(argc, argv));
// Expose CppTimerInterval type to QML
qmlRegisterType<CppTimerInterval>("TimerInterval", 1,0, "TimerInterval");
QmlApplicationViewer viewer;
viewer.setMainQmlFile(QLatin1String("qml/IntervalTimer/main.qml"));
viewer.setOrientation(QmlApplicationViewer::ScreenOrientationAuto);
// Lock in portrait for now, will fix later!
viewer.setWindowTitle("Interval Timer QML");
//viewer.setOrientation(QmlApplicationViewer::ScreenOrientationLockPortrait);
viewer.showExpanded();
return app->exec();
}
示例2: main
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
bool use_qml;
#ifdef USE_QML
use_qml = true;
#else
use_qml = false;
#endif
QStringList options = app.arguments();
if (options.contains("--use-qml"))
use_qml = true;
if (options.contains("--dont-use-qml"))
use_qml = false;
if (use_qml) {
qRegisterMetaType<DNSSECTest>("DNSSECTest");
qmlRegisterType<DNSSECTest, 1>("DNSSECTools", 1, 0, "DNSSECTest");
qmlRegisterType<TestManager, 1>("DNSSECTools", 1, 0, "TestManager");
QmlApplicationViewer viewer;
QDeclarativeContext *context;
viewer.addImportPath(":/qml");
viewer.setWindowIcon(QIcon(":/images/dnssec-check-64x64.png"));
viewer.setWindowTitle("DNSSEC-Check");
TestManager manager;
context = viewer.rootContext();
context->setContextProperty("testManager", &manager);
#ifdef IS_MEEGO
viewer.setSource(QUrl("qrc:/qml/MeegoDnssecCheck.qml"));
#else
viewer.setSource(QUrl("qrc:/qml/DnssecCheck.qml"));
#endif
viewer.setOrientation(QmlApplicationViewer::ScreenOrientationLockLandscape);
#ifdef IS_MEEGO
viewer.showFullScreen();
#else
viewer.show();
#endif
return app.exec();
} else { // don't use QML
MainWindow mainWindow;
mainWindow.setOrientation(MainWindow::Auto);
#ifdef Q_OS_SYMBIAN
mainWindow.showFullScreen();
#elif defined(Q_WS_MAEMO_5)
mainWindow.showMaximized();
#else
mainWindow.show();
#endif
return app.exec();
}
}