GUI: Dead kittens.
[gnumeric.git] / src / widgets / gnm-radiobutton.h
blob518893dccfa91aea5311099f48c2fdeecada6dde
1 /**
2 * gnm-radiobutton.h: Implements a special radiobutton.
4 * Copyright (c) 2009 Morten Welinder <terra@gnome.org>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, see <https://www.gnu.org/licenses/>.
18 **/
20 #ifndef __GNM_RADIO_BUTTON_H__
21 #define __GNM_RADIO_BUTTON_H__
23 #include <gtk/gtk.h>
25 #define GNM_TYPE_RADIO_BUTTON (gnm_radiobutton_get_type ())
26 #define GNM_RADIO_BUTTON(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), GNM_RADIO_BUTTON_TYPE, GnmRadioButton))
27 #define GNM_IS_RADIO_BUTTON(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), GNM_RADIO_BUTTON_TYPE))
29 typedef GtkRadioButton GnmRadioButton;
31 GType gnm_radiobutton_get_type (void);
33 #endif /*__GNM_RADIO_BUTTON_H__*/