mirror of https://github.com/MidnightCommander/mc
23 lines
609 B
C
23 lines
609 B
C
#ifndef __GSCREEN_H
|
|
#define __GSCREEN_H
|
|
|
|
void x_panel_set_size (int index);
|
|
void x_create_panel (Dlg_head *h, widget_data parent, WPanel *panel);
|
|
void x_adjust_top_file (WPanel *panel);
|
|
void x_filter_changed (WPanel *panel);
|
|
void x_add_sort_label (WPanel *panel, int index, char *text, char *tag, void *sr);
|
|
void x_sort_label_start (WPanel *panel);
|
|
void x_reset_sort_labels (WPanel *panel);
|
|
|
|
typedef struct {
|
|
GtkWidget *table;
|
|
GtkWidget *list;
|
|
GtkWidget *current_dir;
|
|
GtkWidget *filter;
|
|
GtkWidget *status;
|
|
} g_panel_contents;
|
|
|
|
WPanel *create_container (Dlg_head *h, char *str);
|
|
|
|
#endif /* __GSCREEN_H */
|