NautilusPropertyPage

NautilusPropertyPage — Property page descriptor object

Functions

Types and Values

Includes

#include <libnautilus-extension/nautilus-property-page.h>

Description

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.

Functions

nautilus_property_page_new ()

NautilusPropertyPage *
nautilus_property_page_new (const char *name,
                            GtkWidget *label,
                            GtkWidget *page);

Creates a new NautilusPropertyPage from page_widget.

Parameters

name

the identifier for the property page

 

label

the user-visible label of the property page

 

page

the property page to display

 

Returns

a newly created NautilusPropertyPage

Types and Values

struct NautilusPropertyPage

struct NautilusPropertyPage {
	GObject parent;

	NautilusPropertyPageDetails *details;
};