Border Layout Example¶
Shows how to arrange child widgets along a border
borderlayout.cpp Example File¶
borderlayout.h Example File¶
window.cpp Example File¶
window.h Example File¶
main.cpp Example File¶
borderlayout.pro Example File¶
Shows how to arrange child widgets along a border.
Border Layout implements a layout that arranges child widgets to surround the main area.
The constructor of the Window class creates a QTextBrowser object, to which a BorderLayout named
layout
is added. The declaration of the BorderLayout class is quoted at the end of this document.Several labeled widgets are added to
layout
with the orientationCenter
,North
,West
,East 1
,East 2
, andSouth
.createLabel() in class
Window
sets the text of the labeled widgets and the style.Class BorderLayout contains all the utilitarian functions for formatting the widgets it contains.
For more information, visit the Layout Management page.
Running the Example¶
To run the example from Qt Creator , open the Welcome mode and select the example from Examples . For more information, visit Building and Running an Example.