/* vi:set et ai sw=2 sts=2 ts=2: */ /*- * Copyright (c) 2005-2006 Benedikt Meurer * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library 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 * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ #if !defined(THUNARX_INSIDE_THUNARX_H) && !defined(THUNARX_COMPILATION) #error "Only can be included directly, this file may disappear or change contents" #endif #ifndef __THUNARX_MENU_PROVIDER_H__ #define __THUNARX_MENU_PROVIDER_H__ #include #include G_BEGIN_DECLS typedef struct _ThunarxMenuProviderIface ThunarxMenuProviderIface; typedef struct _ThunarxMenuProvider ThunarxMenuProvider; #define THUNARX_TYPE_MENU_PROVIDER (thunarx_menu_provider_get_type ()) #define THUNARX_MENU_PROVIDER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), THUNARX_TYPE_MENU_PROVIDER, ThunarxMenuProvider)) #define THUNARX_IS_MENU_PROVIDER(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), THUNARX_TYPE_MENU_PROVIDER)) #define THUNARX_MENU_PROVIDER_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), THUNARX_TYPE_MENU_PROVIDER, ThunarxMenuProviderIface)) /** * ThunarxMenuProviderIface: * @get_file_menu_items: See thunarx_menu_provider_get_file_menu_items(). * @get_folder_menu_items: See thunarx_menu_provider_get_folder_menu_items(). * @get_dnd_menu_items: See thunarx_menu_provider_get_dnd_menu_items(). * * Interface with virtual methods implemented by extensions that provide * additional menu items for the file manager's context menus. * Providers don't need to implement all of the virtual methods listed in * the interface. */ struct _ThunarxMenuProviderIface { /*< private >*/ GTypeInterface __parent__; /*< public >*/ GList *(*get_file_menu_items) (ThunarxMenuProvider *provider, GtkWidget *window, GList *files); GList *(*get_folder_menu_items) (ThunarxMenuProvider *provider, GtkWidget *window, ThunarxFileInfo *folder); GList *(*get_dnd_menu_items) (ThunarxMenuProvider *provider, GtkWidget *window, ThunarxFileInfo *folder, GList *files); /*< private >*/ void (*reserved1) (void); void (*reserved2) (void); void (*reserved3) (void); }; GType thunarx_menu_provider_get_type (void) G_GNUC_CONST; GList *thunarx_menu_provider_get_file_menu_items (ThunarxMenuProvider *provider, GtkWidget *window, GList *files) G_GNUC_MALLOC G_GNUC_WARN_UNUSED_RESULT; GList *thunarx_menu_provider_get_folder_menu_items (ThunarxMenuProvider *provider, GtkWidget *window, ThunarxFileInfo *folder) G_GNUC_MALLOC G_GNUC_WARN_UNUSED_RESULT; GList *thunarx_menu_provider_get_dnd_menu_items (ThunarxMenuProvider *provider, GtkWidget *window, ThunarxFileInfo *folder, GList *files) G_GNUC_MALLOC G_GNUC_WARN_UNUSED_RESULT; G_END_DECLS #endif /* !__THUNARX_MENU_PROVIDER_H__ */