1998-02-27 07:54:42 +03:00
|
|
|
#ifndef __GSCREEN_H
|
|
|
|
#define __GSCREEN_H
|
|
|
|
|
1998-03-14 03:42:23 +03:00
|
|
|
void panel_action_view_unfiltered (GtkWidget *widget, WPanel *panel);
|
|
|
|
void panel_action_view (GtkWidget *widget, WPanel *panel);
|
|
|
|
|
1998-03-01 04:29:42 +03:00
|
|
|
WPanel *create_container (Dlg_head *h, char *str);
|
1998-03-07 03:05:06 +03:00
|
|
|
void panel_file_list_configure_contents (GtkWidget *file_list, WPanel *panel, int main_width, int height);
|
1998-03-01 04:29:42 +03:00
|
|
|
|
1998-03-04 09:28:35 +03:00
|
|
|
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;
|
|
|
|
|
1998-02-27 07:54:42 +03:00
|
|
|
#endif /* __GSCREEN_H */
|