/* ============================================================ * Personal Information Manager plugin for QupZilla * Copyright (C) 2012 David Rosca * Copyright (C) 2012 Mladen Pejaković * * 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 . * ============================================================ */ #ifndef PIM_HANDLER_H #define PIM_HANDLER_H #include #include #include #include #include #include #include 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 m_allInfo; QHash m_infoMatches; QHash m_translations; QPointer m_settings; QPointer m_view; QWebElement m_element; QString m_settingsFile; bool m_loaded; }; #endif // PIM_HANDLER_H