|
|
|
@ -69,7 +69,7 @@ class PrimaryConfigView : public QQuickView
|
|
|
|
|
//! used when the secondary config window can not be shown
|
|
|
|
|
Q_PROPERTY(bool showInlineProperties READ showInlineProperties NOTIFY showInlinePropertiesChanged)
|
|
|
|
|
Q_PROPERTY(bool inAdvancedMode READ inAdvancedMode WRITE setInAdvancedMode NOTIFY inAdvancedModeChanged)
|
|
|
|
|
Q_PROPERTY(bool inParentViewChange READ inParentViewChange NOTIFY inParentViewChangeChanged)
|
|
|
|
|
Q_PROPERTY(bool isReady READ isReady NOTIFY isReadyChanged)
|
|
|
|
|
|
|
|
|
|
Q_PROPERTY(QRect availableScreenGeometry READ availableScreenGeometry NOTIFY availableScreenGeometryChanged)
|
|
|
|
|
|
|
|
|
@ -93,7 +93,7 @@ public:
|
|
|
|
|
bool inAdvancedMode() const;
|
|
|
|
|
void setInAdvancedMode(bool advanced);
|
|
|
|
|
|
|
|
|
|
bool inParentViewChange() const;
|
|
|
|
|
bool isReady() const;
|
|
|
|
|
|
|
|
|
|
bool showInlineProperties() const;
|
|
|
|
|
bool sticker() const;
|
|
|
|
@ -120,7 +120,7 @@ signals:
|
|
|
|
|
void availableScreenGeometryChanged();
|
|
|
|
|
void enabledBordersChanged();
|
|
|
|
|
void inAdvancedModeChanged();
|
|
|
|
|
void inParentViewChangeChanged();
|
|
|
|
|
void isReadyChanged();
|
|
|
|
|
void raiseDocksTemporaryChanged();
|
|
|
|
|
void showInlinePropertiesChanged();
|
|
|
|
|
void showSignal();
|
|
|
|
@ -153,7 +153,7 @@ private slots:
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
void setupWaylandIntegration();
|
|
|
|
|
void setInParentViewChange(bool inChange);
|
|
|
|
|
void setIsReady(bool ready);
|
|
|
|
|
void initView(Latte::View *view);
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
@ -161,8 +161,8 @@ private:
|
|
|
|
|
bool m_blockFocusLostOnStartup{true};
|
|
|
|
|
bool m_originalByPassWM{false};
|
|
|
|
|
bool m_inAdvancedMode{false};
|
|
|
|
|
bool m_inParentViewChange{false};
|
|
|
|
|
bool m_inReverse{false}; //! it is used by the borders
|
|
|
|
|
bool m_isReady{false};
|
|
|
|
|
bool m_showInlineProperties{false};
|
|
|
|
|
|
|
|
|
|
Latte::Types::Visibility m_originalMode{Latte::Types::DodgeActive};
|
|
|
|
|