/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ /* * Pix * * Copyright (C) 2009 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #include #include #include #include #include #include "actions.h" #include "callbacks.h" static const GActionEntry actions[] = { { "resize-images", gth_browser_activate_resize_images } }; static const GthMenuEntry action_entries[] = { { N_("Resize Images…"), "win.resize-images", NULL, "image-resize-symbolic" } }; void ri__gth_browser_construct_cb (GthBrowser *browser) { g_return_if_fail (GTH_IS_BROWSER (browser)); g_action_map_add_action_entries (G_ACTION_MAP (browser), actions, G_N_ELEMENTS (actions), browser); gth_menu_manager_append_entries (gth_browser_get_menu_manager (browser, GTH_BROWSER_MENU_MANAGER_TOOLS), action_entries, G_N_ELEMENTS (action_entries)); } void ri__gth_browser_selection_changed_cb (GthBrowser *browser, int n_selected) { gth_window_enable_action (GTH_WINDOW (browser), "resize-images", n_selected > 0); }