aboutsummaryrefslogtreecommitdiffstats
path: root/examples/declarative/text/fonts/banner/main.cpp
blob: 06e26b55bff7484e193f65faaa5e9184cc047002 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <QtGui/QApplication>
#include "qmlapplicationviewer.h"

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);

    QmlApplicationViewer viewer;
    viewer.setOrientation(QmlApplicationViewer::ScreenOrientationLockLandscape);
    viewer.setMainQmlFile(QLatin1String("qml/qml/banner.qml"));
    viewer.showExpanded();

    return app.exec();
}