facf0c92e0
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
45 lines
1.3 KiB
C
45 lines
1.3 KiB
C
|
|
#ifndef MC__DIALOG_SWITCH_H
|
|
#define MC__DIALOG_SWITCH_H
|
|
|
|
#include <sys/types.h>
|
|
|
|
/*** typedefs(not structures) and defined constants **********************************************/
|
|
|
|
/*** enums ***************************************************************************************/
|
|
|
|
/*** structures declarations (and typedefs of structures)*****************************************/
|
|
|
|
/*** global variables defined in .c file *********************************************************/
|
|
|
|
extern GList *top_dlg;
|
|
|
|
extern gboolean fast_refresh;
|
|
|
|
extern WDialog *filemanager;
|
|
|
|
/*** declarations of public functions ************************************************************/
|
|
|
|
void dialog_switch_add (WDialog * h);
|
|
void dialog_switch_remove (WDialog * h);
|
|
size_t dialog_switch_num (void);
|
|
|
|
void dialog_switch_next (void);
|
|
void dialog_switch_prev (void);
|
|
void dialog_switch_list (void);
|
|
|
|
int dialog_switch_process_pending (void);
|
|
void dialog_switch_got_winch (void);
|
|
void dialog_switch_shutdown (void);
|
|
|
|
/* Redraw all dialogs */
|
|
void do_refresh (void);
|
|
|
|
void repaint_screen (void);
|
|
MC_MOCKABLE void mc_refresh (void);
|
|
void dialog_change_screen_size (void);
|
|
|
|
/*** inline functions ****************************************************************************/
|
|
|
|
#endif /* MC__DIALOG_SWITCH_H */
|