25 lines
472 B
C#
25 lines
472 B
C#
// This file was generated by the Gtk# code generator.
|
|
// Any changes made will be lost if regenerated.
|
|
|
|
namespace WebKit {
|
|
|
|
using System;
|
|
|
|
public delegate void MouseTargetChangedHandler(object o, MouseTargetChangedArgs args);
|
|
|
|
public class MouseTargetChangedArgs : GLib.SignalArgs {
|
|
public WebKit.HitTestResult HitTestResult{
|
|
get {
|
|
return (WebKit.HitTestResult) Args [0];
|
|
}
|
|
}
|
|
|
|
public uint Modifiers{
|
|
get {
|
|
return (uint) Args [1];
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|