pidgin/pidgindebugplugininfo.h

changeset 39471
46885fa0a1a8
child 39534
9448c3eb652a
equal deleted inserted replaced
39460:ac3af5f4cb4c 39471:46885fa0a1a8
1 /* pidgin
2 *
3 * Pidgin is the legal property of its developers, whose names are too numerous
4 * to list here. Please refer to the COPYRIGHT file distributed with this
5 * source distribution.
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 of the License, or
10 * (at your option) 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, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
20 */
21
22 #ifndef PIDGIN_DEBUG_PLUGIN_INFO_H
23 #define PIDGIN_DEBUG_PLUGIN_INFO_H
24
25 #include <gtk/gtk.h>
26
27 #define PIDGIN_TYPE_DEBUG_PLUGIN_INFO (pidgin_debug_plugin_info_get_type())
28 #define PIDGIN_DEBUG_PLUGIN_INFO(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), PIDGIN_TYPE_DEBUG_PLUGIN_INFO, PidginDebugPluginInfo))
29 #define PIDGIN_DEBUG_PLUGIN_INFO_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), PIDGIN_TYPE_DEBUG_PLUGIN_INFO, PidginDebugPluginInfoClass))
30 #define PIDGIN_IS_DEBUG_PLUGIN_INFO(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), PIDGIN_TYPE_DEBUG_PLUGIN_INFO))
31 #define PIDGIN_IS_DEBUG_PLUGIN_INFO_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), PIDGIN_TYPE_DEBUG_PLUGIN_INFO))
32 #define PIDGIN_DEBUG_PLUGIN_INFO_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), PIDGIN_TYPE_DEBUG_PLUGIN_INFO, PidginDebugPluginInfoClass))
33
34 typedef struct _PidginDebugPluginInfo PidginDebugPluginInfo;
35 typedef struct _PidginDebugPluginInfoClass PidginDebugPluginInfoClass;
36
37 #include <glib.h>
38 #include <glib-object.h>
39
40 #include <gtk/gtk.h>
41
42 struct _PidginDebugPluginInfo {
43 GtkDialog parent;
44
45 gpointer reserved[4];
46 };
47
48 struct _PidginDebugPluginInfoClass {
49 GtkDialogClass parent;
50
51 gpointer reserved[4];
52 };
53
54 G_BEGIN_DECLS
55
56 GType pidgin_debug_plugin_info_get_type(void);
57
58 GtkWidget *pidgin_debug_plugin_info_new(void);
59
60 void pidgin_debug_plugin_info_show(void);
61
62 G_END_DECLS
63
64 #endif /* PIDGIN_DEBUG_PLUGIN_INFO_H */

mercurial