Skip to content

Commit

Permalink
Add an "Open containing folder" command
Browse files Browse the repository at this point in the history
  • Loading branch information
kitallis authored and raveit65 committed Jul 3, 2018
1 parent 1333035 commit 07de875
Show file tree
Hide file tree
Showing 3 changed files with 58 additions and 0 deletions.
1 change: 1 addition & 0 deletions data/eom-toolbar.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<available>
<toolitem name="ImageOpen"/>
<toolitem name="ImageSave"/>
<toolitem name="ImageOpenContainingFolder"/>
<toolitem name="ImagePrint"/>
<toolitem name="ImageProperties"/>
<toolitem name="ViewImageCollection"/>
Expand Down
3 changes: 3 additions & 0 deletions data/eom-ui.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
<menuitem action="ImagePrint"/>
<separator/>
<menuitem action="ImageSetAsWallpaper"/>
<menuitem action="ImageOpenContainingFolder"/>
<separator/>
<menuitem action="ImageProperties"/>
<separator/>
Expand Down Expand Up @@ -121,6 +122,7 @@
<separator/>
<menuitem action="ImageProperties"/>
<menuitem action="ImageSetAsWallpaper"/>
<menuitem action="ImageOpenContainingFolder"/>
</popup>

<popup name="ViewPopup">
Expand All @@ -139,6 +141,7 @@
<separator/>
<menuitem action="ImageProperties"/>
<menuitem action="ImageSetAsWallpaper"/>
<menuitem action="ImageOpenContainingFolder"/>
</popup>

<popup name="ToolbarPopup" action="ToolbarPopupAction">
Expand Down
54 changes: 54 additions & 0 deletions src/eom-window.c
Original file line number Diff line number Diff line change
Expand Up @@ -2953,6 +2953,54 @@ eom_window_cmd_save_as (GtkAction *action, gpointer user_data)
eom_job_queue_add_job (priv->save_job);
}

static void
eom_window_cmd_open_containing_folder (GtkAction *action, gpointer user_data)
{
EomWindow *window = EOM_WINDOW (user_data);
EomWindowPrivate *priv;

GtkWidget *eom_window_widget;

GFile *file;
GFile *parent = NULL;

eom_window_widget = GTK_WIDGET (window);
priv = window->priv;

g_return_if_fail (priv->image != NULL);

file = eom_image_get_file (priv->image);

if (file) {
parent = g_file_get_parent (file);
g_object_unref(file);
}

if (parent) {
char *parent_uri;

parent_uri = g_file_get_uri (parent);
if (parent_uri) {
GdkScreen *screen;
guint32 timestamp;
GError *error;

screen = gtk_widget_get_screen (eom_window_widget);
timestamp = gtk_get_current_event_time ();

error = NULL;
if (!gtk_show_uri (screen, parent_uri, timestamp, &error)) {
eom_debug_message (DEBUG_WINDOW, "Could not open the containing folder");
g_error_free (error);
}

g_free (parent_uri);
}

g_object_unref(parent);
}
}

static void
eom_window_cmd_print (GtkAction *action, gpointer user_data)
{
Expand Down Expand Up @@ -3651,6 +3699,9 @@ static const GtkActionEntry action_entries_image[] = {
{ "ImageSaveAs", "document-save-as", N_("Save _As…"), "<control><shift>s",
N_("Save the selected images with a different name"),
G_CALLBACK (eom_window_cmd_save_as) },
{ "ImageOpenContainingFolder", GTK_STOCK_DIRECTORY, N_("Open Containing _Folder"), NULL,
N_("Show the folder which contains this file in the file manager"),
G_CALLBACK (eom_window_cmd_open_containing_folder) },
{ "ImagePrint", "document-print", N_("_Print…"), "<control>p",
N_("Print the selected image"),
G_CALLBACK (eom_window_cmd_print) },
Expand Down Expand Up @@ -3824,6 +3875,9 @@ set_action_properties (GtkActionGroup *window_group,
action = gtk_action_group_get_action (image_group, "EditRotate270");
g_object_set (action, "short_label", _("Left"), NULL);

action = gtk_action_group_get_action (image_group, "ImageOpenContainingFolder");
g_object_set (action, "short_label", _("Open Folder"), NULL);

action = gtk_action_group_get_action (image_group, "ViewZoomIn");
g_object_set (action, "short_label", _("In"), NULL);

Expand Down

0 comments on commit 07de875

Please sign in to comment.