X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=blobdiff_plain;f=shell%2Fev-window.c;h=40fb7000c155e79009d2dc1a173c676c98b03cd3;hb=9b576bb1b5c4f6f3707144ad05b0d04f67efd953;hp=89d18d997863c792ca245cf7ebd2140f681f0b63;hpb=6ac3eb8adb9f4bb8c59c832e7d83334243d90cd5;p=evince.git diff --git a/shell/ev-window.c b/shell/ev-window.c index 89d18d99..40fb7000 100644 --- a/shell/ev-window.c +++ b/shell/ev-window.c @@ -2862,6 +2862,12 @@ ev_window_cmd_save_as (GtkAction *action, EvWindow *ev_window) gtk_widget_show (fc); } +static void +ev_window_cmd_open_containing_folder (GtkAction *action, EvWindow *ev_window) +{ + /* FIXME */ +} + static GKeyFile * get_print_settings_file (void) { @@ -5406,6 +5412,9 @@ static const GtkActionEntry entries[] = { { "FileSaveAs", GTK_STOCK_SAVE_AS, N_("_Save a Copy…"), "S", N_("Save a copy of the current document"), G_CALLBACK (ev_window_cmd_save_as) }, + { "FileOpenContainingFolder", GTK_STOCK_DIRECTORY, N_("Open Containing _Folder"), NULL, + N_("Show the folder which contains this file in the file manager"), + G_CALLBACK (ev_window_cmd_open_containing_folder) }, { "FilePrint", GTK_STOCK_PRINT, N_("_Print…"), "P", N_("Print this document"), G_CALLBACK (ev_window_cmd_file_print) },