Updated Spanish translation
[anjuta-git-plugin.git] / plugins / file-manager / file-view.h
bloba0286bb83de38e4b3a2aeca39087a7117900303d
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>
30 G_BEGIN_DECLS
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;
46 /* Signals */
47 void (*file_open) (AnjutaFileView* view,
48 const gchar* uri);
49 void (*show_popup_menu) (AnjutaFileView* view,
50 const gchar* uri,
51 gboolean is_dir,
52 guint button,
53 guint32 time);
54 void (*current_uri_changed) (AnjutaFileView* view,
55 const gchar* uri);
58 struct _AnjutaFileView
60 GtkTreeView parent_instance;
63 GType file_view_get_type (void) G_GNUC_CONST;
64 GtkWidget* file_view_new (void);
66 void
67 file_view_refresh(AnjutaFileView* view,
68 gboolean remember_open);
70 gchar*
71 file_view_get_selected (AnjutaFileView* view);
73 G_END_DECLS
75 #endif /* _FILE_VIEW_H_ */