root/lib/widget.h

/* [previous][next][first][last][top][bottom][index][help]  */

INCLUDED FROM


   1 /** \file widget.h
   2  *  \brief Header: MC widget and dialog manager: main include file.
   3  */
   4 #ifndef MC__WIDGET_H
   5 #define MC__WIDGET_H
   6 
   7 #include "lib/global.h"         /* GLib */
   8 
   9 /* main forward declarations */
  10 struct Widget;
  11 typedef struct Widget Widget;
  12 struct WGroup;
  13 typedef struct WGroup WGroup;
  14 
  15 /* Please note that the first element in all the widgets is a     */
  16 /* widget variable of type Widget.  We abuse this fact everywhere */
  17 
  18 #include "lib/widget/rect.h"
  19 #include "lib/widget/widget-common.h"
  20 #include "lib/widget/group.h"
  21 #include "lib/widget/background.h"
  22 #include "lib/widget/frame.h"
  23 #include "lib/widget/dialog.h"
  24 #include "lib/widget/history.h"
  25 #include "lib/widget/button.h"
  26 #include "lib/widget/buttonbar.h"
  27 #include "lib/widget/check.h"
  28 #include "lib/widget/hline.h"
  29 #include "lib/widget/gauge.h"
  30 #include "lib/widget/groupbox.h"
  31 #include "lib/widget/label.h"
  32 #include "lib/widget/listbox.h"
  33 #include "lib/widget/menu.h"
  34 #include "lib/widget/radio.h"
  35 #include "lib/widget/input.h"
  36 #include "lib/widget/listbox-window.h"
  37 #include "lib/widget/quick.h"
  38 #include "lib/widget/wtools.h"
  39 #include "lib/widget/dialog-switch.h"
  40 
  41 /*** typedefs(not structures) and defined constants **********************************************/
  42 
  43 /*** enums ***************************************************************************************/
  44 
  45 /*** structures declarations (and typedefs of structures)*****************************************/
  46 
  47 /*** global variables defined in .c file *********************************************************/
  48 
  49 /*** declarations of public functions ************************************************************/
  50 
  51 /*** inline functions ****************************************************************************/
  52 
  53 #endif /* MC__WIDGET_H */

/* [previous][next][first][last][top][bottom][index][help]  */