Top | ![]() |
![]() |
![]() |
![]() |
GalViewCollection * | gal_view_collection_new () |
const gchar * | gal_view_collection_get_system_directory () |
const gchar * | gal_view_collection_get_user_directory () |
gint | gal_view_collection_get_count () |
GalView * | gal_view_collection_get_view () |
GalViewCollectionItem * | gal_view_collection_get_view_item () |
gint | gal_view_collection_get_view_index_by_id () |
void | gal_view_collection_delete_view () |
void | gal_view_collection_save () |
GalView * | gal_view_collection_load_view_from_file () |
const gchar * | gal_view_collection_append_with_title () |
const gchar * | gal_view_collection_set_nth_view () |
const gchar * | gal_view_collection_get_default_view () |
GalViewCollection * gal_view_collection_new (const gchar *system_directory
,const gchar *user_directory
);
gal_view_collection_new
is deprecated and should not be used in newly-written code.
Creates a GalViewCollection and loads ".galview" files from
system_directory
and user_directory
.
const gchar *
gal_view_collection_get_system_directory
(GalViewCollection *collection
);
gal_view_collection_get_system_directory
is deprecated and should not be used in newly-written code.
Returns the directory from which built-in views were loaded.
const gchar *
gal_view_collection_get_user_directory
(GalViewCollection *collection
);
gal_view_collection_get_user_directory
is deprecated and should not be used in newly-written code.
Returns the directory from which user-created views were loaded.
gint
gal_view_collection_get_count (GalViewCollection *collection
);
gal_view_collection_get_count
is deprecated and should not be used in newly-written code.
Calculates the number of views in the given collection.
GalView * gal_view_collection_get_view (GalViewCollection *collection
,gint n
);
gal_view_collection_get_view
is deprecated and should not be used in newly-written code.
GalViewCollectionItem * gal_view_collection_get_view_item (GalViewCollection *collection
,gint n
);
gal_view_collection_get_view_item
is deprecated and should not be used in newly-written code.
gint gal_view_collection_get_view_index_by_id (GalViewCollection *collection
,const gchar *view_id
);
gal_view_collection_get_view_index_by_id
is deprecated and should not be used in newly-written code.
void gal_view_collection_delete_view (GalViewCollection *collection
,gint i
);
gal_view_collection_delete_view
is deprecated and should not be used in newly-written code.
void
gal_view_collection_save (GalViewCollection *collection
);
gal_view_collection_save
is deprecated and should not be used in newly-written code.
Saves the data to the user directory specified in set storage directories. This is primarily for internal use by other parts of gal_view.
GalView * gal_view_collection_load_view_from_file (GalViewCollection *collection
,const gchar *type
,const gchar *filename
);
gal_view_collection_load_view_from_file
is deprecated and should not be used in newly-written code.
const gchar * gal_view_collection_append_with_title (GalViewCollection *collection
,const gchar *title
,GalView *view
);
gal_view_collection_append_with_title
is deprecated and should not be used in newly-written code.
const gchar * gal_view_collection_set_nth_view (GalViewCollection *collection
,gint i
,GalView *view
);
gal_view_collection_set_nth_view
is deprecated and should not be used in newly-written code.
struct GalViewCollectionItem { GalView *view; gchar *id; gboolean changed; gboolean ever_changed; gboolean built_in; gchar *filename; gchar *title; gchar *type; GalViewCollection *collection; guint view_changed_id; gchar *accelerator; };
GalViewCollectionItem
is deprecated and should not be used in newly-written code.