|
|
@ -33,7 +33,6 @@
|
|
|
|
#include <array>
|
|
|
|
#include <array>
|
|
|
|
|
|
|
|
|
|
|
|
#include <QQuickView>
|
|
|
|
#include <QQuickView>
|
|
|
|
#include <QQmlListProperty>
|
|
|
|
|
|
|
|
#include <QMenu>
|
|
|
|
#include <QMenu>
|
|
|
|
#include <QMimeData>
|
|
|
|
#include <QMimeData>
|
|
|
|
#include <QScreen>
|
|
|
|
#include <QScreen>
|
|
|
@ -91,8 +90,6 @@ class DockView : public PlasmaQuick::ContainmentView
|
|
|
|
Q_PROPERTY(Latte::View::Positioner *positioner READ positioner NOTIFY positionerChanged)
|
|
|
|
Q_PROPERTY(Latte::View::Positioner *positioner READ positioner NOTIFY positionerChanged)
|
|
|
|
Q_PROPERTY(VisibilityManager *visibility READ visibility NOTIFY visibilityChanged)
|
|
|
|
Q_PROPERTY(VisibilityManager *visibility READ visibility NOTIFY visibilityChanged)
|
|
|
|
|
|
|
|
|
|
|
|
Q_PROPERTY(QQmlListProperty<QScreen> screens READ screens)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Q_PROPERTY(QRect absoluteGeometry READ absGeometry NOTIFY absGeometryChanged)
|
|
|
|
Q_PROPERTY(QRect absoluteGeometry READ absGeometry NOTIFY absGeometryChanged)
|
|
|
|
Q_PROPERTY(QRect localGeometry READ localGeometry WRITE setLocalGeometry NOTIFY localGeometryChanged)
|
|
|
|
Q_PROPERTY(QRect localGeometry READ localGeometry WRITE setLocalGeometry NOTIFY localGeometryChanged)
|
|
|
|
Q_PROPERTY(QRect screenGeometry READ screenGeometry NOTIFY screenGeometryChanged)
|
|
|
|
Q_PROPERTY(QRect screenGeometry READ screenGeometry NOTIFY screenGeometryChanged)
|
|
|
@ -167,11 +164,6 @@ public:
|
|
|
|
KWayland::Client::PlasmaShellSurface *surface();
|
|
|
|
KWayland::Client::PlasmaShellSurface *surface();
|
|
|
|
|
|
|
|
|
|
|
|
void reconsiderScreen();
|
|
|
|
void reconsiderScreen();
|
|
|
|
QQmlListProperty<QScreen> screens();
|
|
|
|
|
|
|
|
//! is needed by screens()
|
|
|
|
|
|
|
|
static int countScreens(QQmlListProperty<QScreen> *property);
|
|
|
|
|
|
|
|
//! is needed by screens()
|
|
|
|
|
|
|
|
static QScreen *atScreens(QQmlListProperty<QScreen> *property, int index);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//! these are signals that create crashes, such a example is the availableScreenRectChanged from corona
|
|
|
|
//! these are signals that create crashes, such a example is the availableScreenRectChanged from corona
|
|
|
|
//! when its containment is destroyed
|
|
|
|
//! when its containment is destroyed
|
|
|
|