mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 12:56:51 +03:00
e265fe2067
* glayout.c (file_menu): Use view_cmd and view_simple_cmd in the menu instead of panel_action_view and panel_action_view_unfiltered, respectively. * gpopup.c (create_regexp_actions): Create the menu items using gnome-app-helper, for visual consistency. (create_actions): Likewise. Also, fixed S_ISLNK() confusion. (get_label_text): Extract the label from the GnomeUIInfo item in an ugly way.
20 lines
341 B
C
20 lines
341 B
C
#ifndef __GSCREEN_H
|
|
#define __GSCREEN_H
|
|
|
|
|
|
WPanel *create_container (Dlg_head *h, char *str, char *geometry);
|
|
|
|
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 */
|