1 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
4 * Copyright (C) Johannes Schmid 2007 <jhs@gnome.org>
6 * file-manager is free software.
8 * You may redistribute it and/or modify it under the terms of the
9 * GNU General Public License, as published by the Free Software
10 * Foundation; either version 2 of the License, or (at your option)
13 * file-manager is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
16 * See the GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with file-manager. If not, write to:
20 * The Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor
22 * Boston, MA 02110-1301, USA.
28 #include <gtk/gtktreeview.h>
32 #define ANJUTA_TYPE_FILE_VIEW (file_view_get_type ())
33 #define ANJUTA_FILE_VIEW(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), ANJUTA_TYPE_FILE_VIEW, AnjutaFileView))
34 #define ANJUTA_FILE_VIEW_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), ANJUTA_TYPE_FILE_VIEW, AnjutaFileViewClass))
35 #define ANJUTA_IS_FILE_VIEW(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), ANJUTA_TYPE_FILE_VIEW))
36 #define ANJUTA_IS_FILE_VIEW_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), ANJUTA_TYPE_FILE_VIEW))
37 #define ANJUTA_FILE_VIEW_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), ANJUTA_TYPE_FILE_VIEW, AnjutaFileViewClass))
39 typedef struct _AnjutaFileViewClass AnjutaFileViewClass
;
40 typedef struct _AnjutaFileView AnjutaFileView
;
42 struct _AnjutaFileViewClass
44 GtkTreeViewClass parent_class
;
47 void (*file_open
) (AnjutaFileView
* view
,
49 void (*show_popup_menu
) (AnjutaFileView
* view
,
54 void (*current_uri_changed
) (AnjutaFileView
* view
,
58 struct _AnjutaFileView
60 GtkTreeView parent_instance
;
63 GType
file_view_get_type (void) G_GNUC_CONST
;
64 GtkWidget
* file_view_new (void);
67 file_view_refresh(AnjutaFileView
* view
,
68 gboolean remember_open
);
71 file_view_get_selected (AnjutaFileView
* view
);
75 #endif /* _FILE_VIEW_H_ */