Ryujinx-GtkSharp/gtk/RadioMenuItem.custom

21 lines
598 B
Plaintext
Raw Normal View History

// Gtk.RadioMenuItem.custom - Gtk RadioMenuItem customizations
//
// Authors: John Luke <jluke@cfl.rr.com>
// Mike Kestner <mkestner@ximian.com>
//
// Copyright (c) 2004 Novell, Inc.
public RadioMenuItem (string label) : base (IntPtr.Zero)
{
if (GetType() != typeof (RadioMenuItem)) {
CreateNativeObject (new string [0], new GLib.Value [0]);
AccelLabel al = new AccelLabel ("");
al.TextWithMnemonic = label;
al.SetAlignment (0.0f, 0.5f);
Add (al);
al.AccelWidget = this;
}
Raw = gtk_radio_menu_item_new_with_mnemonic (IntPtr.Zero, label);
}