Mercurial > pidgin.yaz
comparison finch/libgnt/gntmenuitemcheck.h @ 18061:226b9109179c
propagate from branch 'im.pidgin.pidgin' (head 4d9e228029b9b7850d000c2edadc108c40f9e59a)
to branch 'im.pidgin.pidgin.2.1.0' (head 50475bfc4ddcde1db8533c1b41c7b4342d773e21)
author | Richard Laager <rlaager@wiktel.com> |
---|---|
date | Thu, 07 Jun 2007 04:31:02 +0000 |
parents | 1cedd520cd18 |
children | 5c6f019e48f8 |
comparison
equal
deleted
inserted
replaced
17765:89adae2f1a6e | 18061:226b9109179c |
---|---|
1 /** | |
2 * GNT - The GLib Ncurses Toolkit | |
3 * | |
4 * GNT 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 library 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
21 */ | |
22 | |
1 #ifndef GNT_MENU_ITEM_CHECK_H | 23 #ifndef GNT_MENU_ITEM_CHECK_H |
2 #define GNT_MENU_ITEM_CHECK_H | 24 #define GNT_MENU_ITEM_CHECK_H |
3 | 25 |
4 #include "gnt.h" | 26 #include "gnt.h" |
5 #include "gntcolors.h" | 27 #include "gntcolors.h" |
37 void (*gnt_reserved4)(void); | 59 void (*gnt_reserved4)(void); |
38 }; | 60 }; |
39 | 61 |
40 G_BEGIN_DECLS | 62 G_BEGIN_DECLS |
41 | 63 |
64 /** | |
65 * | |
66 * | |
67 * @return | |
68 */ | |
42 GType gnt_menuitem_check_get_gtype(void); | 69 GType gnt_menuitem_check_get_gtype(void); |
43 | 70 |
44 GntMenuItem *gnt_menuitem_check_new(const char *text); | 71 /** |
72 * | |
73 * @param text | |
74 * | |
75 * @return | |
76 */ | |
77 GntMenuItem * gnt_menuitem_check_new(const char *text); | |
45 | 78 |
79 /** | |
80 * | |
81 * @param item | |
82 * | |
83 * @return | |
84 */ | |
46 gboolean gnt_menuitem_check_get_checked(GntMenuItemCheck *item); | 85 gboolean gnt_menuitem_check_get_checked(GntMenuItemCheck *item); |
47 | 86 |
87 /** | |
88 * | |
89 * @param item | |
90 * @param set | |
91 */ | |
48 void gnt_menuitem_check_set_checked(GntMenuItemCheck *item, gboolean set); | 92 void gnt_menuitem_check_set_checked(GntMenuItemCheck *item, gboolean set); |
49 | 93 |
50 G_END_DECLS | 94 G_END_DECLS |
51 | 95 |
52 #endif /* GNT_MENU_ITEM_CHECK_H */ | 96 #endif /* GNT_MENU_ITEM_CHECK_H */ |