NautilusColumn

NautilusColumn — List view column descriptor object

Functions

Types and Values

Includes

#include <nautilus-extension.h>

Description

NautilusColumn is an object that describes a column in the file manager list view. Extensions can provide NautilusColumn by registering a NautilusColumnProvider and returning them from nautilus_column_provider_get_columns(), which will be called by the main application when creating a view.

Functions

nautilus_column_new ()

NautilusColumn *
nautilus_column_new (const char *name,
                     const char *attribute,
                     const char *label,
                     const char *description);

Parameters

name

identifier of the column.

[not nullable]

attribute

the file attribute to be displayed in the column.

[not nullable]

label

the user-visible label for the column.

[not nullable]

description

a user-visible description of the column.

[not nullable]

Returns

a new NautilusColumn.

[transfer full]

Types and Values

NautilusColumn

typedef struct _NautilusColumn NautilusColumn;