2 * GNT - The GLib Ncurses Toolkit
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
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.
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.
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
23 #include "gntmenuitemcheck.h"
25 static GntMenuItemClass
*parent_class
= NULL
;
28 gnt_menuitem_check_class_init(GntMenuItemCheckClass
*klass
)
30 parent_class
= GNT_MENU_ITEM_CLASS(klass
);
36 gnt_menuitem_check_init(GTypeInstance
*instance
, gpointer
class)
41 /******************************************************************************
42 * GntMenuItemCheck API
43 *****************************************************************************/
45 gnt_menuitem_check_get_gtype(void)
47 static GType type
= 0;
51 static const GTypeInfo info
= {
52 sizeof(GntMenuItemCheckClass
),
54 NULL
, /* base_finalize */
55 (GClassInitFunc
)gnt_menuitem_check_class_init
,
56 NULL
, /* class_finalize */
57 NULL
, /* class_data */
58 sizeof(GntMenuItemCheck
),
60 gnt_menuitem_check_init
, /* instance_init */
61 NULL
/* value_table */
64 type
= g_type_register_static(GNT_TYPE_MENU_ITEM
,
72 GntMenuItem
*gnt_menuitem_check_new(const char *text
)
74 GntMenuItem
*item
= g_object_new(GNT_TYPE_MENU_ITEM_CHECK
, NULL
);
75 GntMenuItem
*menuitem
= GNT_MENU_ITEM(item
);
77 menuitem
->text
= g_strdup(text
);
81 gboolean
gnt_menuitem_check_get_checked(GntMenuItemCheck
*item
)
86 void gnt_menuitem_check_set_checked(GntMenuItemCheck
*item
, gboolean set
)