Updated Spanish translation
[anjuta-git-plugin.git] / plugins / gvim / plugin.h
blobe5fe0a590e2cf3cac84fc4d7505a06555bd1a1e0
1 /*
2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License as published by
4 * the Free Software Foundation; either version 2 of the License, or
5 * (at your option) any later version.
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU Library General Public License for more details.
12 * You should have received a copy of the GNU General Public License
13 * along with this program; if not, write to the Free Software
14 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 #ifndef _ANJUTA_VIM_PLUGIN_H_
18 #define _ANJUTA_VIM_PLUGIN_H_
20 #include <config.h>
21 #include <libanjuta/anjuta-plugin.h>
23 #define ICON_FILE "anjuta-vim-plugin.png"
25 typedef struct _AnjutaVimPlugin AnjutaVimPlugin;
26 typedef struct _AnjutaVimPluginClass AnjutaVimPluginClass;
28 struct _AnjutaVimPlugin {
29 AnjutaPlugin parent;
30 GtkWidget *vim_widget;
33 struct _AnjutaVimPluginClass {
34 AnjutaPluginClass parent_class;
38 #endif /* _PATCH_PLUGIN_H_ */