| Top |
PeonyPropertyPageProviderPeonyPropertyPageProvider — Interface to provide additional property pages |
PeonyPropertyPageProvider allows extension to provide additional pages for the file properties dialog.
GList * peony_property_page_provider_get_pages (PeonyPropertyPageProvider *provider,GList *files);
This function is called by Peony 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.
A GList of allocated PeonyPropertyPage items.
[element-type PeonyPropertyPage][transfer full]
struct PeonyPropertyPageProviderIface {
GTypeInterface g_iface;
GList *(*get_pages) (PeonyPropertyPageProvider *provider,
GList *files);
};
Interface for extensions to provide additional property pages.
Returns a GList of PeonyPropertyPage.
See |