2022-04-04 14:54:32 +00:00
|
|
|
pragma Strict
|
|
|
|
import QtQuick 6
|
|
|
|
|
|
|
|
Item {
|
|
|
|
property bool a: !x
|
2022-04-05 09:39:20 +00:00
|
|
|
width: !(parent && state) ? 100 : 0
|
2022-04-05 12:09:17 +00:00
|
|
|
|
|
|
|
property font f
|
|
|
|
property bool b: !(parent || f)
|
2022-04-04 14:54:32 +00:00
|
|
|
}
|