mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2025-01-12 21:15:31 +00:00
26 lines
733 B
Plaintext
26 lines
733 B
Plaintext
|
// Gtk.ImageMenuItem.custom - Gtk ImageMenuItem class customizations
|
||
|
//
|
||
|
// Author: Mike Kestner <mkestner@ximian.com>
|
||
|
//
|
||
|
// Copyright (C) 2004 Novell, Inc.
|
||
|
//
|
||
|
// This code is inserted after the automatically generated code.
|
||
|
|
||
|
[DllImport ("libgtk-win32-2.0-0.dll")]
|
||
|
static extern IntPtr gtk_image_menu_item_new_with_mnemonic (string label);
|
||
|
|
||
|
public ImageMenuItem (string label) : base (IntPtr.Zero)
|
||
|
{
|
||
|
if (GetType() != typeof (ImageMenuItem)) {
|
||
|
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_image_menu_item_new_with_mnemonic (label);
|
||
|
}
|
||
|
|