Hi,

I'm writing a Custom Widget for QtCreator/-Designer. Things work fine, BUT I have difficulties to create properties for the Property-
Editor. Simple properties like INTs, BOOLs, ... work fine (with Q_PROPERTY), but I would like to bundle some properties that belong together into a subproperty
like in QWidget:
v-geometry
| |-X
| |-Y
| |-Width
| |-Height
|
I've also tried to find a solution with Q_FLAGS but a so declared enum wouldn't even show up in the Property-Editor

The other point is that when I create a QString property such subproperties are created automatically (translation, ...). Does somebody know how I can get rid if them?

Any suggestions, example code, ... ?

Thanx in advance

Michael