add option "Ask new file name" in the Configuration box
[midnight-commander.git] / lib / widget / dialog-switch.h
blobbb745371dd5ee4a9bbfb236be240d4cc23499e41
2 #ifndef MC__DIALOG_SWITCH_H
3 #define MC__DIALOG_SWITCH_H
5 #include <sys/types.h>
7 /*** typedefs(not structures) and defined constants **********************************************/
9 /*** enums ***************************************************************************************/
11 /*** structures declarations (and typedefs of structures)*****************************************/
13 /*** global variables defined in .c file *********************************************************/
15 extern WDialog *midnight_dlg;
17 /*** declarations of public functions ************************************************************/
19 void dialog_switch_add (struct WDialog *h);
20 void dialog_switch_remove (struct WDialog *h);
21 size_t dialog_switch_num (void);
23 void dialog_switch_next (void);
24 void dialog_switch_prev (void);
25 void dialog_switch_list (void);
27 int dialog_switch_process_pending (void);
28 void dialog_switch_got_winch (void);
29 void dialog_switch_shutdown (void);
31 /* Clear screen */
32 void clr_scr (void);
33 void repaint_screen (void);
34 void mc_refresh (void);
35 void dialog_change_screen_size (void);
37 /*** inline functions ****************************************************************************/
39 #endif /* MC__DIALOG_SWITCH_H */