Closeable does not have a notify signal
This commit is contained in:
parent
01633be601
commit
96a51f8634
1 changed files with 4 additions and 1 deletions
5
client.h
5
client.h
|
@ -81,7 +81,10 @@ class Client
|
||||||
* To read only the caption as provided by WM_NAME, use the getter with an additional @c false value.
|
* To read only the caption as provided by WM_NAME, use the getter with an additional @c false value.
|
||||||
**/
|
**/
|
||||||
Q_PROPERTY(QString caption READ caption NOTIFY captionChanged)
|
Q_PROPERTY(QString caption READ caption NOTIFY captionChanged)
|
||||||
// TODO: notify signal
|
/**
|
||||||
|
* Whether the window can be closed by the user. The value is evaluated each time the getter is called.
|
||||||
|
* Because of that no changed signal is provided.
|
||||||
|
**/
|
||||||
Q_PROPERTY(bool closeable READ isCloseable)
|
Q_PROPERTY(bool closeable READ isCloseable)
|
||||||
// TODO: notify signal
|
// TODO: notify signal
|
||||||
Q_PROPERTY(int desktop READ desktop WRITE setDesktop)
|
Q_PROPERTY(int desktop READ desktop WRITE setDesktop)
|
||||||
|
|
Loading…
Reference in a new issue