![]() |
![]() |
![]() |
Nautilus Extension Reference Manual | ![]() |
---|---|---|---|---|
Top | Description | Object Hierarchy | Properties |
#include <libnautilus-extension/nautilus-property-page.h> struct NautilusPropertyPage; NautilusPropertyPage * nautilus_property_page_new (const char *name
,GtkWidget *label
,GtkWidget *page
);
"label" GtkWidget* : Read / Write "name" gchar* : Read / Write / Construct Only "page" GtkWidget* : Read / Write
NautilusPropertyPage is an object that describes a page in the file
properties dialog. Extensions can provide NautilusPropertyPage objects
by registering a NautilusPropertyPageProvider and returning them from
nautilus_property_page_provider_get_pages()
, which will be called by the
main application when creating file properties dialogs.
NautilusPropertyPage * nautilus_property_page_new (const char *name
,GtkWidget *label
,GtkWidget *page
);
Creates a new NautilusPropertyPage from page_widget.
|
the identifier for the property page |
|
the user-visible label of the property page |
|
the property page to display |
Returns : |
a newly created NautilusPropertyPage |