summaryrefslogtreecommitdiff
path: root/libs/gtkmm2/gtk/src/radiomenuitem.ccg
diff options
context:
space:
mode:
Diffstat (limited to 'libs/gtkmm2/gtk/src/radiomenuitem.ccg')
-rw-r--r--libs/gtkmm2/gtk/src/radiomenuitem.ccg63
1 files changed, 63 insertions, 0 deletions
diff --git a/libs/gtkmm2/gtk/src/radiomenuitem.ccg b/libs/gtkmm2/gtk/src/radiomenuitem.ccg
new file mode 100644
index 0000000000..7be68a7ea6
--- /dev/null
+++ b/libs/gtkmm2/gtk/src/radiomenuitem.ccg
@@ -0,0 +1,63 @@
+// -*- c++ -*-
+/* $Id: radiomenuitem.ccg,v 1.2 2003/10/28 17:12:27 murrayc Exp $ */
+
+/*
+ *
+ * Copyright 1998-2002 The gtkmm Development Team
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the Free
+ * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ */
+
+#include <gtkmm/misc.h>
+#include <gtkmm/label.h>
+#include <gtk/gtkradiomenuitem.h>
+
+typedef Gtk::RadioMenuItem::Group Group; //So that the generate get_group return type is parsed.
+
+namespace Gtk
+{
+
+RadioMenuItem::RadioMenuItem(Group& groupx)
+:
+ _CONSTRUCT()
+{
+ groupx.add(*this);
+}
+
+RadioMenuItem::RadioMenuItem(Group& groupx, const Glib::ustring &label, bool mnemonic)
+:
+ _CONSTRUCT()
+{
+ groupx.add(*this);
+ add_accel_label(label, mnemonic);
+}
+
+void RadioMenuItem::set_group(Group& group)
+{
+ gtk_radio_menu_item_set_group(gobj(), group.group_);
+
+ //The group will be updated, ready for use with the next radiomenuitem:
+ group = get_group();
+}
+
+void RadioMenuItem::reset_group()
+{
+ gtk_radio_menu_item_set_group(gobj(), 0);
+}
+
+
+
+} // namespace Gtk
+