qt5base-lts/examples/widgets/layouts
Allan Sandfeld Jensen af2daafde7 Deprecate constructing QFlags from a pointer
This was used to support QFlags f = 0 initialization, but with 0 used
as a pointer literal now considered bad form, it had been changed many
places to QFlags f = nullptr, which is meaningless and confusing.

Change-Id: I4bc592151c255dc5cab1a232615caecc520f02e8
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
2019-11-20 19:43:38 +01:00
..
basiclayouts Cleanup Widgets examples - new signal/slot syntax 2019-01-03 08:29:56 +00:00
borderlayout QtBase: compile examples with QT_DISABLE_DEPRECATED_BEFORE=0x050d00 2019-02-13 05:55:46 +00:00
dynamiclayouts Cleanup Widgets examples - foreach 2019-01-23 18:49:05 +00:00
flowlayout Deprecate constructing QFlags from a pointer 2019-11-20 19:43:38 +01:00
layouts.pro remove QT+=widgets from SUBDIRS projects 2012-12-17 14:08:17 +01:00
README Moving .qdoc files under examples/widgets/doc 2012-08-20 12:20:55 +02:00

Qt uses a layout-based approach to widget management. Widgets are arranged in
the optimal positions in windows based on simple layout rules, leading to a
consistent look and feel.

Custom layouts can be used to provide more control over the positions and
sizes of child widgets.


Documentation for these examples can be found via the Examples
link in the main Qt documentation.