Fix a Gtk warning when checking path input in the log viewer.
[anjuta-git-plugin.git] / plugins / file-manager / file-view.h
blob1c594984f849f093f6a7345918b625e6b957a4fe
1 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
2 /*
3 * file-manager
4 * Copyright (C) Johannes Schmid 2007 <jhs@gnome.org>
5 *
6 * file-manager is free software.
7 *
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)
11 * any later version.
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.
25 #ifndef _FILE_VIEW_H_
26 #define _FILE_VIEW_H_
28 #include <gtk/gtktreeview.h>
29 #include <gio/gio.h>
31 G_BEGIN_DECLS
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;
47 /* Signals */
48 void (*file_open) (AnjutaFileView* view,
49 GFile* file);
50 void (*show_popup_menu) (AnjutaFileView* view,
51 GFile* file,
52 gboolean is_dir,
53 guint button,
54 guint32 time);
55 void (*current_uri_changed) (AnjutaFileView* view,
56 GFile* file);
59 struct _AnjutaFileView
61 GtkTreeView parent_instance;
64 GType file_view_get_type (void) G_GNUC_CONST;
65 GtkWidget* file_view_new (void);
67 void
68 file_view_rename(AnjutaFileView* view);
70 gboolean
71 file_view_can_rename(AnjutaFileView* view);
73 GFile*
74 file_view_get_selected (AnjutaFileView* view);
76 void
77 file_view_refresh (AnjutaFileView* view);
79 G_END_DECLS
81 #endif /* _FILE_VIEW_H_ */