You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
836 B
56 lines
836 B
/*
|
|
*/
|
|
/*! \page customlayout-example.html
|
|
|
|
\ingroup examples
|
|
\title Customized Layoutmanager
|
|
|
|
This examples demonstrates how to write customized layout (geometry) managers
|
|
like card layouts, border layout and flow layouts.
|
|
|
|
See also: <a href="layout.html">Documentation of Geometry Management</a>.
|
|
|
|
<hr>
|
|
|
|
Header file of the flow layout:
|
|
|
|
\include customlayout/flow.h
|
|
|
|
<hr>
|
|
|
|
Implementation of the flow layout:
|
|
|
|
\include customlayout/flow.cpp
|
|
|
|
<hr>
|
|
|
|
Header file of the border layout:
|
|
|
|
\include customlayout/border.h
|
|
|
|
<hr>
|
|
|
|
Implementation of the border layout:
|
|
|
|
\include customlayout/border.cpp
|
|
|
|
<hr>
|
|
|
|
Header file of the card layout:
|
|
|
|
\include customlayout/card.h
|
|
|
|
<hr>
|
|
|
|
Implementation of the card layout:
|
|
|
|
\include customlayout/card.cpp
|
|
|
|
<hr>
|
|
|
|
Main:
|
|
|
|
\include customlayout/main.cpp
|
|
*/
|
|
|