/************************************************************************** ** ** This file is part of Qt Creator ** ** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies). ** ** Contact: Nokia Corporation (qt-info@nokia.com) ** ** 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. ** **************************************************************************/ #include #include #include #include #include #include #include #include #include "mainwindow.h" enum { debug = false }; static void doStyling(QApplication& app) { QString ws; #ifdef Q_WS_MAC ws = "macos"; #endif // Q_WS_MAC #ifdef Q_WS_WIN ws = "windows"; #endif // Q_WS_WIN #ifdef Q_WS_X11 ws = "x11"; #endif // Q_WS_X11 QFile platformCssFile(QString(":/bauhaus-%1.css").arg(ws)); platformCssFile.open(QIODevice::ReadOnly | QIODevice::Text); QTextStream platformCssStream(&platformCssFile); QString styleSheet(platformCssStream.readAll()); platformCssFile.close(); QFile genericCssFile(QLatin1String(":/bauhaus.css")); genericCssFile.open(QIODevice::ReadOnly | QIODevice::Text); QTextStream genericCssStream(&genericCssFile); styleSheet.append(genericCssStream.readAll()); genericCssFile.close(); app.setStyleSheet(styleSheet); } static void parseArguments(const QStringList& argumentList, MainWindow& mainWindow) { QStringList passArgumentList; passArgumentList.append("--no-resync"); passArgumentList.append("-h"); passArgumentList.append("-graphicssystem"); for (int i = 1; i < argumentList.size(); ++i) { if (argumentList[i].at(0) == QLatin1Char('-')) { if (argumentList[i] == "--file" || argumentList[i] == "-file" || argumentList[i] == "-f") { ++i; if (i < argumentList.size()) { mainWindow.openFile(argumentList[i]); } else { mainWindow.doOpen(); } } else if (argumentList[i] == "--help" || argumentList[i] == "-h") { qWarning() << "Usage: bauhaus [OPTION...]\n"; qWarning() << " -f, --file open this file"; qWarning() << " --no-resync disable rewriter"; exit(0); } else if (passArgumentList.contains(argumentList[i].split('=').first())) { } else { qWarning() << "bauhaus: unrecognized option "<< argumentList[i]; qWarning() << "Try `bauhaus --help'"; exit(1); } } else { mainWindow.openFile(argumentList[i]); } } } static QStringList pluginPaths() { QStringList result; #ifdef Q_OS_MAC result += QCoreApplication::applicationDirPath() + "/../PlugIns/Bauhaus/ItemLibs"; #else // Q_OS_MAC result += QCoreApplication::applicationDirPath() + "/../lib/itemlibs"; #endif // Q_OS_MAC return result; } int main(int argc, char *argv[]) { QApplication app(argc, argv); Q_INIT_RESOURCE(bauhaus); doStyling(app); #ifdef Q_WS_X11 QIcon applicationIcon; applicationIcon.addFile(":/16xBauhaus_Log"); applicationIcon.addFile(":/64xBauhaus_Logo.png"); applicationIcon.addFile(":/128xBauhaus_Logo.png"); applicationIcon.addFile(":/256xBauhaus_Logo.png"); Q_ASSERT(!applicationIcon.isNull()); app.setWindowIcon(applicationIcon); #endif QCoreApplication::setOrganizationName("Nokia"); QCoreApplication::setOrganizationDomain("nokia.com"); QCoreApplication::setApplicationName("Bauhaus"); try { QmlDesigner::IntegrationCore core; core.pluginManager()->setPluginPaths(pluginPaths()); MainWindow mainWindow; mainWindow.show(); parseArguments(app.arguments(), mainWindow); // if (mainWindow.documentCount() == 0) // mainWindow.showWelcomeScreen(); // return app.exec(); } catch (const QmlDesigner::Exception &exception) { qWarning() << exception; return -1; } }