Top |
CajaPropertyPageProvider allows extension to provide additional pages for the file properties dialog.
GList * caja_property_page_provider_get_pages (CajaPropertyPageProvider *provider
,GList *files
);
This function is called by Caja when it wants property page items from the extension.
This function is called in the main thread before a property page is shown, so it should return quickly.
struct CajaPropertyPageProviderIface { GTypeInterface g_iface; GList *(*get_pages) (CajaPropertyPageProvider *provider, GList *files); };
Interface for extensions to provide additional property pages.
Returns a GList of CajaPropertyPage.
See |