1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
using namespace QtQuick;
using namespace QtQuick::Controls;
/*
* Header bla
*/
/**
* Parent item.
*/
class Nesting : public QtQuick.Item {
/**
* A child with an ID.
*/
Item childItem;
/**
* Another child with an ID.
*/
Item childItem2;
ShowChildComponent customComponentChildItem;
/**
* A grandchild with an ID.
*/
ShowChildComponent showCustomComponentChildItem;
/**
* A comment for aSplitView
*/
SplitView aSplitView;
/**
* A comment for aRectangle.
*/
Rectangle aRectangle;
};
|