1
mirror of https://invent.kde.org/network/falkon.git synced 2024-11-15 19:42:10 +01:00
falkonOfficial/src/plugins/PIM/PIM_plugin.h

53 lines
1.7 KiB
C
Raw Normal View History

2012-07-11 18:30:00 +02:00
/* ============================================================
2017-08-25 17:11:29 +02:00
* Personal Information Manager plugin for Falkon
2014-01-11 16:11:42 +01:00
* Copyright (C) 2012-2014 David Rosca <nowrep@gmail.com>
* Copyright (C) 2012-2014 Mladen Pejaković <pejakm@autistici.org>
2012-07-11 18:30:00 +02: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/>.
* ============================================================ */
#ifndef PIM_PLUGIN_H
#define PIM_PLUGIN_H
#include "plugininterface.h"
class WebPage;
class BrowserWindow;
2012-07-11 18:30:00 +02:00
class PIM_Handler;
class PIM_Plugin : public QObject, public PluginInterface
{
Q_OBJECT
Q_INTERFACES(PluginInterface)
2017-08-25 17:11:29 +02:00
Q_PLUGIN_METADATA(IID "Falkon.Browser.plugin.PIM")
2012-07-11 18:30:00 +02:00
public:
PIM_Plugin();
PluginSpec pluginSpec();
void init(InitState state, const QString &settingsPath);
2012-07-11 18:30:00 +02:00
void unload();
bool testPlugin();
QTranslator* getTranslator(const QString &locale);
void showSettings(QWidget* parent = 0);
2015-10-02 14:13:21 +02:00
void populateWebViewMenu(QMenu* menu, WebView* view, const WebHitTestResult &r);
2012-07-11 18:30:00 +02:00
bool keyPress(const Qz::ObjectName &type, QObject* obj, QKeyEvent* event);
private:
PIM_Handler* m_handler;
};
#endif // PIM_PLUGIN_H