| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- #ifndef __RTGUI_NOTEBOOK_H__
- #define __RTGUI_NOTEBOOK_H__
- #include <rtgui/rtgui.h>
- #include <rtgui/widgets/container.h>
- DECLARE_CLASS_TYPE(notebook);
- /** Gets the type of a notebook */
- #define RTGUI_NOTEBOOK_TYPE (RTGUI_TYPE(notebook))
- /** Casts the object to a notebook control */
- #define RTGUI_NOTEBOOK(obj) (RTGUI_OBJECT_CAST((obj), RTGUI_NOTEBOOK_TYPE, rtgui_notebook_t))
- /** Checks if the object is a notebook control */
- #define RTGUI_IS_NOTEBOOK(obj) (RTGUI_OBJECT_CHECK_TYPE((obj), RTGUI_NOTEBOOK_TYPE))
- #define RTGUI_NOTEBOOK_TOP 0x00
- #define RTGUI_NOTEBOOK_BOTTOM 0x01
- #define RTGUI_NOTEBOOK_NOTAB 0x02
- struct rtgui_notebook_tab
- {
- char* title;
- struct rtgui_widget* widget;
- };
- typedef struct rtgui_notebook_tab rtgui_notebook_tab_t;
- struct rtgui_notebook
- {
- struct rtgui_container parent;
- rt_uint8_t flag;
- /* widget private data */
- rtgui_notebook_tab_t* childs;
- rt_uint16_t count;
- rt_int16_t current;
- };
- typedef struct rtgui_notebook rtgui_notebook_t;
- rtgui_type_t *rtgui_notebook_type_get(void);
- rtgui_notebook_t* rtgui_notebook_create(const rtgui_rect_t* rect, rt_uint8_t style);
- void rtgui_notebook_destroy(rtgui_notebook_t* notebook);
- void rtgui_notebook_add(rtgui_notebook_t* notebook, const char* label, rtgui_widget_t* child);
- int rtgui_notebook_get_count(rtgui_notebook_t* notebook);
- rtgui_widget_t* rtgui_notebook_get_current(rtgui_notebook_t* notebook);
- void rtgui_notebook_set_current(rtgui_notebook_t* notebook, rtgui_widget_t* widget);
- void rtgui_notebook_set_current_by_index(rtgui_notebook_t* notebook, rt_uint16_t index);
- rtgui_widget_t* rtgui_notebook_get_index(rtgui_notebook_t* notebook, rt_uint16_t index);
- rt_bool_t rtgui_notebook_event_handler(struct rtgui_widget* widget, struct rtgui_event* event);
- #endif
|