2005-01-07 19:32:23 +00:00
|
|
|
// Image.custom - Customizations to Gtk.Image
|
|
|
|
//
|
|
|
|
// Copyright (C) 2004 Novell, Inc.
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
|
|
|
[DllImport("libgtk-win32-2.0-0.dll")]
|
|
|
|
static extern IntPtr gtk_image_new_from_icon_set(IntPtr icon_set, int size);
|
|
|
|
|
|
|
|
public Image (Gtk.IconSet icon_set, Gtk.IconSize size) : base (IntPtr.Zero)
|
|
|
|
{
|
|
|
|
if (GetType () != typeof (Image)) {
|
|
|
|
ArrayList vals = new ArrayList();
|
|
|
|
ArrayList names = new ArrayList();
|
|
|
|
names.Add ("icon_set");
|
|
|
|
vals.Add (new GLib.Value (icon_set));
|
|
|
|
names.Add ("icon_size");
|
|
|
|
vals.Add (new GLib.Value ((int)size));
|
|
|
|
CreateNativeObject ((string[])names.ToArray (typeof (string)), (GLib.Value[])vals.ToArray (typeof (GLib.Value)));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
Raw = gtk_image_new_from_icon_set(icon_set.Handle, (int) size);
|
|
|
|
}
|
|
|
|
|
|
|
|
[DllImport("libgtk-win32-2.0-0.dll")]
|
2005-03-09 20:32:24 +00:00
|
|
|
static extern IntPtr gtk_image_new_from_stock(IntPtr stock_id, int size);
|
2005-01-07 19:32:23 +00:00
|
|
|
|
|
|
|
public Image (string stock_id, Gtk.IconSize size) : base (IntPtr.Zero)
|
|
|
|
{
|
|
|
|
if (GetType () != typeof (Image)) {
|
|
|
|
ArrayList vals = new ArrayList();
|
|
|
|
ArrayList names = new ArrayList();
|
|
|
|
names.Add ("stock");
|
|
|
|
vals.Add (new GLib.Value (stock_id));
|
|
|
|
names.Add ("icon_size");
|
|
|
|
vals.Add (new GLib.Value ((int)size));
|
|
|
|
CreateNativeObject ((string[])names.ToArray (typeof (string)), (GLib.Value[])vals.ToArray (typeof (GLib.Value)));
|
|
|
|
return;
|
|
|
|
}
|
2005-03-09 20:32:24 +00:00
|
|
|
IntPtr native = GLib.Marshaller.StringToPtrGStrdup (stock_id);
|
|
|
|
Raw = gtk_image_new_from_stock(native, (int) size);
|
|
|
|
GLib.Marshaller.Free (native);
|
2005-01-07 19:32:23 +00:00
|
|
|
}
|
|
|
|
|