Mercurial > pidgin
annotate finch/libgnt/gntmenuitemcheck.c @ 18550:925ba3e6831c
cmd->params[2] could be NULL, or purple_url_decode() could return NULL. Don't pass a potential NULL to strcmp().
author | Evan Schoenberg <evan.s@dreskin.net> |
---|---|
date | Sat, 14 Jul 2007 18:16:51 +0000 |
parents | 1cedd520cd18 |
children | 44b4e8bd759b |
rev | line source |
---|---|
18049
1cedd520cd18
Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15928
diff
changeset
|
1 /** |
1cedd520cd18
Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15928
diff
changeset
|
2 * GNT - The GLib Ncurses Toolkit |
1cedd520cd18
Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15928
diff
changeset
|
3 * |
1cedd520cd18
Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15928
diff
changeset
|
4 * GNT is the legal property of its developers, whose names are too numerous |
1cedd520cd18
Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15928
diff
changeset
|
5 * to list here. Please refer to the COPYRIGHT file distributed with this |
1cedd520cd18
Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15928
diff
changeset
|
6 * source distribution. |
1cedd520cd18
Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15928
diff
changeset
|
7 * |
1cedd520cd18
Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15928
diff
changeset
|
8 * This library is free software; you can redistribute it and/or modify |
1cedd520cd18
Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15928
diff
changeset
|
9 * it under the terms of the GNU General Public License as published by |
1cedd520cd18
Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15928
diff
changeset
|
10 * the Free Software Foundation; either version 2 of the License, or |
1cedd520cd18
Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15928
diff
changeset
|
11 * (at your option) any later version. |
1cedd520cd18
Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15928
diff
changeset
|
12 * |
1cedd520cd18
Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15928
diff
changeset
|
13 * This program is distributed in the hope that it will be useful, |
1cedd520cd18
Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15928
diff
changeset
|
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
1cedd520cd18
Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15928
diff
changeset
|
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
1cedd520cd18
Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15928
diff
changeset
|
16 * GNU General Public License for more details. |
1cedd520cd18
Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15928
diff
changeset
|
17 * |
1cedd520cd18
Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15928
diff
changeset
|
18 * You should have received a copy of the GNU General Public License |
1cedd520cd18
Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15928
diff
changeset
|
19 * along with this program; if not, write to the Free Software |
1cedd520cd18
Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15928
diff
changeset
|
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
1cedd520cd18
Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15928
diff
changeset
|
21 */ |
1cedd520cd18
Doxygen skeleton and license info for gnt files.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15928
diff
changeset
|
22 |
15817 | 23 #include "gntmenuitemcheck.h" |
24 | |
25 static GntMenuItemClass *parent_class = NULL; | |
26 | |
27 static void | |
28 gnt_menuitem_check_class_init(GntMenuItemCheckClass *klass) | |
29 { | |
15928
f00f2e283ffb
Some define changes. This helps in generating the python bindings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15817
diff
changeset
|
30 parent_class = GNT_MENU_ITEM_CLASS(klass); |
15817 | 31 |
32 GNTDEBUG; | |
33 } | |
34 | |
35 static void | |
36 gnt_menuitem_check_init(GTypeInstance *instance, gpointer class) | |
37 { | |
38 GNTDEBUG; | |
39 } | |
40 | |
41 /****************************************************************************** | |
42 * GntMenuItemCheck API | |
43 *****************************************************************************/ | |
44 GType | |
45 gnt_menuitem_check_get_gtype(void) | |
46 { | |
47 static GType type = 0; | |
48 | |
49 if(type == 0) | |
50 { | |
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 */ | |
62 }; | |
63 | |
15928
f00f2e283ffb
Some define changes. This helps in generating the python bindings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15817
diff
changeset
|
64 type = g_type_register_static(GNT_TYPE_MENU_ITEM, |
15817 | 65 "GntMenuItemCheck", |
66 &info, 0); | |
67 } | |
68 | |
69 return type; | |
70 } | |
71 | |
72 GntMenuItem *gnt_menuitem_check_new(const char *text) | |
73 { | |
15928
f00f2e283ffb
Some define changes. This helps in generating the python bindings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15817
diff
changeset
|
74 GntMenuItem *item = g_object_new(GNT_TYPE_MENU_ITEM_CHECK, NULL); |
f00f2e283ffb
Some define changes. This helps in generating the python bindings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15817
diff
changeset
|
75 GntMenuItem *menuitem = GNT_MENU_ITEM(item); |
15817 | 76 |
77 menuitem->text = g_strdup(text); | |
78 return item; | |
79 } | |
80 | |
81 gboolean gnt_menuitem_check_get_checked(GntMenuItemCheck *item) | |
82 { | |
83 return item->checked; | |
84 } | |
85 | |
86 void gnt_menuitem_check_set_checked(GntMenuItemCheck *item, gboolean set) | |
87 { | |
88 item->checked = set; | |
89 } | |
90 |