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>
33 #define ANJUTA_TYPE_FILE_VIEW (file_view_get_type ())
34 #define ANJUTA_FILE_VIEW(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), ANJUTA_TYPE_FILE_VIEW, AnjutaFileView))
35 #define ANJUTA_FILE_VIEW_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), ANJUTA_TYPE_FILE_VIEW, AnjutaFileViewClass))
36 #define ANJUTA_IS_FILE_VIEW(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), ANJUTA_TYPE_FILE_VIEW))
37 #define ANJUTA_IS_FILE_VIEW_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), ANJUTA_TYPE_FILE_VIEW))
38 #define ANJUTA_FILE_VIEW_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), ANJUTA_TYPE_FILE_VIEW, AnjutaFileViewClass))
40 typedef struct _AnjutaFileViewClass AnjutaFileViewClass
;
41 typedef struct _AnjutaFileView AnjutaFileView
;
43 struct _AnjutaFileViewClass
45 GtkTreeViewClass parent_class
;
48 void (*file_open
) (AnjutaFileView
* view
,
50 void (*show_popup_menu
) (AnjutaFileView
* view
,
55 void (*current_uri_changed
) (AnjutaFileView
* view
,
59 struct _AnjutaFileView
61 GtkTreeView parent_instance
;
64 GType
file_view_get_type (void) G_GNUC_CONST
;
65 GtkWidget
* file_view_new (void);
68 file_view_rename(AnjutaFileView
* view
);
71 file_view_can_rename(AnjutaFileView
* view
);
74 file_view_get_selected (AnjutaFileView
* view
);
77 file_view_refresh (AnjutaFileView
* view
);
81 #endif /* _FILE_VIEW_H_ */