diff options
author | Qt Continuous Integration System <qt-info@nokia.com> | 2011-04-07 13:54:48 (GMT) |
---|---|---|
committer | Qt Continuous Integration System <qt-info@nokia.com> | 2011-04-07 13:54:48 (GMT) |
commit | 46082389f2a700a1f98826e0c575ab4e31059761 (patch) | |
tree | aa19249a7fb469176fb22adfa9a1b702ae3be6c0 /demos/embedded/lightmaps/main.cpp | |
parent | 8031eada2f81963865390b4d899631b09d4ca6f3 (diff) | |
parent | 7c8980ee041e874a6c430f01b2daff4955517b03 (diff) | |
download | Qt-46082389f2a700a1f98826e0c575ab4e31059761.zip Qt-46082389f2a700a1f98826e0c575ab4e31059761.tar.gz Qt-46082389f2a700a1f98826e0c575ab4e31059761.tar.bz2 |
Merge branch 'qt-master-from-4.7' of scm.dev.nokia.troll.no:qt/qt-integration into master-integration
* 'qt-master-from-4.7' of scm.dev.nokia.troll.no:qt/qt-integration: (94 commits)
Not possible to enter negative values to widgets with numeric fields
QmlViewer: Enable remote qml debugging
QDeclarativeDebug: Warn user for Qt configured with -no-declarative-debug
Improve Flickable dynamics and allow platform specific tweaking.
Fixed the declarative headers and includes within qdoc.
Removed invalid public slots section.
Minor feature fix led to refactoring for i18n's sake.
Fixed string-int concatenation issue.
Fixed license headers for examples in 4.7
qdoc: Allowed multiple values for certain metadata tags.
Removing extra comma in `enum' declaration.
Take phonon backend back in qt.iby
Mac: p2 combobox regression fix
win32-g++: Correct the order of linked Windows libraries
Remove SIGBUS emission from QNetworkSession destruction.
Remove obsolete files from qt.iby
Fix QGradient stop with NaN position on Symbian.
win32-g++: Correct the order of linked Windows libraries
Fixing a traling space on if statement that fails in Solaris.
Do not add project path to SYMBIAN_MATCHED_TRANSLATIONS if not needed
...
Diffstat (limited to 'demos/embedded/lightmaps/main.cpp')
-rw-r--r-- | demos/embedded/lightmaps/main.cpp | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/demos/embedded/lightmaps/main.cpp b/demos/embedded/lightmaps/main.cpp new file mode 100644 index 0000000..34d8d3d --- /dev/null +++ b/demos/embedded/lightmaps/main.cpp @@ -0,0 +1,63 @@ +/**************************************************************************** +** +** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** This file is part of the demonstration applications of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** No Commercial Usage +** This file contains pre-release code and may not be distributed. +** You may use this file in accordance with the terms and conditions +** contained in the Technology Preview License Agreement accompanying +** this package. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Nokia gives you certain additional +** rights. These rights are described in the Nokia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +#include <QApplication> +#include "mapzoom.h" + +int main(int argc, char **argv) +{ +#if defined(Q_WS_X11) + QApplication::setGraphicsSystem("raster"); +#endif + + QApplication app(argc, argv); + app.setApplicationName("LightMaps"); + + MapZoom w; +#if defined(Q_OS_SYMBIAN) || defined(Q_OS_WINCE_WM) + w.showMaximized(); +#else + w.resize(600, 450); + w.show(); +#endif + + return app.exec(); +} |