Check perl, python and ruby programs and substitute them in various files.
[midnight-commander.git] / lib / widget / groupbox.h
blobff53f347b412b5360d3d5be6c9fc895568b8fe43
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);
27 /*** inline functions ****************************************************************************/
29 #endif /* MC__WIDGET_GROUPBOX_H */