Ryujinx-GtkSharp/gtk/StatusIcon.custom

81 lines
3.0 KiB
Plaintext
Raw Normal View History

// 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);
}
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
delegate void MenuPositionFuncNative (IntPtr menu, out int x, out int y, out bool push_in, IntPtr user_data);
static MenuPositionFuncNative StatusIconPositionMenuFunc = null;
[DllImport ("libgtk-win32-2.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void gtk_menu_popup (IntPtr menu, IntPtr parent_menu_shell, IntPtr parent_menu_item, MenuPositionFuncNative func, IntPtr data, uint button, uint activate_time);
public void PresentMenu (Menu menu, uint button, uint activate_time)
{
if (StatusIconPositionMenuFunc == null)
// gtk_status_icon_position_menu already defined by autogenerated code
StatusIconPositionMenuFunc = new MenuPositionFuncNative (gtk_status_icon_position_menu);
gtk_menu_popup (menu == null ? IntPtr.Zero : menu.Handle, IntPtr.Zero, IntPtr.Zero, StatusIconPositionMenuFunc, 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);
}
}