(groupbox_set_title): new function.
[midnight-commander.git] / lib / widget / groupbox.h
blobe6b7920655487b38318506f96ee0026b55abed34
2 /** \file groupbox.h
3 * \brief Header: WGroupbox widget
4 */
6 #ifndef MC__WIDGET_GROUPBOX_H
7 #define MC__WIDGET_GROUPBOX_H
9 /*** typedefs(not structures) and defined constants **********************************************/
11 /*** enums ***************************************************************************************/
13 /*** structures declarations (and typedefs of structures)*****************************************/
15 typedef struct WGroupbox
17 Widget widget;
18 char *title;
19 } WGroupbox;
21 /*** global variables defined in .c file *********************************************************/
23 /*** declarations of public functions ************************************************************/
25 WGroupbox *groupbox_new (int y, int x, int height, int width, const char *title);
26 void groupbox_set_title (WGroupbox *g, const char *title);
28 /*** inline functions ****************************************************************************/
30 #endif /* MC__WIDGET_GROUPBOX_H */