ugfx/docs/src/containers.dox

26 lines
844 B
Plaintext
Raw Normal View History

/*
* This file is subject to the terms of the GFX License. If a copy of
* the license was not distributed with this file, you can obtain one at:
*
2018-10-14 04:56:52 +00:00
* http://ugfx.io/license.html
*/
/**
* @file src/gwin/gwin.h
*
* @defgroup Containers Containers
* @ingroup GWIN
*
2015-11-07 15:33:28 +00:00
* @brief Containers are used to group together other windows and widgets.
*
* @details Containers are a "super-class" of @ref Widgets. Containers can have
* children @ref Windows which they can place within their borders. Containers
* control the visibility and enabled state of their children. By making
* a container invisible you make all its children invisible. Similiarly
* with the enabled state.
*
2015-11-07 15:33:28 +00:00
* For the common window API, please see @ref Container.
*
2018-02-27 07:44:21 +00:00
* @pre GFX_USE_GWIN must be set to GFXON in your gfxconf.h
*/