Ryujinx-GtkSharp/gtk/StatusIcon.custom
Stephane Delcroix 8b431b91f3 2008-11-03 Stephane Delcroix <sdelcroix@novell.com>
* gtk/Gtk.metadata:
	* gtk/StatusIcon.custom: Obsolete the duplicated properties.

svn path=/trunk/gtk-sharp/; revision=117797
2008-11-03 19:08:12 +00:00

72 lines
2.4 KiB
Plaintext

// StatusIcon.custom - customizations to Gtk.StatusIcon
//
// Authors: Mike Kestner <mkestner@novell.com>
// Authors: Stephane Delcroix <sdelcroix@novell.com>
//
// Copyright (c) 2007-2008 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.
[Obsolete ("Replaced by (out Screen, out Rectangle, out Orientation) overload")]
public bool GetGeometry (Gdk.Screen screen, Gdk.Rectangle area, out Orientation orientation)
{
Gdk.Screen junk;
return GetGeometry (out junk, out area, out orientation);
}
[DllImport("gtksharpglue-2")]
static extern void gtksharp_gtk_status_icon_present_menu (IntPtr raw, IntPtr menu, uint button, uint activate_time);
public void PresentMenu (Menu menu, uint button, uint activate_time)
{
gtksharp_gtk_status_icon_present_menu (Handle, menu == null ? IntPtr.Zero : menu.Handle, button, activate_time);
}
[Obsolete ("use the File property instead")]
public string FromFile {
set {
IntPtr native_value = GLib.Marshaller.StringToPtrGStrdup (value);
gtk_status_icon_set_from_file(Handle, native_value);
GLib.Marshaller.Free (native_value);
}
}
[Obsolete ("use the IconName property instead")]
public string FromIconName {
set {
IntPtr native_value = GLib.Marshaller.StringToPtrGStrdup (value);
gtk_status_icon_set_from_icon_name(Handle, native_value);
GLib.Marshaller.Free (native_value);
}
}
[Obsolete ("use the Pixbuf property instead")]
public Gdk.Pixbuf FromPixbuf {
set {
gtk_status_icon_set_from_pixbuf(Handle, value == null ? IntPtr.Zero : value.Handle);
}
}
[Obsolete ("use the Stock property instead")]
public string FromStock {
set {
IntPtr native_value = GLib.Marshaller.StringToPtrGStrdup (value);
gtk_status_icon_set_from_stock(Handle, native_value);
GLib.Marshaller.Free (native_value);
}
}