1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
/* fm-list-model.h - a GtkTreeModel for file lists.
*
* Copyright (C) 2001, 2002 Anders Carlsson
* Copyright (C) 2003, Soeren Sandmann
* Copyright (C) 2004, Novell, Inc.
*
* The Gnome Library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public License as
* published by the Free Software Foundation, Inc.,; either version 2 of the
* License, or (at your option) any later version.
*
* The Gnome Library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with the Gnome Library; see the file COPYING.LIB. If not,
* write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor
* Boston, MA 02110-1335 USA.
*
* Authors: Anders Carlsson <andersca@gnu.org>,
* Soeren Sandmann (sandmann@daimi.au.dk),
* Dave Camp <dave@ximian.com>
*/
#include <gtk/gtk.h>
#include <gdk/gdk.h>
#include "gof-file.h"
#include "pantheon-files-core.h"
#ifndef FM_LIST_MODEL_H
#define FM_LIST_MODEL_H
#define FM_TYPE_LIST_MODEL fm_list_model_get_type()
#define FM_LIST_MODEL(obj) \
(G_TYPE_CHECK_INSTANCE_CAST ((obj), FM_TYPE_LIST_MODEL, FMListModel))
#define FM_LIST_MODEL_CLASS(klass) \
(G_TYPE_CHECK_CLASS_CAST ((klass), FM_TYPE_LIST_MODEL, FMListModelClass))
#define FM_IS_LIST_MODEL(obj) \
(G_TYPE_CHECK_INSTANCE_TYPE ((obj), FM_TYPE_LIST_MODEL))
#define FM_IS_LIST_MODEL_CLASS(klass) \
(G_TYPE_CHECK_CLASS_TYPE ((klass), FM_TYPE_LIST_MODEL))
#define FM_LIST_MODEL_GET_CLASS(obj) \
(G_TYPE_INSTANCE_GET_CLASS ((obj), FM_TYPE_LIST_MODEL, FMListModelClass))
enum {
FM_LIST_MODEL_FILE_COLUMN,
FM_LIST_MODEL_COLOR,
FM_LIST_MODEL_PIXBUF,
FM_LIST_MODEL_FILENAME,
FM_LIST_MODEL_SIZE,
FM_LIST_MODEL_TYPE,
FM_LIST_MODEL_MODIFIED,
FM_LIST_MODEL_NUM_COLUMNS
};
typedef struct FMListModelDetails FMListModelDetails;
typedef struct FMListModel {
GObject parent_instance;
FMListModelDetails *details;
} FMListModel;
typedef struct {
GObjectClass parent_class;
void (* subdirectory_unloaded)(FMListModel *model, GOFDirectoryAsync *subdirectory);
} FMListModelClass;
GType fm_list_model_get_type (void);
gboolean fm_list_model_add_file (FMListModel *model, GOFFile *file, GOFDirectoryAsync *directory);
void fm_list_model_file_changed (FMListModel *model, GOFFile *file, GOFDirectoryAsync *directory);
gboolean fm_list_model_is_empty (FMListModel *model);
guint fm_list_model_get_length (FMListModel *model);
gboolean fm_list_model_remove_file (FMListModel *model,
GOFFile *file,
GOFDirectoryAsync *directory);
void fm_list_model_clear (FMListModel *model);
gboolean fm_list_model_get_tree_iter_from_file (FMListModel *model,
GOFFile *file,
GOFDirectoryAsync *directory,
GtkTreeIter *iter);
GList * fm_list_model_get_all_iters_for_file (FMListModel *model, GOFFile *file);
gboolean fm_list_model_get_first_iter_for_file (FMListModel *model, GOFFile *file, GtkTreeIter *iter);
void fm_list_model_set_should_sort_directories_first (FMListModel *model, gboolean sort_directories_first);
GOFFile * fm_list_model_file_for_path (FMListModel *model, GtkTreePath *path);
GOFFile * fm_list_model_file_for_iter (FMListModel *model, GtkTreeIter *iter);
gboolean fm_list_model_get_directory_file (FMListModel *model, GtkTreePath *path,
GOFDirectoryAsync **directory, GOFFile **file);
gboolean fm_list_model_load_subdirectory (FMListModel *model, GtkTreePath *path, GOFDirectoryAsync **directory);
void fm_list_model_unload_subdirectory (FMListModel *model, GtkTreeIter *iter);
const gchar *fm_list_model_get_string_from_column_id (gint id);
gint fm_list_model_get_column_id_from_string (const gchar *colstr);
#endif /* FM_LIST_MODEL_H */
|