2011-04-13 08:42:33 +02:00
|
|
|
/**************************************************************************
|
2010-07-08 14:00:33 +02:00
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** This file is part of Qt Creator
|
2010-07-08 14:00:33 +02:00
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
|
2010-07-08 14:00:33 +02:00
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** Contact: Nokia Corporation (info@qt.nokia.com)
|
2010-07-08 14:00:33 +02:00
|
|
|
**
|
|
|
|
** GNU Lesser General Public License Usage
|
2011-04-13 08:42:33 +02:00
|
|
|
**
|
|
|
|
** 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.
|
2010-07-08 14:00:33 +02:00
|
|
|
**
|
|
|
|
** In addition, as a special exception, Nokia gives you certain additional
|
2011-04-13 08:42:33 +02:00
|
|
|
** rights. These rights are described in the Nokia Qt LGPL Exception
|
2010-07-08 14:00:33 +02:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** Other Usage
|
2010-07-08 14:00:33 +02:00
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** Alternatively, this file may be used in accordance with the terms and
|
|
|
|
** conditions contained in a signed written agreement between you and Nokia.
|
2010-07-08 14:00:33 +02:00
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** If you have questions regarding the use of this file, please contact
|
2011-07-05 18:26:01 +02:00
|
|
|
** Nokia at info@qt.nokia.com.
|
2010-07-08 14:00:33 +02:00
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
**************************************************************************/
|
2010-07-08 14:00:33 +02:00
|
|
|
|
|
|
|
#include "qdeclarative.h"
|
|
|
|
#include "qmlruntime.h"
|
|
|
|
#include "qdeclarativeengine.h"
|
|
|
|
#include "loggerwidget.h"
|
|
|
|
#include <QWidget>
|
|
|
|
#include <QDir>
|
|
|
|
#include <QApplication>
|
|
|
|
#include <QTranslator>
|
|
|
|
#include <QDebug>
|
|
|
|
#include <QMessageBox>
|
2010-12-10 12:27:33 +01:00
|
|
|
#include <QAtomicInt>
|
2010-07-08 14:00:33 +02:00
|
|
|
#include "qdeclarativetester.h"
|
2010-11-09 12:32:33 +01:00
|
|
|
#include "qt_private/qdeclarativedebughelper_p.h"
|
2010-07-08 14:00:33 +02:00
|
|
|
|
|
|
|
QT_USE_NAMESPACE
|
|
|
|
|
|
|
|
QtMsgHandler systemMsgOutput = 0;
|
|
|
|
|
2010-12-10 12:27:33 +01:00
|
|
|
static QDeclarativeViewer *openFile(const QString &fileName);
|
|
|
|
static void showViewer(QDeclarativeViewer *viewer);
|
|
|
|
|
2010-07-08 14:00:33 +02:00
|
|
|
#if defined (Q_OS_SYMBIAN)
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
|
|
|
void myMessageOutput(QtMsgType type, const char *msg)
|
|
|
|
{
|
|
|
|
static int fd = -1;
|
|
|
|
if (fd == -1)
|
|
|
|
fd = ::open("E:\\qml.log", O_WRONLY | O_CREAT);
|
|
|
|
|
|
|
|
::write(fd, msg, strlen(msg));
|
|
|
|
::write(fd, "\n", 1);
|
|
|
|
::fsync(fd);
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case QtFatalMsg:
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#else // !defined (Q_OS_SYMBIAN)
|
|
|
|
|
|
|
|
QWeakPointer<LoggerWidget> logger;
|
|
|
|
|
|
|
|
QString warnings;
|
2010-12-10 12:27:33 +01:00
|
|
|
void exitApp(int i)
|
2010-07-08 14:00:33 +02:00
|
|
|
{
|
2010-12-10 12:27:33 +01:00
|
|
|
#ifdef Q_OS_WIN
|
|
|
|
// Debugging output is not visible by default on Windows -
|
|
|
|
// therefore show modal dialog with errors instead.
|
2010-07-08 14:00:33 +02:00
|
|
|
if (!warnings.isEmpty()) {
|
|
|
|
QMessageBox::warning(0, QApplication::tr("Qt QML Viewer"), warnings);
|
|
|
|
}
|
2010-12-10 12:27:33 +01:00
|
|
|
#endif
|
|
|
|
exit(i);
|
2010-07-08 14:00:33 +02:00
|
|
|
}
|
|
|
|
|
2010-12-10 12:27:33 +01:00
|
|
|
static QAtomicInt recursiveLock(0);
|
|
|
|
|
2010-07-08 14:00:33 +02:00
|
|
|
void myMessageOutput(QtMsgType type, const char *msg)
|
|
|
|
{
|
2010-12-10 12:27:33 +01:00
|
|
|
QString strMsg = QString::fromLatin1(msg);
|
|
|
|
|
|
|
|
if (!QCoreApplication::closingDown()) {
|
|
|
|
if (!logger.isNull()) {
|
|
|
|
if (recursiveLock.testAndSetOrdered(0, 1)) {
|
|
|
|
QMetaObject::invokeMethod(logger.data(), "append", Q_ARG(QString, strMsg));
|
|
|
|
recursiveLock = 0;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
warnings += strMsg;
|
|
|
|
warnings += QLatin1Char('\n');
|
|
|
|
}
|
2010-07-08 14:00:33 +02:00
|
|
|
}
|
|
|
|
if (systemMsgOutput) { // Windows
|
|
|
|
systemMsgOutput(type, msg);
|
|
|
|
} else { // Unix
|
2010-12-10 12:27:33 +01:00
|
|
|
fprintf(stderr, "%s\n", msg);
|
2010-07-08 14:00:33 +02:00
|
|
|
fflush(stderr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2010-12-10 12:27:33 +01:00
|
|
|
static QDeclarativeViewer* globalViewer = 0;
|
|
|
|
|
|
|
|
// The qml file that is shown if the user didn't specify a QML file
|
|
|
|
QString initialFile = "qrc:/startup/startup.qml";
|
|
|
|
|
2010-07-08 14:00:33 +02:00
|
|
|
void usage()
|
|
|
|
{
|
2010-10-06 14:09:07 +02:00
|
|
|
qWarning("Usage: qmlobserver [options] <filename>");
|
2010-07-08 14:00:33 +02:00
|
|
|
qWarning(" ");
|
|
|
|
qWarning(" options:");
|
|
|
|
qWarning(" -v, -version ............................. display version");
|
|
|
|
qWarning(" -frameless ............................... run with no window frame");
|
|
|
|
qWarning(" -maximized................................ run maximized");
|
|
|
|
qWarning(" -fullscreen............................... run fullscreen");
|
|
|
|
qWarning(" -stayontop................................ keep viewer window on top");
|
|
|
|
qWarning(" -sizeviewtorootobject .................... the view resizes to the changes in the content");
|
|
|
|
qWarning(" -sizerootobjecttoview .................... the content resizes to the changes in the view (default)");
|
|
|
|
qWarning(" -qmlbrowser .............................. use a QML-based file browser");
|
|
|
|
qWarning(" -warnings [show|hide]..................... show warnings in a separate log window");
|
2010-10-06 14:09:07 +02:00
|
|
|
#ifndef NO_PRIVATE_HEADERS
|
2010-07-08 14:00:33 +02:00
|
|
|
qWarning(" -recordfile <output> ..................... set video recording file");
|
|
|
|
qWarning(" - ImageMagick 'convert' for GIF)");
|
|
|
|
qWarning(" - png file for raw frames");
|
|
|
|
qWarning(" - 'ffmpeg' for other formats");
|
|
|
|
qWarning(" -recorddither ordered|threshold|floyd .... set GIF dither recording mode");
|
|
|
|
qWarning(" -recordrate <fps> ........................ set recording frame rate");
|
|
|
|
qWarning(" -record arg .............................. add a recording process argument");
|
|
|
|
qWarning(" -autorecord [from-]<tomilliseconds> ...... set recording to start and stop");
|
2010-10-06 14:09:07 +02:00
|
|
|
#endif
|
2010-07-08 14:00:33 +02:00
|
|
|
qWarning(" -devicekeys .............................. use numeric keys (see F1)");
|
|
|
|
qWarning(" -dragthreshold <size> .................... set mouse drag threshold size");
|
|
|
|
qWarning(" -netcache <size> ......................... set disk cache to size bytes");
|
|
|
|
qWarning(" -translation <translationfile> ........... set the language to run in");
|
|
|
|
qWarning(" -I <directory> ........................... prepend to the module import search path,");
|
|
|
|
qWarning(" display path if <directory> is empty");
|
|
|
|
qWarning(" -P <directory> ........................... prepend to the plugin search path");
|
2010-12-10 12:27:33 +01:00
|
|
|
#if defined(Q_WS_MAC)
|
|
|
|
qWarning(" -no-opengl ............................... don't use a QGLWidget for the viewport");
|
|
|
|
#else
|
2010-07-08 14:00:33 +02:00
|
|
|
qWarning(" -opengl .................................. use a QGLWidget for the viewport");
|
2010-12-10 12:27:33 +01:00
|
|
|
#endif
|
2010-10-06 14:09:07 +02:00
|
|
|
#ifndef NO_PRIVATE_HEADERS
|
2010-07-08 14:00:33 +02:00
|
|
|
qWarning(" -script <path> ........................... set the script to use");
|
|
|
|
qWarning(" -scriptopts <options>|help ............... set the script options to use");
|
2010-10-06 14:09:07 +02:00
|
|
|
#endif
|
2010-07-08 14:00:33 +02:00
|
|
|
|
|
|
|
qWarning(" ");
|
|
|
|
qWarning(" Press F1 for interactive help");
|
2010-12-10 12:27:33 +01:00
|
|
|
|
|
|
|
exitApp(1);
|
2010-07-08 14:00:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void scriptOptsUsage()
|
|
|
|
{
|
2010-10-06 14:09:07 +02:00
|
|
|
qWarning("Usage: qmlobserver -scriptopts <option>[,<option>...] ...");
|
2010-07-08 14:00:33 +02:00
|
|
|
qWarning(" options:");
|
|
|
|
qWarning(" record ................................... record a new script");
|
|
|
|
qWarning(" play ..................................... playback an existing script");
|
|
|
|
qWarning(" testimages ............................... record images or compare images on playback");
|
|
|
|
qWarning(" testerror ................................ test 'error' property of root item on playback");
|
2010-12-10 12:27:33 +01:00
|
|
|
qWarning(" testskip ................................ test 'skip' property of root item on playback");
|
2010-07-08 14:00:33 +02:00
|
|
|
qWarning(" snapshot ................................. file being recorded is static,");
|
|
|
|
qWarning(" only one frame will be recorded or tested");
|
|
|
|
qWarning(" exitoncomplete ........................... cleanly exit the viewer on script completion");
|
|
|
|
qWarning(" exitonfailure ............................ immediately exit the viewer on script failure");
|
|
|
|
qWarning(" saveonexit ............................... save recording on viewer exit");
|
|
|
|
qWarning(" ");
|
|
|
|
qWarning(" One of record, play or both must be specified.");
|
2010-12-10 12:27:33 +01:00
|
|
|
|
|
|
|
exitApp(1);
|
2010-07-08 14:00:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
enum WarningsConfig { ShowWarnings, HideWarnings, DefaultWarnings };
|
|
|
|
|
2010-12-10 12:27:33 +01:00
|
|
|
struct ViewerOptions
|
2010-07-08 14:00:33 +02:00
|
|
|
{
|
2010-12-10 12:27:33 +01:00
|
|
|
ViewerOptions()
|
|
|
|
: frameless(false),
|
|
|
|
fps(0.0),
|
|
|
|
autorecord_from(0),
|
|
|
|
autorecord_to(0),
|
|
|
|
dither("none"),
|
|
|
|
runScript(false),
|
|
|
|
devkeys(false),
|
|
|
|
cache(0),
|
|
|
|
useGL(false),
|
|
|
|
fullScreen(false),
|
|
|
|
stayOnTop(false),
|
|
|
|
maximized(false),
|
|
|
|
useNativeFileBrowser(true),
|
|
|
|
experimentalGestures(false),
|
|
|
|
warningsConfig(DefaultWarnings),
|
|
|
|
sizeToView(true)
|
|
|
|
{
|
|
|
|
#if defined(Q_OS_SYMBIAN)
|
|
|
|
maximized = true;
|
|
|
|
useNativeFileBrowser = false;
|
2010-07-08 14:00:33 +02:00
|
|
|
#endif
|
|
|
|
|
2010-12-10 12:27:33 +01:00
|
|
|
#if defined(Q_WS_MAC)
|
|
|
|
useGL = true;
|
2010-07-08 14:00:33 +02:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2010-12-10 12:27:33 +01:00
|
|
|
bool frameless;
|
|
|
|
double fps;
|
|
|
|
int autorecord_from;
|
|
|
|
int autorecord_to;
|
|
|
|
QString dither;
|
2010-07-08 14:00:33 +02:00
|
|
|
QString recordfile;
|
|
|
|
QStringList recordargs;
|
|
|
|
QStringList imports;
|
|
|
|
QStringList plugins;
|
|
|
|
QString script;
|
|
|
|
QString scriptopts;
|
2010-12-10 12:27:33 +01:00
|
|
|
bool runScript;
|
|
|
|
bool devkeys;
|
|
|
|
int cache;
|
2010-07-08 14:00:33 +02:00
|
|
|
QString translationFile;
|
2010-12-10 12:27:33 +01:00
|
|
|
bool useGL;
|
|
|
|
bool fullScreen;
|
|
|
|
bool stayOnTop;
|
|
|
|
bool maximized;
|
|
|
|
bool useNativeFileBrowser;
|
|
|
|
bool experimentalGestures;
|
2010-07-08 14:00:33 +02:00
|
|
|
|
2010-12-10 12:27:33 +01:00
|
|
|
WarningsConfig warningsConfig;
|
|
|
|
bool sizeToView;
|
2010-07-08 14:00:33 +02:00
|
|
|
|
2010-12-10 12:27:33 +01:00
|
|
|
QDeclarativeViewer::ScriptOptions scriptOptions;
|
|
|
|
};
|
2010-07-08 14:00:33 +02:00
|
|
|
|
2010-12-10 12:27:33 +01:00
|
|
|
static ViewerOptions opts;
|
|
|
|
static QStringList fileNames;
|
|
|
|
|
|
|
|
class Application : public QApplication
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
Application(int &argc, char **&argv)
|
|
|
|
: QApplication(argc, argv)
|
|
|
|
{}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
bool event(QEvent *ev)
|
|
|
|
{
|
|
|
|
if (ev->type() != QEvent::FileOpen)
|
|
|
|
return QApplication::event(ev);
|
|
|
|
|
|
|
|
QFileOpenEvent *fev = static_cast<QFileOpenEvent *>(ev);
|
|
|
|
|
|
|
|
globalViewer->open(fev->file());
|
|
|
|
if (!globalViewer->isVisible())
|
|
|
|
showViewer(globalViewer);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
private Q_SLOTS:
|
|
|
|
void showInitialViewer()
|
|
|
|
{
|
|
|
|
QApplication::processEvents();
|
|
|
|
|
|
|
|
QDeclarativeViewer *viewer = globalViewer;
|
|
|
|
if (!viewer)
|
|
|
|
return;
|
|
|
|
if (viewer->currentFile().isEmpty()) {
|
|
|
|
if(opts.useNativeFileBrowser)
|
|
|
|
viewer->open(initialFile);
|
|
|
|
else
|
|
|
|
viewer->openFile();
|
|
|
|
}
|
|
|
|
if (!viewer->isVisible())
|
|
|
|
showViewer(viewer);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
static void parseScriptOptions()
|
|
|
|
{
|
|
|
|
QStringList options =
|
|
|
|
opts.scriptopts.split(QLatin1Char(','), QString::SkipEmptyParts);
|
|
|
|
|
|
|
|
QDeclarativeViewer::ScriptOptions scriptOptions = 0;
|
|
|
|
for (int i = 0; i < options.count(); ++i) {
|
|
|
|
const QString &option = options.at(i);
|
|
|
|
if (option == QLatin1String("help")) {
|
|
|
|
scriptOptsUsage();
|
|
|
|
} else if (option == QLatin1String("play")) {
|
|
|
|
scriptOptions |= QDeclarativeViewer::Play;
|
|
|
|
} else if (option == QLatin1String("record")) {
|
|
|
|
scriptOptions |= QDeclarativeViewer::Record;
|
|
|
|
} else if (option == QLatin1String("testimages")) {
|
|
|
|
scriptOptions |= QDeclarativeViewer::TestImages;
|
|
|
|
} else if (option == QLatin1String("testerror")) {
|
|
|
|
scriptOptions |= QDeclarativeViewer::TestErrorProperty;
|
|
|
|
} else if (option == QLatin1String("testskip")) {
|
|
|
|
scriptOptions |= QDeclarativeViewer::TestSkipProperty;
|
|
|
|
} else if (option == QLatin1String("exitoncomplete")) {
|
|
|
|
scriptOptions |= QDeclarativeViewer::ExitOnComplete;
|
|
|
|
} else if (option == QLatin1String("exitonfailure")) {
|
|
|
|
scriptOptions |= QDeclarativeViewer::ExitOnFailure;
|
|
|
|
} else if (option == QLatin1String("saveonexit")) {
|
|
|
|
scriptOptions |= QDeclarativeViewer::SaveOnExit;
|
|
|
|
} else if (option == QLatin1String("snapshot")) {
|
|
|
|
scriptOptions |= QDeclarativeViewer::Snapshot;
|
|
|
|
} else {
|
|
|
|
scriptOptsUsage();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
opts.scriptOptions = scriptOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void parseCommandLineOptions(const QStringList &arguments)
|
|
|
|
{
|
|
|
|
for (int i = 1; i < arguments.count(); ++i) {
|
|
|
|
bool lastArg = (i == arguments.count() - 1);
|
|
|
|
QString arg = arguments.at(i);
|
2010-07-08 14:00:33 +02:00
|
|
|
if (arg == "-frameless") {
|
2010-12-10 12:27:33 +01:00
|
|
|
opts.frameless = true;
|
2010-07-08 14:00:33 +02:00
|
|
|
} else if (arg == "-maximized") {
|
2010-12-10 12:27:33 +01:00
|
|
|
opts.maximized = true;
|
2010-07-08 14:00:33 +02:00
|
|
|
} else if (arg == "-fullscreen") {
|
2010-12-10 12:27:33 +01:00
|
|
|
opts.fullScreen = true;
|
2010-07-08 14:00:33 +02:00
|
|
|
} else if (arg == "-stayontop") {
|
2010-12-10 12:27:33 +01:00
|
|
|
opts.stayOnTop = true;
|
2010-07-08 14:00:33 +02:00
|
|
|
} else if (arg == "-netcache") {
|
|
|
|
if (lastArg) usage();
|
2010-12-10 12:27:33 +01:00
|
|
|
opts.cache = arguments.at(++i).toInt();
|
2010-07-08 14:00:33 +02:00
|
|
|
} else if (arg == "-recordrate") {
|
|
|
|
if (lastArg) usage();
|
2010-12-10 12:27:33 +01:00
|
|
|
opts.fps = arguments.at(++i).toDouble();
|
2010-07-08 14:00:33 +02:00
|
|
|
} else if (arg == "-recordfile") {
|
|
|
|
if (lastArg) usage();
|
2010-12-10 12:27:33 +01:00
|
|
|
opts.recordfile = arguments.at(++i);
|
2010-07-08 14:00:33 +02:00
|
|
|
} else if (arg == "-record") {
|
|
|
|
if (lastArg) usage();
|
2010-12-10 12:27:33 +01:00
|
|
|
opts.recordargs << arguments.at(++i);
|
2010-07-08 14:00:33 +02:00
|
|
|
} else if (arg == "-recorddither") {
|
|
|
|
if (lastArg) usage();
|
2010-12-10 12:27:33 +01:00
|
|
|
opts.dither = arguments.at(++i);
|
2010-07-08 14:00:33 +02:00
|
|
|
} else if (arg == "-autorecord") {
|
|
|
|
if (lastArg) usage();
|
2010-12-10 12:27:33 +01:00
|
|
|
QString range = arguments.at(++i);
|
2010-07-08 14:00:33 +02:00
|
|
|
int dash = range.indexOf('-');
|
|
|
|
if (dash > 0)
|
2010-12-10 12:27:33 +01:00
|
|
|
opts.autorecord_from = range.left(dash).toInt();
|
|
|
|
opts.autorecord_to = range.mid(dash+1).toInt();
|
2010-07-08 14:00:33 +02:00
|
|
|
} else if (arg == "-devicekeys") {
|
2010-12-10 12:27:33 +01:00
|
|
|
opts.devkeys = true;
|
2010-07-08 14:00:33 +02:00
|
|
|
} else if (arg == "-dragthreshold") {
|
|
|
|
if (lastArg) usage();
|
2010-12-10 12:27:33 +01:00
|
|
|
qApp->setStartDragDistance(arguments.at(++i).toInt());
|
2010-07-08 14:00:33 +02:00
|
|
|
} else if (arg == QLatin1String("-v") || arg == QLatin1String("-version")) {
|
|
|
|
qWarning("Qt QML Viewer version %s", QT_VERSION_STR);
|
2010-12-10 12:27:33 +01:00
|
|
|
exitApp(0);
|
2010-07-08 14:00:33 +02:00
|
|
|
} else if (arg == "-translation") {
|
|
|
|
if (lastArg) usage();
|
2010-12-10 12:27:33 +01:00
|
|
|
opts.translationFile = arguments.at(++i);
|
|
|
|
#if defined(Q_WS_MAC)
|
|
|
|
} else if (arg == "-no-opengl") {
|
|
|
|
opts.useGL = false;
|
|
|
|
#else
|
2010-07-08 14:00:33 +02:00
|
|
|
} else if (arg == "-opengl") {
|
2010-12-10 12:27:33 +01:00
|
|
|
opts.useGL = true;
|
|
|
|
#endif
|
2010-07-08 14:00:33 +02:00
|
|
|
} else if (arg == "-qmlbrowser") {
|
2010-12-10 12:27:33 +01:00
|
|
|
opts.useNativeFileBrowser = false;
|
2010-07-08 14:00:33 +02:00
|
|
|
} else if (arg == "-warnings") {
|
|
|
|
if (lastArg) usage();
|
2010-12-10 12:27:33 +01:00
|
|
|
QString warningsStr = arguments.at(++i);
|
2010-07-08 14:00:33 +02:00
|
|
|
if (warningsStr == QLatin1String("show")) {
|
2010-12-10 12:27:33 +01:00
|
|
|
opts.warningsConfig = ShowWarnings;
|
2010-07-08 14:00:33 +02:00
|
|
|
} else if (warningsStr == QLatin1String("hide")) {
|
2010-12-10 12:27:33 +01:00
|
|
|
opts.warningsConfig = HideWarnings;
|
2010-07-08 14:00:33 +02:00
|
|
|
} else {
|
|
|
|
usage();
|
|
|
|
}
|
|
|
|
} else if (arg == "-I" || arg == "-L") {
|
|
|
|
if (arg == "-L")
|
|
|
|
qWarning("-L option provided for compatibility only, use -I instead");
|
|
|
|
if (lastArg) {
|
|
|
|
QDeclarativeEngine tmpEngine;
|
|
|
|
QString paths = tmpEngine.importPathList().join(QLatin1String(":"));
|
|
|
|
qWarning("Current search path: %s", paths.toLocal8Bit().constData());
|
2010-12-10 12:27:33 +01:00
|
|
|
exitApp(0);
|
2010-07-08 14:00:33 +02:00
|
|
|
}
|
2010-12-10 12:27:33 +01:00
|
|
|
opts.imports << arguments.at(++i);
|
2010-07-08 14:00:33 +02:00
|
|
|
} else if (arg == "-P") {
|
|
|
|
if (lastArg) usage();
|
2010-12-10 12:27:33 +01:00
|
|
|
opts.plugins << arguments.at(++i);
|
2010-07-08 14:00:33 +02:00
|
|
|
} else if (arg == "-script") {
|
|
|
|
if (lastArg) usage();
|
2010-12-10 12:27:33 +01:00
|
|
|
opts.script = arguments.at(++i);
|
2010-07-08 14:00:33 +02:00
|
|
|
} else if (arg == "-scriptopts") {
|
|
|
|
if (lastArg) usage();
|
2010-12-10 12:27:33 +01:00
|
|
|
opts.scriptopts = arguments.at(++i);
|
2010-07-08 14:00:33 +02:00
|
|
|
} else if (arg == "-savescript") {
|
|
|
|
if (lastArg) usage();
|
2010-12-10 12:27:33 +01:00
|
|
|
opts.script = arguments.at(++i);
|
|
|
|
opts.runScript = false;
|
2010-07-08 14:00:33 +02:00
|
|
|
} else if (arg == "-playscript") {
|
|
|
|
if (lastArg) usage();
|
2010-12-10 12:27:33 +01:00
|
|
|
opts.script = arguments.at(++i);
|
|
|
|
opts.runScript = true;
|
2010-07-08 14:00:33 +02:00
|
|
|
} else if (arg == "-sizeviewtorootobject") {
|
2010-12-10 12:27:33 +01:00
|
|
|
opts.sizeToView = false;
|
2010-07-08 14:00:33 +02:00
|
|
|
} else if (arg == "-sizerootobjecttoview") {
|
2010-12-10 12:27:33 +01:00
|
|
|
opts.sizeToView = true;
|
2010-07-08 14:00:33 +02:00
|
|
|
} else if (arg == "-experimentalgestures") {
|
2010-12-10 12:27:33 +01:00
|
|
|
opts.experimentalGestures = true;
|
|
|
|
} else if (!arg.startsWith('-')) {
|
|
|
|
fileNames.append(arg);
|
|
|
|
} else if (true || arg == "-help") {
|
2010-07-08 14:00:33 +02:00
|
|
|
usage();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-12-10 12:27:33 +01:00
|
|
|
if (!opts.scriptopts.isEmpty()) {
|
|
|
|
|
|
|
|
parseScriptOptions();
|
|
|
|
|
|
|
|
if (opts.script.isEmpty())
|
|
|
|
usage();
|
|
|
|
|
|
|
|
if (!(opts.scriptOptions & QDeclarativeViewer::Record) && !(opts.scriptOptions & QDeclarativeViewer::Play))
|
|
|
|
scriptOptsUsage();
|
|
|
|
} else if (!opts.script.isEmpty()) {
|
|
|
|
usage();
|
2010-07-08 14:00:33 +02:00
|
|
|
}
|
|
|
|
|
2010-12-10 12:27:33 +01:00
|
|
|
}
|
2010-07-08 14:00:33 +02:00
|
|
|
|
2010-12-10 12:27:33 +01:00
|
|
|
static QDeclarativeViewer *createViewer()
|
|
|
|
{
|
|
|
|
Qt::WFlags wflags = (opts.frameless ? Qt::FramelessWindowHint : Qt::Widget);
|
|
|
|
if (opts.stayOnTop)
|
|
|
|
wflags |= Qt::WindowStaysOnTopHint;
|
2010-11-03 11:46:56 +01:00
|
|
|
|
2010-07-08 14:00:33 +02:00
|
|
|
QDeclarativeViewer *viewer = new QDeclarativeViewer(0, wflags);
|
|
|
|
viewer->setAttribute(Qt::WA_DeleteOnClose, true);
|
2010-12-10 12:27:33 +01:00
|
|
|
viewer->setUseGL(opts.useGL);
|
2010-07-08 14:00:33 +02:00
|
|
|
|
2010-12-10 12:27:33 +01:00
|
|
|
if (!opts.scriptopts.isEmpty()) {
|
|
|
|
viewer->setScriptOptions(opts.scriptOptions);
|
|
|
|
viewer->setScript(opts.script);
|
2010-07-08 14:00:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#if !defined(Q_OS_SYMBIAN)
|
|
|
|
logger = viewer->warningsWidget();
|
2010-12-10 12:27:33 +01:00
|
|
|
if (opts.warningsConfig == ShowWarnings) {
|
2010-07-08 14:00:33 +02:00
|
|
|
logger.data()->setDefaultVisibility(LoggerWidget::ShowWarnings);
|
|
|
|
logger.data()->show();
|
2010-12-10 12:27:33 +01:00
|
|
|
} else if (opts.warningsConfig == HideWarnings){
|
2010-07-08 14:00:33 +02:00
|
|
|
logger.data()->setDefaultVisibility(LoggerWidget::HideWarnings);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-12-10 12:27:33 +01:00
|
|
|
if (opts.experimentalGestures)
|
2010-07-08 14:00:33 +02:00
|
|
|
viewer->enableExperimentalGestures();
|
|
|
|
|
2011-04-19 15:42:14 +02:00
|
|
|
foreach (const QString &lib, opts.imports)
|
2010-07-08 14:00:33 +02:00
|
|
|
viewer->addLibraryPath(lib);
|
|
|
|
|
2011-04-19 15:42:14 +02:00
|
|
|
foreach (const QString &plugin, opts.plugins)
|
2010-07-08 14:00:33 +02:00
|
|
|
viewer->addPluginPath(plugin);
|
|
|
|
|
2010-12-10 12:27:33 +01:00
|
|
|
viewer->setNetworkCacheSize(opts.cache);
|
|
|
|
viewer->setRecordFile(opts.recordfile);
|
|
|
|
viewer->setSizeToView(opts.sizeToView);
|
|
|
|
if (opts.fps > 0)
|
|
|
|
viewer->setRecordRate(opts.fps);
|
|
|
|
if (opts.autorecord_to)
|
|
|
|
viewer->setAutoRecord(opts.autorecord_from, opts.autorecord_to);
|
|
|
|
if (opts.devkeys)
|
2010-07-08 14:00:33 +02:00
|
|
|
viewer->setDeviceKeys(true);
|
2010-12-10 12:27:33 +01:00
|
|
|
viewer->setRecordDither(opts.dither);
|
|
|
|
if (opts.recordargs.count())
|
|
|
|
viewer->setRecordArgs(opts.recordargs);
|
|
|
|
|
|
|
|
viewer->setUseNativeFileBrowser(opts.useNativeFileBrowser);
|
|
|
|
|
|
|
|
return viewer;
|
|
|
|
}
|
|
|
|
|
|
|
|
void showViewer(QDeclarativeViewer *viewer)
|
|
|
|
{
|
|
|
|
if (opts.fullScreen)
|
|
|
|
viewer->showFullScreen();
|
|
|
|
else if (opts.maximized)
|
|
|
|
viewer->showMaximized();
|
|
|
|
else
|
|
|
|
viewer->show();
|
|
|
|
viewer->raise();
|
|
|
|
}
|
|
|
|
|
|
|
|
QDeclarativeViewer *openFile(const QString &fileName)
|
|
|
|
{
|
|
|
|
QDeclarativeViewer *viewer = globalViewer;
|
|
|
|
|
|
|
|
viewer->open(fileName);
|
|
|
|
showViewer(viewer);
|
|
|
|
|
|
|
|
return viewer;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char ** argv)
|
|
|
|
{
|
|
|
|
#if defined (Q_OS_SYMBIAN)
|
|
|
|
qInstallMsgHandler(myMessageOutput);
|
|
|
|
#else
|
|
|
|
systemMsgOutput = qInstallMsgHandler(myMessageOutput);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined (Q_WS_X11) || defined (Q_WS_MAC)
|
|
|
|
//### default to using raster graphics backend for now
|
|
|
|
bool gsSpecified = false;
|
|
|
|
for (int i = 0; i < argc; ++i) {
|
|
|
|
QString arg = argv[i];
|
|
|
|
if (arg == "-graphicssystem") {
|
|
|
|
gsSpecified = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!gsSpecified)
|
|
|
|
QApplication::setGraphicsSystem("raster");
|
|
|
|
#endif
|
|
|
|
|
|
|
|
Application app(argc, argv);
|
|
|
|
app.setApplicationName("QtQmlViewer");
|
|
|
|
app.setOrganizationName("Nokia");
|
|
|
|
app.setOrganizationDomain("nokia.com");
|
|
|
|
|
|
|
|
QDeclarativeViewer::registerTypes();
|
|
|
|
QDeclarativeTester::registerTypes();
|
|
|
|
|
|
|
|
parseCommandLineOptions(app.arguments());
|
2010-07-08 14:00:33 +02:00
|
|
|
|
2010-12-10 12:27:33 +01:00
|
|
|
QTranslator qmlTranslator;
|
|
|
|
if (!opts.translationFile.isEmpty()) {
|
|
|
|
qmlTranslator.load(opts.translationFile);
|
|
|
|
app.installTranslator(&qmlTranslator);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (opts.fullScreen && opts.maximized)
|
2010-07-08 14:00:33 +02:00
|
|
|
qWarning() << "Both -fullscreen and -maximized specified. Using -fullscreen.";
|
|
|
|
|
2010-12-10 12:27:33 +01:00
|
|
|
if (fileNames.isEmpty()) {
|
2010-07-08 14:00:33 +02:00
|
|
|
QFile qmlapp(QLatin1String("qmlapp"));
|
|
|
|
if (qmlapp.exists() && qmlapp.open(QFile::ReadOnly)) {
|
2010-12-10 12:27:33 +01:00
|
|
|
QString content = QString::fromUtf8(qmlapp.readAll());
|
|
|
|
qmlapp.close();
|
|
|
|
|
|
|
|
int newline = content.indexOf(QLatin1Char('\n'));
|
|
|
|
if (newline >= 0)
|
|
|
|
fileNames += content.left(newline);
|
|
|
|
else
|
|
|
|
fileNames += content;
|
|
|
|
}
|
2010-07-08 14:00:33 +02:00
|
|
|
}
|
|
|
|
|
2010-12-10 12:27:33 +01:00
|
|
|
//enable remote debugging
|
|
|
|
QDeclarativeDebugHelper::enableDebugging();
|
|
|
|
|
|
|
|
globalViewer = createViewer();
|
|
|
|
|
|
|
|
if (fileNames.isEmpty()) {
|
|
|
|
// show the initial viewer delayed.
|
|
|
|
// This prevents an initial viewer popping up while there
|
|
|
|
// are FileOpen events coming through the event queue
|
|
|
|
QTimer::singleShot(1, &app, SLOT(showInitialViewer()));
|
2010-07-08 14:00:33 +02:00
|
|
|
} else {
|
2010-12-10 12:27:33 +01:00
|
|
|
foreach (const QString &fileName, fileNames)
|
|
|
|
openFile(fileName);
|
2010-07-08 14:00:33 +02:00
|
|
|
}
|
2010-12-10 12:27:33 +01:00
|
|
|
|
|
|
|
QObject::connect(&app, SIGNAL(lastWindowClosed()), &app, SLOT(quit()));
|
2010-07-08 14:00:33 +02:00
|
|
|
|
|
|
|
return app.exec();
|
|
|
|
}
|
2010-12-10 12:27:33 +01:00
|
|
|
|
|
|
|
#include "main.moc"
|