groupbox.h 925 B

1234567891011121314151617181920212223242526272829
  1. /** \file groupbox.h
  2. * \brief Header: WGroupbox widget
  3. */
  4. #ifndef MC__WIDGET_GROUPBOX_H
  5. #define MC__WIDGET_GROUPBOX_H
  6. /*** typedefs(not structures) and defined constants **********************************************/
  7. /*** enums ***************************************************************************************/
  8. /*** structures declarations (and typedefs of structures)*****************************************/
  9. typedef struct WGroupbox
  10. {
  11. Widget widget;
  12. char *title;
  13. } WGroupbox;
  14. /*** global variables defined in .c file *********************************************************/
  15. /*** declarations of public functions ************************************************************/
  16. WGroupbox *groupbox_new (int y, int x, int height, int width, const char *title);
  17. /*** inline functions ****************************************************************************/
  18. #endif /* MC__WIDGET_GROUPBOX_H */