2011-03-03 18:29:20 +01:00
|
|
|
/* ============================================================
|
|
|
|
* QupZilla - WebKit based browser
|
2012-01-01 15:29:55 +01:00
|
|
|
* Copyright (C) 2010-2012 David Rosca <nowrep@gmail.com>
|
2011-03-03 18:29:20 +01:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
* ============================================================ */
|
2011-03-02 16:57:41 +01:00
|
|
|
|
|
|
|
#include <QtGui/QApplication>
|
|
|
|
#include <QTextCodec>
|
2011-03-24 16:51:19 +01:00
|
|
|
#include <iostream>
|
2011-11-28 19:17:48 +01:00
|
|
|
|
2011-05-18 22:58:49 +02:00
|
|
|
#include "commandlineoptions.h"
|
2011-03-02 16:57:41 +01:00
|
|
|
#include "mainapplication.h"
|
2012-01-15 12:35:29 +01:00
|
|
|
#include "proxystyle.h"
|
2011-03-02 16:57:41 +01:00
|
|
|
|
2011-11-06 17:01:23 +01:00
|
|
|
int main(int argc, char* argv[])
|
2011-03-02 16:57:41 +01:00
|
|
|
{
|
2011-12-27 15:26:32 +01:00
|
|
|
Q_INIT_RESOURCE(data);
|
2011-03-02 16:57:41 +01:00
|
|
|
Q_INIT_RESOURCE(icons);
|
|
|
|
Q_INIT_RESOURCE(html);
|
|
|
|
|
|
|
|
#ifdef Q_WS_X11
|
|
|
|
QApplication::setGraphicsSystem("raster"); // Better overall performance on X11
|
|
|
|
#endif
|
|
|
|
|
2011-05-18 22:58:49 +02:00
|
|
|
QList<CommandLineOptions::ActionPair> cmdActions;
|
|
|
|
|
|
|
|
if (argc > 1) {
|
|
|
|
CommandLineOptions cmd(argc, argv);
|
|
|
|
cmdActions = cmd.getActions();
|
2012-01-23 17:30:34 +01:00
|
|
|
foreach(const CommandLineOptions::ActionPair &pair, cmdActions) {
|
2011-05-18 22:58:49 +02:00
|
|
|
switch (pair.action) {
|
2012-01-21 23:19:38 +01:00
|
|
|
case Qz::CL_ExitAction:
|
2011-11-28 19:17:48 +01:00
|
|
|
return 0;
|
2011-05-18 22:58:49 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
MainApplication app(cmdActions, argc, argv);
|
2012-01-15 12:35:29 +01:00
|
|
|
app.setStyle(new ProxyStyle());
|
|
|
|
|
2011-03-24 16:51:19 +01:00
|
|
|
if (app.isExited()) {
|
2011-11-09 16:58:25 +01:00
|
|
|
// Not showing any output, otherwise XFCE shows "Failed to execute default browser. I/O error" error
|
|
|
|
// if (argc == 1) {
|
|
|
|
// std::cout << "QupZilla already running - activating existing window" << std::endl;
|
|
|
|
// }
|
|
|
|
return 0;
|
2011-03-24 16:51:19 +01:00
|
|
|
}
|
2011-04-25 15:06:59 +02:00
|
|
|
|
2011-04-24 22:40:35 +02:00
|
|
|
int result = app.exec();
|
|
|
|
return result;
|
2011-03-02 16:57:41 +01:00
|
|
|
}
|