pidgin/pidginpluginsmenu.h

changeset 40373
5d2a493339f2
child 40377
be51a9f44cea
equal deleted inserted replaced
40372:38f54b5851f7 40373:5d2a493339f2
1 /*
2 * pidgin
3 *
4 * Pidgin is the legal property of its developers, whose names are too numerous
5 * to list here. Please refer to the COPYRIGHT file distributed with this
6 * source distribution.
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
21 */
22 #ifndef PIDGIN_PLUGINS_MENU_H
23 #define PIDGIN_PLUGINS_MENU_H
24
25 #include <gtk/gtk.h>
26
27 G_BEGIN_DECLS
28
29 #define PIDGIN_TYPE_PLUGINS_MENU (pidgin_plugins_menu_get_type())
30 G_DECLARE_FINAL_TYPE(PidginPluginsMenu, pidgin_plugins_menu, PIDGIN,
31 PLUGINS_MENU, GtkMenu)
32
33 /**
34 * pidgin_action_group_new:
35 *
36 * Creates a new #PidginPluginsMenu instance that keeps itself up to date.
37 *
38 * Returns: (transfer full): The new #PidginPluginsMenu instance.
39 */
40 GtkWidget *pidgin_plugins_menu_new(void);
41
42 G_END_DECLS
43
44 #endif /* PIDGIN_PLUGINS_MENU_H */

mercurial