comparison finch/libgnt/gntcheckbox.h @ 17928:8410511f4dbb

applied changes from 016401bd409e6229fae0ab1e80d9fef9365511b3 through e82c41f34ce5f7439b2f2971139efaf6ef7a54ff
author Eric Polino <aluink@pidgin.im>
date Wed, 06 Jun 2007 15:50:21 +0000
parents f00f2e283ffb
children 5c6f019e48f8
comparison
equal deleted inserted replaced
17927:f189497429c5 17928:8410511f4dbb
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_CHECK_BOX_H 23 #ifndef GNT_CHECK_BOX_H
2 #define GNT_CHECK_BOX_H 24 #define GNT_CHECK_BOX_H
3 25
4 #include "gntbutton.h" 26 #include "gntbutton.h"
5 #include "gnt.h" 27 #include "gnt.h"
39 void (*gnt_reserved4)(void); 61 void (*gnt_reserved4)(void);
40 }; 62 };
41 63
42 G_BEGIN_DECLS 64 G_BEGIN_DECLS
43 65
66 /**
67 *
68 *
69 * @return
70 */
44 GType gnt_check_box_get_gtype(void); 71 GType gnt_check_box_get_gtype(void);
45 72
46 GntWidget *gnt_check_box_new(const char *text); 73 /**
74 *
75 * @param text
76 *
77 * @return
78 */
79 GntWidget * gnt_check_box_new(const char *text);
47 80
81 /**
82 *
83 * @param box
84 * @param set
85 */
48 void gnt_check_box_set_checked(GntCheckBox *box, gboolean set); 86 void gnt_check_box_set_checked(GntCheckBox *box, gboolean set);
49 87
88 /**
89 *
90 * @param box
91 *
92 * @return
93 */
50 gboolean gnt_check_box_get_checked(GntCheckBox *box); 94 gboolean gnt_check_box_get_checked(GntCheckBox *box);
51 95
52 G_END_DECLS 96 G_END_DECLS
53 97
54 #endif /* GNT_CHECK_BOX_H */ 98 #endif /* GNT_CHECK_BOX_H */