Initial commit.
[gnt.git] / gntmenuitemcheck.c
blobfbaa2bc74e6a839f14ea3e3fdc20df60f517089b
1 /**
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
6 * source distribution.
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;
27 static void
28 gnt_menuitem_check_class_init(GntMenuItemCheckClass *klass)
30 parent_class = GNT_MENU_ITEM_CLASS(klass);
32 GNTDEBUG;
35 static void
36 gnt_menuitem_check_init(GTypeInstance *instance, gpointer class)
38 GNTDEBUG;
41 /******************************************************************************
42 * GntMenuItemCheck API
43 *****************************************************************************/
44 GType
45 gnt_menuitem_check_get_gtype(void)
47 static GType type = 0;
49 if(type == 0)
51 static const GTypeInfo info = {
52 sizeof(GntMenuItemCheckClass),
53 NULL, /* base_init */
54 NULL, /* base_finalize */
55 (GClassInitFunc)gnt_menuitem_check_class_init,
56 NULL, /* class_finalize */
57 NULL, /* class_data */
58 sizeof(GntMenuItemCheck),
59 0, /* n_preallocs */
60 gnt_menuitem_check_init, /* instance_init */
61 NULL /* value_table */
64 type = g_type_register_static(GNT_TYPE_MENU_ITEM,
65 "GntMenuItemCheck",
66 &info, 0);
69 return type;
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);
78 return item;
81 gboolean gnt_menuitem_check_get_checked(GntMenuItemCheck *item)
83 return item->checked;
86 void gnt_menuitem_check_set_checked(GntMenuItemCheck *item, gboolean set)
88 item->checked = set;