1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
|
/*
* Copyright (C) 2015-2016 Canonical Ltd.
*
* This program is free software: you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License version 3, as published by
* the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranties of MERCHANTABILITY,
* SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef MOUSEPOINTER_H
#define MOUSEPOINTER_H
// Qt
#include <QPointer>
#include <QWindow>
#include <QScreen>
// Lomiri API
#include <lomiri/shell/application/MirMousePointerInterface.h>
class MousePointer : public MirMousePointerInterface {
Q_OBJECT
Q_PROPERTY(QQuickItem* confiningItem READ confiningItem WRITE setConfiningItem NOTIFY confiningItemChanged)
Q_PROPERTY(int topBoundaryOffset READ topBoundaryOffset WRITE setTopBoundaryOffset NOTIFY topBoundaryOffsetChanged)
public:
MousePointer(QQuickItem *parent = nullptr);
~MousePointer();
void setCursorName(const QString &qtCursorName) override;
QString cursorName() const override { return m_cursorName; }
void setThemeName(const QString &themeName) override;
QString themeName() const override { return m_themeName; }
void moveTo(const QPoint& position) override;
void setCustomCursor(const QCursor &) override;
QQuickItem* confiningItem() const;
void setConfiningItem(QQuickItem*);
int topBoundaryOffset() const;
void setTopBoundaryOffset(int topBoundaryOffset);
QScreen* screen() const { return m_registeredScreen; }
Q_SIGNALS:
void pushedLeftBoundary(qreal amount, Qt::MouseButtons buttons);
void pushedRightBoundary(qreal amount, Qt::MouseButtons buttons);
void pushedTopBoundary(qreal amount, Qt::MouseButtons buttons);
void pushedTopLeftCorner(qreal amount, Qt::MouseButtons buttons);
void pushedTopRightCorner(qreal amount, Qt::MouseButtons buttons);
void pushedBottomLeftCorner(qreal amount, Qt::MouseButtons buttons);
void pushedBottomRightCorner(qreal amount, Qt::MouseButtons buttons);
void pushStopped();
void mouseMoved();
void confiningItemChanged();
void topBoundaryOffsetChanged(int topBoundaryOffset);
protected:
void itemChange(ItemChange change, const ItemChangeData &value) override;
private Q_SLOTS:
void registerScreen(QScreen *screen);
private:
void registerWindow(QWindow *window);
void applyItemConfinement(qreal &newX, qreal &newY);
QPointer<QWindow> m_registeredWindow;
QPointer<QScreen> m_registeredScreen;
QString m_cursorName;
QString m_themeName;
// Accumulated, unapplied, mouse movement.
QPointF m_accumulatedMovement;
QPointer<QQuickItem> m_confiningItem;
int m_topBoundaryOffset{0};
bool m_pushing{false};
};
#endif // MOUSEPOINTER_H
|