mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 06:05:39 +00:00
e07e7d5ecb
* gtk/MoveFocusHandler.cs: obsolete event types. * gtk/TextView.custom: obsolete move-focus signal. * gtk/Window.custom: obsolete move-focus signal. Compat fixes for removal of signals from gtk+ API. [Fixes #350770] svn path=/trunk/gtk-sharp/; revision=92127
21 lines
529 B
C#
21 lines
529 B
C#
// This file was generated by the Gtk# code generator.
|
|
// Any changes made will be lost if regenerated.
|
|
|
|
namespace Gtk {
|
|
|
|
using System;
|
|
|
|
[Obsolete ("Events using this type were replaced by Gtk.Widget keybinding signal")]
|
|
public delegate void MoveFocusHandler(object o, MoveFocusArgs args);
|
|
|
|
[Obsolete ("Events using this type were replaced by Gtk.Widget keybinding signal")]
|
|
public class MoveFocusArgs : GLib.SignalArgs {
|
|
public Gtk.DirectionType Direction{
|
|
get {
|
|
return (Gtk.DirectionType) Args[0];
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|