From ca01d5f9f5e960337a044be6e00de58fd4fbdb05 Mon Sep 17 00:00:00 2001 From: Topi Reinio Date: Fri, 24 Jan 2014 13:22:02 +0100 Subject: Make basicsuite demos run stand-alone This change will make the demos run standalone when built in Qt Creator. - Rename example directories to lowercase/non-whitespace to avoid build & deployment problems - Add title.txt files so titles remain displayed correctly in the launcher - Add a common shared source files used for the standalone apps, and .pro-files for each example - Remove .qmlproject files (not needed) - Adjust documentation to match the new directory structure Change-Id: Ib24e461952da3b2c88aab0363249115ea44ee0f2 Reviewed-by: Eirik Aavitsland --- basicsuite/qt5-cinematicdemo/main.cpp | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 basicsuite/qt5-cinematicdemo/main.cpp (limited to 'basicsuite/qt5-cinematicdemo/main.cpp') diff --git a/basicsuite/qt5-cinematicdemo/main.cpp b/basicsuite/qt5-cinematicdemo/main.cpp new file mode 100644 index 0000000..81c1c85 --- /dev/null +++ b/basicsuite/qt5-cinematicdemo/main.cpp @@ -0,0 +1,18 @@ +#include +#include + +int main(int argc, char* argv[]) +{ + QGuiApplication app(argc,argv); + QQuickView view; + view.setResizeMode(QQuickView::SizeRootObjectToView); + view.setSource(QUrl::fromLocalFile(QCoreApplication::applicationDirPath() + QLatin1String("/Qt5_CinematicExperience.qml"))); + + const QString lowerArgument = QString::fromLatin1(argv[1]).toLower(); + if (lowerArgument == QLatin1String("--fullscreen")) { + view.showFullScreen(); + } else { + view.show(); + } + return app.exec(); +} -- cgit v1.2.3