Remove ancient/unused flowcanvas and libglademm from repository.
[ardour.git] / libs / gtkmm2 / gtk / src / radioaction.ccg
1 // -*- c++ -*-
2 /* $Id: radioaction.ccg,v 1.5 2004/03/27 00:30:38 murrayc Exp $ */
3
4 /* Copyright 2003 The gtkmm Development Team
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Library General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library 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 GNU
14  * Library General Public License for more details.
15  *
16  * You should have received a copy of the GNU Library General Public
17  * License along with this library; if not, write to the Free
18  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19  */
20
21 #include <gtk/gtkradioaction.h>
22
23
24 typedef Gtk::RadioAction::Group Group; //So that the generate get_group return type is parsed.
25
26 namespace Gtk
27 {
28
29 RadioAction::RadioAction(Group& group, const Glib::ustring& name, const Gtk::StockID& stock_id, const Glib::ustring& label, const Glib::ustring& tooltip)
30 :
31   _CONSTRUCT("name", name.c_str(), "stock_id", stock_id.get_c_str(), "label", (label.empty() ? 0 : label.c_str()), "tooltip", (tooltip.empty() ? 0 : tooltip.c_str()))
32 {
33   set_group(group);
34 }
35
36 Glib::RefPtr<RadioAction> RadioAction::create(Group& group, const Glib::ustring& name, const Glib::ustring& label, const Glib::ustring& tooltip)
37 {
38   return Glib::RefPtr<RadioAction>( new RadioAction(group, name, Gtk::StockID(), label, tooltip) );
39 }
40
41 Glib::RefPtr<RadioAction> RadioAction::create(Group& group, const Glib::ustring& name, const Gtk::StockID& stock_id, const Glib::ustring& label, const Glib::ustring& tooltip)
42 {
43   return Glib::RefPtr<RadioAction>( new RadioAction(group, name, stock_id, label, tooltip) );
44 }
45
46 void RadioAction::set_group(Group& group)
47 {
48   gtk_radio_action_set_group(gobj(), group.group_);
49
50   //The group will be updated, ready for use with the next radio action:
51   group = get_group();
52 }
53
54
55
56 } // namespace Gtk
57