2012-07-11 18:30:00 +02:00
|
|
|
/* ============================================================
|
|
|
|
* Personal Information Manager plugin for QupZilla
|
|
|
|
* Copyright (C) 2012 David Rosca <nowrep@gmail.com>
|
2013-09-21 00:02:56 +02:00
|
|
|
* Copyright (C) 2012 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_HANDLER_H
|
|
|
|
#define PIM_HANDLER_H
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include <QWebElement>
|
|
|
|
#include <QMessageBox>
|
|
|
|
#include <QWebHitTestResult>
|
|
|
|
#include <QMenu>
|
2012-12-20 14:45:35 +01:00
|
|
|
#include <QPointer>
|
2012-07-11 18:30:00 +02:00
|
|
|
#include <QHash>
|
|
|
|
|
|
|
|
class WebView;
|
|
|
|
class WebPage;
|
|
|
|
|
2012-09-11 11:31:28 +02:00
|
|
|
class PIM_Settings;
|
|
|
|
|
2012-07-11 18:30:00 +02:00
|
|
|
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);
|
|
|
|
|
2012-09-11 11:31:28 +02:00
|
|
|
void unloadPlugin();
|
|
|
|
|
2012-07-11 18:30:00 +02:00
|
|
|
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;
|
|
|
|
|
2012-12-20 14:45:35 +01:00
|
|
|
QPointer<PIM_Settings> m_settings;
|
|
|
|
QPointer<WebView> m_view;
|
2012-07-11 18:30:00 +02:00
|
|
|
QWebElement m_element;
|
|
|
|
|
|
|
|
QString m_settingsFile;
|
|
|
|
bool m_loaded;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // PIM_HANDLER_H
|