@ -86,6 +86,10 @@ class View : public PlasmaQuick::ContainmentView
Q_PROPERTY ( bool latteTasksArePresent READ latteTasksArePresent WRITE setLatteTasksArePresent NOTIFY latteTasksArePresentChanged )
Q_PROPERTY ( bool onPrimary READ onPrimary WRITE setOnPrimary NOTIFY onPrimaryChanged )
//! values to be used from Smart surrounding Views
Q_PROPERTY ( bool touchingBottomViewAndIsBusy READ touchingBottomViewAndIsBusy WRITE setTouchingBottomViewAndIsBusy NOTIFY touchingBottomViewAndIsBusyChanged )
Q_PROPERTY ( bool touchingTopViewAndIsBusy READ touchingTopViewAndIsBusy WRITE setTouchingTopViewAndIsBusy NOTIFY touchingTopViewAndIsBusyChanged )
Q_PROPERTY ( int alignment READ alignment WRITE setAlignment NOTIFY alignmentChanged )
Q_PROPERTY ( int fontPixelSize READ fontPixelSize WRITE setFontPixelSize NOTIFY fontPixelSizeChanged )
Q_PROPERTY ( int x READ x NOTIFY xChanged )
@ -149,6 +153,12 @@ public:
bool latteTasksArePresent ( ) const ;
void setLatteTasksArePresent ( bool present ) ;
bool touchingBottomViewAndIsBusy ( ) const ;
void setTouchingBottomViewAndIsBusy ( bool touchAndBusy ) ;
bool touchingTopViewAndIsBusy ( ) const ;
void setTouchingTopViewAndIsBusy ( bool touchAndBusy ) ;
float maxLength ( ) const ;
void setMaxLength ( float length ) ;
@ -264,6 +274,8 @@ signals:
void onPrimaryChanged ( ) ;
void positionerChanged ( ) ;
void screenGeometryChanged ( ) ;
void touchingBottomViewAndIsBusyChanged ( ) ;
void touchingTopViewAndIsBusyChanged ( ) ;
void typeChanged ( ) ;
void visibilityChanged ( ) ;
void windowsTrackerChanged ( ) ;
@ -309,6 +321,9 @@ private:
bool m_latteTasksArePresent { false } ;
bool m_onPrimary { true } ;
bool m_touchingBottomViewAndIsBusy { false } ;
bool m_touchingTopViewAndIsBusy { false } ;
int m_fontPixelSize { - 1 } ;
int m_editThickness { 24 } ;
int m_maxThickness { 24 } ;