Updated Spanish translation
[anjuta-git-plugin.git] / plugins / message-view / plugin.h
blob59aee9ce348aedf1c0398e9f1e9de1afae255cea
1 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
2 /* plugin.h (c) Johannes Schmid 2004
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU Library General Public License for more details.
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 #ifndef _MV_PLUGIN_H
19 #define _MV_PLUGIN_H
21 #include <libanjuta/anjuta-plugin.h>
23 extern GType message_view_plugin_get_type (GTypeModule *module);
24 #define ANJUTA_TYPE_PLUGIN_MESSAGE_VIEW (message_view_plugin_get_type (NULL))
25 #define ANJUTA_PLUGIN_MESSAGE_VIEW(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), ANJUTA_TYPE_PLUGIN_MESSAGE_VIEW, MessageViewPlugin))
26 #define ANJUTA_PLUGIN_MESSAGE_VIEW_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), ANJUTA_TYPE_PLUGIN_MESSAGE_VIEW, MessageViewPluginClass))
27 #define ANJUTA_IS_PLUGIN_MESSAGE_VIEW(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), ANJUTA_TYPE_PLUGIN_MESSAGE_VIEW))
28 #define ANJUTA_IS_PLUGIN_MESSAGE_VIEW_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), ANJUTA_TYPE_PLUGIN_MESSAGE_VIEW))
29 #define ANJUTA_PLUGIN_MESSAGE_VIEW_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), ANJUTA_TYPE_PLUGIN_MESSAGE_VIEW, MessageViewPluginClass))
31 typedef struct _MessageViewPlugin MessageViewPlugin;
32 typedef struct _MessageViewPluginClass MessageViewPluginClass;
34 struct _MessageViewPlugin {
35 AnjutaPlugin parent;
36 GtkWidget* msgman;
37 GtkActionGroup *action_group;
38 gint uiid;
41 struct _MessageViewPluginClass {
42 AnjutaPluginClass parent_class;
45 #endif /* _MV_PLUGIN_H */