mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 12:56:51 +03:00
78fa313864
* gscreen.c: Added it here too. * glayout.c: Add File-new option here * gcmd.c (gnome_newfile_cmd): Added new routine. Invoke when you want to create a new file.
27 lines
547 B
C
27 lines
547 B
C
#ifndef __GSCREEN_H
|
|
#define __GSCREEN_H
|
|
|
|
|
|
/* GnomeUIInfo information for view types */
|
|
extern GnomeUIInfo panel_view_menu_uiinfo[];
|
|
extern GnomeUIInfo panel_view_toolbar_uiinfo[];
|
|
|
|
WPanel *create_container (Dlg_head *h, const char *str, const char *geometry);
|
|
|
|
gpointer *copy_uiinfo_widgets (GnomeUIInfo *uiinfo);
|
|
|
|
typedef struct {
|
|
int splitted;
|
|
|
|
WPanel *panel;
|
|
|
|
enum view_modes other_display;
|
|
Widget *other;
|
|
} PanelContainer;
|
|
|
|
extern PanelContainer *current_panel_ptr, *other_panel_ptr;
|
|
extern GList *containers;
|
|
|
|
|
|
#endif /* __GSCREEN_H */
|