1QuickQanava Utilities
2============================
3
4BottomRightResizer:
5------------------
6
7
8Qan.BottomRightResizer add a "resize handler" ont the bottom right of a target QML Item. Bottom right resizer component is automatically initialized in the QuickQanava::initialize method, it has no dependencies on QuickQanava and could be used in an isolated project just by copying its source code: fqlBotomRightRizer.h and fqlBotomRightRizer.cpp with a call to `#!js qmlRegisterType< fql::BottomRightResizer >( "YourModule", 1, 0, "BottomRightResizer" );`
9
10![BottomRightResizer](utilities/utilities-resizer.png)
11
12![BottomRightResizer](utilities/utilities-resizer.gif)
13
14~~~~~~~~~~~~~{.cpp}
15// From c++:
16qmlRegisterType< fql::BottomRightResizer >( "YourModule", 1, 0, "BottomRightResizer" );
17
18 // From QML:
19import YourModule 1.0 as Fql
20
21Item {
22    id: targetItem
23    Fql.BottomRightResizer { target: targetItem }
24}
25~~~~~~~~~~~~~
26
27Resizer not necessarilly has to be in *target* (host) sibling, `#!js Fql.BottomRightResizer` could be defined outside of target item hierarchy, for example to avoid corrupting the target `childrenRect` property. It is however more efficient to use the resizer as a target child (most common case).
28
29Navigable:
30------------------
31
32[`qan::Navigable`](http://www.destrat.io/quickqanava/doc/classqan_1_1_navigable.html)
33
34
35