/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ /* * Pix * * Copyright (C) 2010 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 #include "actions.h" #include "callbacks.h" static const GActionEntry actions[] = { { "export-flickr", gth_browser_activate_export_flickr }, { "import-flickr", gth_browser_activate_import_flickr } }; void fl__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_entry (gth_browser_get_menu_manager (browser, GTH_BROWSER_MENU_MANAGER_WEB_EXPORTERS), GTH_MENU_MANAGER_NEW_MERGE_ID, "Flickr…", "win.export-flickr", NULL, "site-flickr"); gth_menu_manager_append_entry (gth_browser_get_menu_manager (browser, GTH_BROWSER_MENU_MANAGER_WEB_IMPORTERS), GTH_MENU_MANAGER_NEW_MERGE_ID, "Flickr…", "win.import-flickr", NULL, "site-flickr"); }