root/lib/widget/dialog-switch.h

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

INCLUDED FROM


   1 
   2 #ifndef MC__DIALOG_SWITCH_H
   3 #define MC__DIALOG_SWITCH_H
   4 
   5 #include <sys/types.h>
   6 
   7 /*** typedefs(not structures) and defined constants **********************************************/
   8 
   9 /*** enums ***************************************************************************************/
  10 
  11 /*** structures declarations (and typedefs of structures)*****************************************/
  12 
  13 /*** global variables defined in .c file *********************************************************/
  14 
  15 extern GList *top_dlg;
  16 
  17 extern gboolean fast_refresh;
  18 
  19 extern WDialog *filemanager;
  20 
  21 /*** declarations of public functions ************************************************************/
  22 
  23 void dialog_switch_add (WDialog * h);
  24 void dialog_switch_remove (WDialog * h);
  25 size_t dialog_switch_num (void);
  26 
  27 void dialog_switch_next (void);
  28 void dialog_switch_prev (void);
  29 void dialog_switch_list (void);
  30 
  31 int dialog_switch_process_pending (void);
  32 void dialog_switch_got_winch (void);
  33 void dialog_switch_shutdown (void);
  34 
  35 /* Redraw all dialogs */
  36 void do_refresh (void);
  37 
  38 void repaint_screen (void);
  39 void mc_refresh (void);
  40 void dialog_change_screen_size (void);
  41 
  42 /*** inline functions ****************************************************************************/
  43 
  44 #endif /* MC__DIALOG_SWITCH_H */

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