diff options
Diffstat (limited to 'gedit/gedit-plugin-info.h')
-rwxr-xr-x | gedit/gedit-plugin-info.h | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/gedit/gedit-plugin-info.h b/gedit/gedit-plugin-info.h new file mode 100755 index 00000000..ac9e2fa7 --- /dev/null +++ b/gedit/gedit-plugin-info.h @@ -0,0 +1,63 @@ +/* + * gedit-plugin-info.h + * This file is part of gedit + * + * Copyright (C) 2002-2005 - Paolo Maggi + * Copyright (C) 2007 - Paolo Maggi, Steve Frécinaux + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, + * Boston, MA 02111-1307, USA. + */ + +/* + * Modified by the gedit Team, 2002-2007. See the AUTHORS file for a + * list of people on the gedit Team. + * See the ChangeLog files for a list of changes. + * + * $Id$ + */ + +#ifndef __GEDIT_PLUGIN_INFO_H__ +#define __GEDIT_PLUGIN_INFO_H__ + +#include <glib-object.h> + +G_BEGIN_DECLS + +#define GEDIT_TYPE_PLUGIN_INFO (gedit_plugin_info_get_type ()) +#define GEDIT_PLUGIN_INFO(obj) ((GeditPluginInfo *) (obj)) + +typedef struct _GeditPluginInfo GeditPluginInfo; + +GType gedit_plugin_info_get_type (void) G_GNUC_CONST; + +gboolean gedit_plugin_info_is_active (GeditPluginInfo *info); +gboolean gedit_plugin_info_is_available (GeditPluginInfo *info); +gboolean gedit_plugin_info_is_configurable (GeditPluginInfo *info); + +const gchar *gedit_plugin_info_get_module_name (GeditPluginInfo *info); + +const gchar *gedit_plugin_info_get_name (GeditPluginInfo *info); +const gchar *gedit_plugin_info_get_description (GeditPluginInfo *info); +const gchar *gedit_plugin_info_get_icon_name (GeditPluginInfo *info); +const gchar **gedit_plugin_info_get_authors (GeditPluginInfo *info); +const gchar *gedit_plugin_info_get_website (GeditPluginInfo *info); +const gchar *gedit_plugin_info_get_copyright (GeditPluginInfo *info); +const gchar *gedit_plugin_info_get_version (GeditPluginInfo *info); + +G_END_DECLS + +#endif /* __GEDIT_PLUGIN_INFO_H__ */ + |