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.
75 lines
2.5 KiB
75 lines
2.5 KiB
/* ============================================================ |
|
* StatusBarIcons - Extra icons in statusbar for Falkon |
|
* Copyright (C) 2013-2014 David Rosca <nowrep@gmail.com> |
|
* |
|
* 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/>. |
|
* ============================================================ */ |
|
#include "statusbariconsplugin.h" |
|
#include "sbi_iconsmanager.h" |
|
#include "sbi_settingsdialog.h" |
|
#include "pluginproxy.h" |
|
#include "browserwindow.h" |
|
#include "../config.h" |
|
#include "mainapplication.h" |
|
#include "desktopfile.h" |
|
|
|
StatusBarIconsPlugin::StatusBarIconsPlugin() |
|
: QObject() |
|
, m_manager(0) |
|
{ |
|
} |
|
|
|
DesktopFile StatusBarIconsPlugin::metaData() const |
|
{ |
|
return DesktopFile(QSL(":sbi/metadata.desktop")); |
|
} |
|
|
|
void StatusBarIconsPlugin::init(InitState state, const QString &settingsPath) |
|
{ |
|
m_manager = new SBI_IconsManager(settingsPath); |
|
|
|
connect(mApp->plugins(), &PluginProxy::mainWindowCreated, m_manager, &SBI_IconsManager::mainWindowCreated); |
|
connect(mApp->plugins(), &PluginProxy::mainWindowDeleted, m_manager, &SBI_IconsManager::mainWindowDeleted); |
|
|
|
// Make sure icons are added also to already created windows |
|
if (state == LateInitState) { |
|
foreach (BrowserWindow* window, mApp->windows()) { |
|
m_manager->mainWindowCreated(window); |
|
} |
|
} |
|
} |
|
|
|
void StatusBarIconsPlugin::unload() |
|
{ |
|
// Make sure icons are properly removed when unloading plugin (but not when closing app) |
|
if (!mApp->isClosing()) { |
|
foreach (BrowserWindow* window, mApp->windows()) { |
|
m_manager->mainWindowDeleted(window); |
|
} |
|
|
|
delete m_manager; |
|
} |
|
} |
|
|
|
bool StatusBarIconsPlugin::testPlugin() |
|
{ |
|
// Require the version that the plugin was built with |
|
return (Qz::VERSION == QLatin1String(FALKON_VERSION)); |
|
} |
|
|
|
void StatusBarIconsPlugin::showSettings(QWidget* parent) |
|
{ |
|
SBI_SettingsDialog* dialog = new SBI_SettingsDialog(m_manager, parent); |
|
dialog->open(); |
|
}
|
|
|