mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 12:56:51 +03:00
1370e6c166
Miguel. 1999-02-15 Miguel de Icaza <miguel@nuclecu.unam.mx> * gcmd.c (gnome_open_terminal_with_cmd): New routine, based on the gnome_open_terminal routine, that will allow the user to specify a command to execute (used internally). * gaction.c (gmc_edit_filename): Support for the GNOME editor environment properties. * gdesktop.c (create_desktop_dir): Support GNOME_DESKTOP_DIR variable to configure the desktop directory.
26 lines
1.3 KiB
C
26 lines
1.3 KiB
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_open_terminal_with_cmd (const char *command);
|
|
void gnome_about_cmd (void);
|
|
void gnome_quit_cmd (void);
|
|
void gnome_open_panel (GtkWidget *widget, WPanel *panel);
|
|
void 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_filter_cmd (GtkWidget *widget, WPanel *panel);
|
|
void gnome_external_panelize (GtkWidget *widget, WPanel *panel);
|
|
void gnome_open_files (GtkWidget *widget, WPanel *panel);
|
|
void gnome_run_new (GtkWidget *widget, GnomeDesktopEntry *gde);
|
|
void gnome_mkdir_cmd (GtkWidget *widget, WPanel *panel);
|
|
void gnome_reverse_selection_cmd_panel (WPanel *panel);
|
|
|
|
#endif /* __GCMD_H */
|