本文整理汇总了C++中QmlApplicationViewer::setWindowIcon方法的典型用法代码示例。如果您正苦于以下问题:C++ QmlApplicationViewer::setWindowIcon方法的具体用法?C++ QmlApplicationViewer::setWindowIcon怎么用?C++ QmlApplicationViewer::setWindowIcon使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类QmlApplicationViewer
的用法示例。
在下文中一共展示了QmlApplicationViewer::setWindowIcon方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: main
Q_DECL_EXPORT int main(int argc, char *argv[])
{
QScopedPointer<QApplication> app(createApplication(argc, argv));
QDir::setCurrent(QCoreApplication::applicationDirPath());
App application;
qmlRegisterType<App>("App", 1, 0, "App");
qmlRegisterType<CollectionModel>("CollectionModel", 1, 0, "CollectionModel");
qmlRegisterType<QStringListModel>("QStringListModel", 1, 0, "QStringListModel");
QmlApplicationViewer viewer;
viewer.setWindowIcon(QIcon(":/new/g/dictionary-icon.png"));
viewer.setOrientation(QmlApplicationViewer::ScreenOrientationAuto);
viewer.rootContext()->setContextProperty("app", &application);
viewer.rootContext()->setContextProperty("checkModeCpp", &application.getCheckMode());
viewer.rootContext()->setContextProperty("dictionaryModeCpp", &application.getDictionaryMode());
viewer.rootContext()->setContextProperty("rememberModeCpp", &application.getRememberMode());
viewer.setMainQmlFile(QLatin1String("qml/main.qml"));
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();
}
}