mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-19 18:00:09 +00:00
Add a constructor to filesystem model that does not monitor a directory
This is in preparation for switching search and recent models to use GtkFileSystemModel
This commit is contained in:
parent
10e8d6abca
commit
affa8c8459
@ -6927,7 +6927,7 @@ set_list_model (GtkFileChooserDefault *impl,
|
||||
gtk_tree_view_set_model (GTK_TREE_VIEW (impl->browse_files_tree_view), NULL);
|
||||
|
||||
impl->browse_files_model =
|
||||
_gtk_file_system_model_new (impl->current_folder,
|
||||
_gtk_file_system_model_new_for_directory (impl->current_folder,
|
||||
MODEL_ATTRIBUTES,
|
||||
file_system_model_set,
|
||||
impl,
|
||||
|
@ -1136,22 +1136,70 @@ gtk_file_system_model_set_directory (GtkFileSystemModel *model,
|
||||
|
||||
}
|
||||
|
||||
static GtkFileSystemModel *
|
||||
_gtk_file_system_model_new_valist (GtkFileSystemModelGetValue get_func,
|
||||
gpointer get_data,
|
||||
guint n_columns,
|
||||
va_list args)
|
||||
{
|
||||
GtkFileSystemModel *model;
|
||||
|
||||
model = g_object_new (GTK_TYPE_FILE_SYSTEM_MODEL, NULL);
|
||||
model->get_func = get_func;
|
||||
model->get_data = get_data;
|
||||
|
||||
gtk_file_system_model_set_n_columns (model, n_columns, args);
|
||||
|
||||
return model;
|
||||
}
|
||||
|
||||
/**
|
||||
* _gtk_file_system_model_new:
|
||||
* @get_func: function to call for getting a value
|
||||
* @get_data: user data argument passed to @get_func
|
||||
* @n_columns: number of columns
|
||||
* @...: @n_columns #GType types for the columns
|
||||
*
|
||||
* Creates a new #GtkFileSystemModel object. You need to add files
|
||||
* to the list using _gtk_file_system_model_add_file().
|
||||
*
|
||||
* Return value: the newly created #GtkFileSystemModel
|
||||
**/
|
||||
GtkFileSystemModel *
|
||||
_gtk_file_system_model_new (GtkFileSystemModelGetValue get_func,
|
||||
gpointer get_data,
|
||||
guint n_columns,
|
||||
...)
|
||||
{
|
||||
GtkFileSystemModel *model;
|
||||
va_list args;
|
||||
|
||||
g_return_val_if_fail (get_func != NULL, NULL);
|
||||
g_return_val_if_fail (n_columns > 0, NULL);
|
||||
|
||||
va_start (args, n_columns);
|
||||
model = _gtk_file_system_model_new_valist (get_func, get_data, n_columns, args);
|
||||
va_end (args);
|
||||
|
||||
return model;
|
||||
}
|
||||
|
||||
/**
|
||||
* _gtk_file_system_model_new_for_directory:
|
||||
* @directory: the directory to show.
|
||||
* @attributes: attributes to immediately load or %NULL for all
|
||||
* @error: location to store error, or %NULL.
|
||||
*
|
||||
* Creates a new #GtkFileSystemModel object. The #GtkFileSystemModel
|
||||
* object wraps the given @directory as a #GtkTreeModel.
|
||||
* The model will query the given @attributes immediately and only add
|
||||
* files with those attributes present.
|
||||
* The model will query the given directory with the given @attributes
|
||||
* and add all files inside the directory automatically. If supported,
|
||||
* it will also monitor the drectory and update the model's
|
||||
* contents to reflect changes, if the @directory supports monitoring.
|
||||
*
|
||||
* Return value: the newly created #GtkFileSystemModel object, or NULL if there
|
||||
* was an error.
|
||||
* Return value: the newly created #GtkFileSystemModel
|
||||
**/
|
||||
GtkFileSystemModel *
|
||||
_gtk_file_system_model_new (GFile * dir,
|
||||
_gtk_file_system_model_new_for_directory (GFile * dir,
|
||||
const gchar * attributes,
|
||||
GtkFileSystemModelGetValue get_func,
|
||||
gpointer get_data,
|
||||
@ -1162,13 +1210,11 @@ _gtk_file_system_model_new (GFile * dir,
|
||||
va_list args;
|
||||
|
||||
g_return_val_if_fail (G_IS_FILE (dir), NULL);
|
||||
|
||||
model = g_object_new (GTK_TYPE_FILE_SYSTEM_MODEL, NULL);
|
||||
model->get_func = get_func;
|
||||
model->get_data = get_data;
|
||||
g_return_val_if_fail (get_func != NULL, NULL);
|
||||
g_return_val_if_fail (n_columns > 0, NULL);
|
||||
|
||||
va_start (args, n_columns);
|
||||
gtk_file_system_model_set_n_columns (model, n_columns, args);
|
||||
model = _gtk_file_system_model_new_valist (get_func, get_data, n_columns, args);
|
||||
va_end (args);
|
||||
|
||||
gtk_file_system_model_set_directory (model, dir, attributes);
|
||||
|
@ -42,7 +42,11 @@ typedef gboolean (*GtkFileSystemModelGetValue) (GtkFileSystemModel *model,
|
||||
GValue *value,
|
||||
gpointer user_data);
|
||||
|
||||
GtkFileSystemModel *_gtk_file_system_model_new (GFile * dir,
|
||||
GtkFileSystemModel *_gtk_file_system_model_new (GtkFileSystemModelGetValue get_func,
|
||||
gpointer get_data,
|
||||
guint n_columns,
|
||||
...);
|
||||
GtkFileSystemModel *_gtk_file_system_model_new_for_directory(GFile * dir,
|
||||
const gchar * attributes,
|
||||
GtkFileSystemModelGetValue get_func,
|
||||
gpointer get_data,
|
||||
|
Loading…
Reference in New Issue
Block a user