Maximizeable and Minimizable also have no change signal
This commit is contained in:
parent
53461d01ea
commit
85c72f3323
1 changed files with 9 additions and 2 deletions
11
client.h
11
client.h
|
@ -111,9 +111,16 @@ class Client
|
|||
* Whether the Client is set to be kept below other windows.
|
||||
**/
|
||||
Q_PROPERTY(bool keepBelow READ keepBelow WRITE setKeepBelow NOTIFY keepBelowChanged)
|
||||
// TODO: notify signal
|
||||
/**
|
||||
* Whether the Client can be maximized both horizontally and vertically.
|
||||
* The property is evaluated each time it is invoked.
|
||||
* Because of that there is no notify signal.
|
||||
**/
|
||||
Q_PROPERTY(bool maximizable READ isMaximizable)
|
||||
// TODO: notify signal
|
||||
/**
|
||||
* Whether the Client can be minimized. The property is evaluated each time it is invoked.
|
||||
* Because of that there is no notify signal.
|
||||
**/
|
||||
Q_PROPERTY(bool minimizable READ isMinimizable)
|
||||
// TODO: setter and notify signal
|
||||
Q_PROPERTY(bool minimized READ isMinimized)
|
||||
|
|
Loading…
Reference in a new issue