2004-05-10 17:37:02 +00:00
|
|
|
// Gtk.ItemFactory.custom - Gtk ItemFactory class customizations
|
|
|
|
//
|
|
|
|
// Author: Mike Kestner <mkestner@ximian.com>
|
|
|
|
//
|
|
|
|
// Copyright (C) 2004 Novell, Inc.
|
|
|
|
//
|
|
|
|
// This code is inserted after the automatically generated code.
|
2004-06-25 18:42:19 +00:00
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of version 2 of the Lesser GNU General
|
|
|
|
// Public License as published by the Free Software Foundation.
|
|
|
|
//
|
|
|
|
// This program 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
|
|
|
|
// Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
|
|
// License along with this program; if not, write to the
|
|
|
|
// Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
// Boston, MA 02111-1307, USA.
|
|
|
|
|
2004-05-10 17:37:02 +00:00
|
|
|
|
|
|
|
[DllImport("libgtk-win32-2.0-0.dll")]
|
2005-03-09 20:32:24 +00:00
|
|
|
static extern IntPtr gtk_item_factory_new(IntPtr container_type, IntPtr path, IntPtr accel_group);
|
2004-05-10 17:37:02 +00:00
|
|
|
|
|
|
|
public ItemFactory (GLib.GType container_type, string path, Gtk.AccelGroup accel_group) : base (IntPtr.Zero)
|
|
|
|
{
|
|
|
|
if (GetType () != typeof (ItemFactory)) {
|
|
|
|
CreateNativeObject (new string [0], new GLib.Value [0]);
|
|
|
|
Construct (container_type, path, accel_group);
|
|
|
|
return;
|
|
|
|
}
|
2005-03-09 20:32:24 +00:00
|
|
|
IntPtr native = GLib.Marshaller.StringToPtrGStrdup (path);
|
|
|
|
Raw = gtk_item_factory_new(container_type.Val, native, (accel_group != null) ? accel_group.Handle : IntPtr.Zero);
|
|
|
|
GLib.Marshaller.Free (native);
|
2004-05-10 17:37:02 +00:00
|
|
|
}
|
|
|
|
|
2005-05-04 11:47:25 +00:00
|
|
|
[Obsolete ("Replaced by TranslateFunc property.")]
|
2005-04-05 20:14:02 +00:00
|
|
|
public void SetTranslateFunc (TranslateFunc func, IntPtr data, DestroyNotify notify)
|
|
|
|
{
|
2005-05-04 11:47:25 +00:00
|
|
|
TranslateFunc = func;
|
2005-04-05 20:14:02 +00:00
|
|
|
}
|