1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-22 18:22:10 +02:00
falkonOfficial/src/plugins/PIM/PIM_handler.h
2014-01-11 16:11:42 +01:00

93 lines
2.4 KiB
C++

/* ============================================================
* Personal Information Manager plugin for QupZilla
* Copyright (C) 2012-2014 David Rosca <nowrep@gmail.com>
* Copyright (C) 2012-2014 Mladen Pejaković <pejakm@autistici.org>
*
* 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_HANDLER_H
#define PIM_HANDLER_H
#include <QObject>
#include <QWebElement>
#include <QMessageBox>
#include <QWebHitTestResult>
#include <QMenu>
#include <QPointer>
#include <QHash>
class WebView;
class WebPage;
class PIM_Settings;
class PIM_Handler : public QObject
{
Q_OBJECT
public:
explicit PIM_Handler(const QString &sPath, QObject* parent = 0);
void populateWebViewMenu(QMenu* menu, WebView* view, const QWebHitTestResult &hitTest);
bool keyPress(WebView* view, QKeyEvent* event);
void unloadPlugin();
signals:
public slots:
void webPageCreated(WebPage* page);
void showSettings(QWidget* parent = 0);
private slots:
void loadSettings();
void pimInsert();
void pageLoadFinished();
private:
enum PI_Type {
PI_LastName = 0,
PI_FirstName = 1,
PI_Email = 2,
PI_Mobile = 3,
PI_Phone = 4,
PI_Address = 5,
PI_City = 6,
PI_Zip = 7,
PI_State = 8,
PI_Country = 9,
PI_HomePage = 10,
PI_Special1 = 11,
PI_Special2 = 12,
PI_Special3 = 13,
PI_Max = 14,
PI_Invalid = 128
};
PI_Type nameMatch(const QString &name);
QHash<PI_Type, QString> m_allInfo;
QHash<PI_Type, QStringList> m_infoMatches;
QHash<PI_Type, QString> m_translations;
QPointer<PIM_Settings> m_settings;
QPointer<WebView> m_view;
QWebElement m_element;
QString m_settingsFile;
bool m_loaded;
};
#endif // PIM_HANDLER_H