75 lines
1.8 KiB
C#
75 lines
1.8 KiB
C#
// This file was generated by the Gtk# code generator.
|
|
// Any changes made will be lost if regenerated.
|
|
|
|
namespace WebKit {
|
|
|
|
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
#region Autogenerated code
|
|
[GLib.GType (typeof (WebKit.ContextMenuActionGType))]
|
|
public enum ContextMenuAction {
|
|
|
|
NoAction = 0,
|
|
OpenLink = 1,
|
|
OpenLinkInNewWindow = 2,
|
|
DownloadLinkToDisk = 3,
|
|
CopyLinkToClipboard = 4,
|
|
OpenImageInNewWindow = 5,
|
|
DownloadImageToDisk = 6,
|
|
CopyImageToClipboard = 7,
|
|
CopyImageUrlToClipboard = 8,
|
|
OpenFrameInNewWindow = 9,
|
|
GoBack = 10,
|
|
GoForward = 11,
|
|
Stop = 12,
|
|
Reload = 13,
|
|
Copy = 14,
|
|
Cut = 15,
|
|
Paste = 16,
|
|
Delete = 17,
|
|
SelectAll = 18,
|
|
InputMethods = 19,
|
|
Unicode = 20,
|
|
SpellingGuess = 21,
|
|
NoGuessesFound = 22,
|
|
IgnoreSpelling = 23,
|
|
LearnSpelling = 24,
|
|
IgnoreGrammar = 25,
|
|
FontMenu = 26,
|
|
Bold = 27,
|
|
Italic = 28,
|
|
Underline = 29,
|
|
Outline = 30,
|
|
InspectElement = 31,
|
|
OpenVideoInNewWindow = 32,
|
|
OpenAudioInNewWindow = 33,
|
|
CopyVideoLinkToClipboard = 34,
|
|
CopyAudioLinkToClipboard = 35,
|
|
ToggleMediaControls = 36,
|
|
ToggleMediaLoop = 37,
|
|
EnterVideoFullscreen = 38,
|
|
MediaPlay = 39,
|
|
MediaPause = 40,
|
|
MediaMute = 41,
|
|
DownloadVideoToDisk = 42,
|
|
DownloadAudioToDisk = 43,
|
|
InsertEmoji = 44,
|
|
PasteAsPlainText = 45,
|
|
Custom = 10000,
|
|
}
|
|
|
|
internal class ContextMenuActionGType {
|
|
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
|
|
delegate IntPtr d_webkit_context_menu_action_get_type();
|
|
static d_webkit_context_menu_action_get_type webkit_context_menu_action_get_type = FuncLoader.LoadFunction<d_webkit_context_menu_action_get_type>(FuncLoader.GetProcAddress(GLibrary.Load(Library.Webkit), "webkit_context_menu_action_get_type"));
|
|
|
|
public static GLib.GType GType {
|
|
get {
|
|
return new GLib.GType (webkit_context_menu_action_get_type ());
|
|
}
|
|
}
|
|
}
|
|
#endregion
|
|
}
|