12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- /*
- * File : box.h
- * This file is part of RT-Thread RTOS
- * COPYRIGHT (C) 2006 - 2009, RT-Thread Development Team
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- * http://www.rt-thread.org/license/LICENSE
- *
- * Change Logs:
- * Date Author Notes
- * 2009-10-16 Bernard first version
- */
- #ifndef __RTGUI_BOX_H__
- #define __RTGUI_BOX_H__
- #include <rtgui/rtgui.h>
- #include <rtgui/widgets/widget.h>
- #include <rtgui/widgets/container.h>
- #ifdef __cplusplus
- extern "C" {
- #endif
- DECLARE_CLASS_TYPE(box);
- /** Gets the type of a box */
- #define RTGUI_BOX_TYPE (RTGUI_TYPE(box))
- /** Casts the object to an rtgui_box */
- #define RTGUI_BOX(obj) (RTGUI_OBJECT_CAST((obj), RTGUI_BOX_TYPE, rtgui_box_t))
- /** Checks if the object is an rtgui_box */
- #define RTGUI_IS_BOX(obj) (RTGUI_OBJECT_CHECK_TYPE((obj), RTGUI_BOX_TYPE))
- struct rtgui_box
- {
- struct rtgui_object parent;
- rt_uint16_t orient;
- rt_uint16_t border_size;
- struct rtgui_container *container;
- };
- typedef struct rtgui_box rtgui_box_t;
- struct rtgui_box *rtgui_box_create(int orientation, int border_size);
- void rtgui_box_destroy(struct rtgui_box *box);
- void rtgui_box_layout(rtgui_box_t *box);
- void rtgui_box_layout_rect(rtgui_box_t *box, struct rtgui_rect *rect);
- #ifdef __cplusplus
- }
- #endif
- #endif
|