1 /*
2  * gedit-file-browser-error.h - Gedit plugin providing easy file access
3  * from the sidepanel
4  *
5  * Copyright (C) 2006 - Jesse van den Kieboom <jesse@icecrew.nl>
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2, or (at your option)
10  * any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, see <http://www.gnu.org/licenses/>.
19  */
20 
21 #ifndef GEDIT_FILE_BROWSER_ERROR_H
22 #define GEDIT_FILE_BROWSER_ERROR_H
23 
24 G_BEGIN_DECLS
25 
26 typedef enum {
27 	GEDIT_FILE_BROWSER_ERROR_NONE,
28 	GEDIT_FILE_BROWSER_ERROR_RENAME,
29 	GEDIT_FILE_BROWSER_ERROR_DELETE,
30 	GEDIT_FILE_BROWSER_ERROR_NEW_FILE,
31 	GEDIT_FILE_BROWSER_ERROR_NEW_DIRECTORY,
32 	GEDIT_FILE_BROWSER_ERROR_OPEN_DIRECTORY,
33 	GEDIT_FILE_BROWSER_ERROR_SET_ROOT,
34 	GEDIT_FILE_BROWSER_ERROR_LOAD_DIRECTORY,
35 	GEDIT_FILE_BROWSER_ERROR_NUM
36 } GeditFileBrowserError;
37 
38 G_END_DECLS
39 
40 #endif /* GEDIT_FILE_BROWSER_ERROR_H */
41 /* ex:set ts=8 noet: */
42