1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-22 10:12:10 +02:00
falkonOfficial/src/plugins/MouseGestures/mousegestures.h

85 lines
2.3 KiB
C
Raw Normal View History

/* ============================================================
* Mouse Gestures plugin for QupZilla
2014-01-11 16:11:42 +01:00
* Copyright (C) 2012-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/>.
* ============================================================ */
#ifndef MOUSEGESTURES_H
#define MOUSEGESTURES_H
#include <QObject>
#include <QPointer>
class QMouseEvent;
class WebView;
class QjtMouseGestureFilter;
class MouseGesturesSettingsDialog;
class MouseGestures : public QObject
{
Q_OBJECT
public:
explicit MouseGestures(const QString &settingsPath, QObject* parent = 0);
~MouseGestures();
bool mousePress(QObject* obj, QMouseEvent* event);
bool mouseRelease(QObject* obj, QMouseEvent* event);
bool mouseMove(QObject* obj, QMouseEvent* event);
void showSettings(QWidget* parent);
void unloadPlugin();
Qt::MouseButton gestureButton() const;
void setGestureButton(Qt::MouseButton button);
void setGestureButtonByIndex(int index);
int buttonToIndex() const;
bool rockerNavigationEnabled() const;
void setRockerNavigationEnabled(bool enable);
void loadSettings();
void saveSettings();
private slots:
void upGestured();
void downGestured();
void leftGestured();
void rightGestured();
void downRightGestured();
void downLeftGestured();
void upDownGestured();
void upLeftGestured();
void upRightGestured();
private:
void init();
void initFilter();
QjtMouseGestureFilter* m_filter;
QPointer<MouseGesturesSettingsDialog> m_settings;
QPointer<WebView> m_view;
QString m_settingsFile;
Qt::MouseButton m_button;
bool m_enableRockerNavigation;
bool m_blockNextRightMouseRelease;
bool m_blockNextLeftMouseRelease;
};
#endif // MOUSEGESTURES_H