![]() |
![]() |
![]() |
Exo Reference Manual | ![]() |
---|---|---|---|---|
Top | Description |
#include <exo/exo.h> ExoToolbarsView; GtkWidget * exo_toolbars_view_new (GtkUIManager *ui_manager
); GtkWidget * exo_toolbars_view_new_with_model (GtkUIManager *ui_manager
,ExoToolbarsModel *model
); gboolean exo_toolbars_view_get_editing (ExoToolbarsView *view
); void exo_toolbars_view_set_editing (ExoToolbarsView *view
,gboolean editing
); ExoToolbarsModel * exo_toolbars_view_get_model (ExoToolbarsView *view
); void exo_toolbars_view_set_model (ExoToolbarsView *view
,ExoToolbarsModel *model
); GtkUIManager * exo_toolbars_view_get_ui_manager (ExoToolbarsView *view
); void exo_toolbars_view_set_ui_manager (ExoToolbarsView *view
,GtkUIManager *ui_manager
);
typedef struct _ExoToolbarsView ExoToolbarsView;
The ExoToolbarsView struct contains only private fields and should not be directly accessed.
GtkWidget * exo_toolbars_view_new (GtkUIManager *ui_manager
);
Creates a new ExoToolbarsView.
|
A GtkUIManager. |
Returns : |
A newly created ExoToolbarsView. |
GtkWidget * exo_toolbars_view_new_with_model (GtkUIManager *ui_manager
,ExoToolbarsModel *model
);
Creates a new ExoToolbarsView and associates it with
model
.
|
A GtkUIManager. |
|
An ExoToolbarsModel. |
Returns : |
A newly created ExoToolbarsView. |
gboolean exo_toolbars_view_get_editing (ExoToolbarsView *view
);
Gets wether view
is currently being edited.
|
An ExoToolbarsView. |
Returns : |
TRUE if view is currently being edited, else FALSE . |
void exo_toolbars_view_set_editing (ExoToolbarsView *view
,gboolean editing
);
Sets wether view
is currently being edited.
|
An ExoToolbarsView. |
|
New editing mode. |
ExoToolbarsModel * exo_toolbars_view_get_model (ExoToolbarsView *view
);
Returns the ExoToolbarsModel currently associated with
view
or NULL
if view
has no model.
|
An ExoToolbarsView. |
Returns : |
The ExoToolbarsModel associated with view . |
void exo_toolbars_view_set_model (ExoToolbarsView *view
,ExoToolbarsModel *model
);
Set the ExoToolbarsModel currently associated with
view
or NULL
to disconnect from the active model.
|
An ExoToolbarsView. |
|
An ExoToolbarsModel or NULL . |
GtkUIManager * exo_toolbars_view_get_ui_manager (ExoToolbarsView *view
);
Returns the GtkUIManager currently associated with view
or NULL
is
no ui-manager has been set.
|
An ExoToolbarsView. |
Returns : |
The GtkUIManager associated with view or NULL . |
void exo_toolbars_view_set_ui_manager (ExoToolbarsView *view
,GtkUIManager *ui_manager
);
Set the GtkUIManager currently associated with view
or NULL
to disconnect from the current ui-manager.
|
An ExoToolbarsView. |
|
A GtkUIManager or NULL . |