/* ============================================================ * QupZilla - WebKit based browser * Copyright (C) 2010-2012 David Rosca * * 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 . * ============================================================ */ #include "commandlineoptions.h" #include "qupzilla.h" CommandLineOptions::CommandLineOptions(int &argc, char** argv) : m_argc(argc) , m_argv(argv) { parseActions(); } CommandLineOptions::ActionPairList CommandLineOptions::getActions() { return m_actions; } void CommandLineOptions::showHelp() { using namespace std; const char* help = " Usage: qupzilla [options] URL \n" "\n" " QupZilla options:\n" " -h or --help print this message \n" " -a or --authors print QupZilla authors \n" " -v or --version print QupZilla version \n" "\n" " -p or --profile= start with specified profile \n" " -np or --no-plugins start without plugins \n" "\n" " Options to control running QupZilla:\n" " -nt or --new-tab open new tab\n" " -nw or --new-window open new window\n" " -pb or --private-browsing start private browsing\n" " -dm or --download-manager show download manager\n" "\n" " QupZilla is a new, fast and secure web browser\n" " based on WebKit core (http://webkit.org) and\n" " written in Qt Framework (http://qt.nokia.com) \n\n" " For more information please visit wiki at \n" " https://github.com/nowrep/QupZilla/wiki \n"; cout << help << " > " << QupZilla::WWWADDRESS.toUtf8().data() << endl; } void CommandLineOptions::parseActions() { using namespace std; // Skip first argument (it should be program itself) for (int i = 1; i < m_argc; i++) { QString arg(m_argv[i]); if (arg == "-h" || arg == "--help") { showHelp(); ActionPair pair; pair.action = Qz::CL_ExitAction; m_actions.append(pair); break; } if (arg == "-a" || arg == "--authors") { cout << "QupZilla authors: " << endl; cout << " nowrep " << endl; ActionPair pair; pair.action = Qz::CL_ExitAction; m_actions.append(pair); break; } if (arg == "-v" || arg == "--version") { cout << "QupZilla v" << QupZilla::VERSION.toUtf8().data() #ifdef GIT_REVISION << " rev " << GIT_REVISION << " " #endif << "(build " << QupZilla::BUILDTIME.toUtf8().data() << ")" << endl; ActionPair pair; pair.action = Qz::CL_ExitAction; m_actions.append(pair); break; } if (arg.startsWith("-p=") || arg.startsWith("--profile=")) { arg.remove("-p="); arg.remove("--profile="); cout << "QupZilla: Starting with profile " << arg.toUtf8().data() << endl; ActionPair pair; pair.action = Qz::CL_StartWithProfile; pair.text = arg; m_actions.append(pair); } if (arg.startsWith("-np") || arg.startsWith("--no-plugins")) { ActionPair pair; pair.action = Qz::CL_StartWithoutAddons; pair.text = ""; m_actions.append(pair); } if (arg.startsWith("-nt") || arg.startsWith("--new-tab")) { ActionPair pair; pair.action = Qz::CL_NewTab; pair.text = ""; m_actions.append(pair); } if (arg.startsWith("-nw") || arg.startsWith("--new-window")) { ActionPair pair; pair.action = Qz::CL_NewWindow; pair.text = ""; m_actions.append(pair); } if (arg.startsWith("-dm") || arg.startsWith("--download-manager")) { ActionPair pair; pair.action = Qz::CL_ShowDownloadManager; pair.text = ""; m_actions.append(pair); } if (arg.startsWith("-pb") || arg.startsWith("--private-browsing")) { ActionPair pair; pair.action = Qz::CL_StartPrivateBrowsing; pair.text = ""; m_actions.append(pair); } } QString url(m_argv[m_argc - 1]); if (m_argc > 1 && !url.isEmpty() && !url.startsWith("-") && url.contains(".")) { cout << "QupZilla: Starting with url " << url.toUtf8().data() << endl; ActionPair pair; pair.action = Qz::CL_OpenUrl; pair.text = url; m_actions.append(pair); } }