You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
2.5 KiB
59 lines
2.5 KiB
/* |
|
* Copyright 2007 Glenn Ergeerts <glenn.ergeerts@telenet.be> |
|
* Copyright 2012 Glenn Ergeerts <marco.gulino@gmail.com> |
|
* |
|
* This program is free software; you can redistribute it and/or modify |
|
* it under the terms of the GNU Library General Public License as |
|
* published by the Free Software Foundation; either version 2, 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 Library General Public |
|
* License along with this program; if not, write to the |
|
* Free Software Foundation, Inc., |
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
|
*/ |
|
|
|
#include "browserfactory.h" |
|
#include "browsers/browser.h" |
|
#include "browsers/chrome.h" |
|
#include "browsers/chromefindprofile.h" |
|
#include "browsers/falkon.h" |
|
#include "browsers/firefox.h" |
|
#include "browsers/konqueror.h" |
|
#include "browsers/opera.h" |
|
|
|
Browser *BrowserFactory::find(const QString &browserName, QObject *parent) |
|
{ |
|
if (m_previousBrowserName == browserName) { |
|
return m_previousBrowser; |
|
} |
|
delete m_previousBrowser; |
|
m_previousBrowserName = browserName; |
|
if (browserName.contains(QLatin1String("firefox"), Qt::CaseInsensitive) || browserName.contains(QLatin1String("iceweasel"), Qt::CaseInsensitive)) { |
|
m_previousBrowser = new Firefox(QDir::homePath() + QStringLiteral("/.mozilla/firefox"), parent); |
|
} else if (browserName.contains(QLatin1String("opera"), Qt::CaseInsensitive)) { |
|
m_previousBrowser = new Opera(parent); |
|
} else if (browserName.contains(QLatin1String("chrome"), Qt::CaseInsensitive)) { |
|
m_previousBrowser = new Chrome(new FindChromeProfile(QStringLiteral("google-chrome"), QDir::homePath(), parent), parent); |
|
} else if (browserName.contains(QLatin1String("chromium"), Qt::CaseInsensitive)) { |
|
m_previousBrowser = new Chrome(new FindChromeProfile(QStringLiteral("chromium"), QDir::homePath(), parent), parent); |
|
} else if (browserName.contains(QLatin1String("falkon"), Qt::CaseInsensitive)) { |
|
m_previousBrowser = new Falkon(parent); |
|
} else { |
|
m_previousBrowser = new Konqueror(parent); |
|
} |
|
|
|
return m_previousBrowser; |
|
} |
|
|
|
BrowserFactory::BrowserFactory(QObject *parent) |
|
: QObject(parent) |
|
, m_previousBrowser(nullptr) |
|
, m_previousBrowserName(QStringLiteral("invalid")) |
|
{ |
|
}
|
|
|