mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 21:06:52 +03:00
c928adcfc0
* glayout.c: menu changes. * gcmd.c (gnome_external_panelize): new function. Does absolutely nothing yet but look pretty (and it doesn't do that all that well, yet...) I'll hook it up to it's actual functions, tomorrow.
20 lines
837 B
C
20 lines
837 B
C
#ifndef __GCMD_H
|
|
#define __GCMD_H
|
|
|
|
void gnome_listing_cmd (GtkWidget *widget, WPanel *panel);
|
|
void gnome_compare_panels (void);
|
|
void gnome_open_terminal (void);
|
|
void gnome_about_cmd (void);
|
|
void gnome_quit_cmd (void);
|
|
void gnome_open_panel (GtkWidget *widget, WPanel *panel);
|
|
int gnome_close_panel (GtkWidget *widget, WPanel *panel);
|
|
void gnome_icon_view_cmd (GtkWidget *widget, WPanel *panel);
|
|
void gnome_partial_view_cmd (GtkWidget *widget, WPanel *panel);
|
|
void gnome_full_view_cmd (GtkWidget *widget, WPanel *panel);
|
|
void gnome_custom_view_cmd (GtkWidget *widget, WPanel *panel);
|
|
void gnome_sort_cmd (GtkWidget *widget, WPanel *panel);
|
|
void gnome_select_all_cmd (GtkWidget *widget, WPanel *panel);
|
|
void gnome_external_panelize (GtkWidget *widget, WPanel *panel);
|
|
|
|
#endif /* __GCMD_H */
|