mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-10-13 16:55:05 +02:00
61 lines
1.8 KiB
Text
61 lines
1.8 KiB
Text
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/*
|
|
* Clipboard API and events
|
|
* W3C Working Draft, 4 June 2021
|
|
* The origin of this IDL file is:
|
|
* https://www.w3.org/TR/2021/WD-clipboard-apis-20210604/
|
|
*/
|
|
|
|
dictionary ClipboardEventInit : EventInit {
|
|
DataTransfer? clipboardData = null;
|
|
};
|
|
|
|
[Exposed=Window]
|
|
interface ClipboardEvent : Event {
|
|
constructor(DOMString type, optional ClipboardEventInit eventInitDict = {});
|
|
readonly attribute DataTransfer? clipboardData;
|
|
};
|
|
|
|
partial interface Navigator {
|
|
[SecureContext, SameObject] readonly attribute Clipboard? clipboard;
|
|
};
|
|
|
|
typedef sequence<ClipboardItem> ClipboardItems;
|
|
|
|
[SecureContext, Exposed=Window] interface Clipboard : EventTarget {
|
|
Promise<ClipboardItems> read();
|
|
Promise<DOMString> readText();
|
|
Promise<undefined> write(ClipboardItems data);
|
|
Promise<undefined> writeText(DOMString data);
|
|
};
|
|
|
|
typedef (DOMString or Blob) ClipboardItemDataType;
|
|
typedef Promise<ClipboardItemDataType> ClipboardItemData;
|
|
|
|
callback ClipboardItemDelayedCallback = ClipboardItemData ();
|
|
|
|
[Exposed=Window] interface ClipboardItem {
|
|
constructor(record<DOMString, ClipboardItemData> items,
|
|
optional ClipboardItemOptions options = {});
|
|
static ClipboardItem createDelayed(
|
|
record<DOMString, ClipboardItemDelayedCallback> items,
|
|
optional ClipboardItemOptions options = {});
|
|
|
|
readonly attribute PresentationStyle presentationStyle;
|
|
readonly attribute long long lastModified;
|
|
readonly attribute boolean delayed;
|
|
|
|
readonly attribute FrozenArray<DOMString> types;
|
|
|
|
Promise<Blob> getType(DOMString type);
|
|
};
|
|
|
|
enum PresentationStyle { "unspecified", "inline", "attachment" };
|
|
|
|
dictionary ClipboardItemOptions {
|
|
PresentationStyle presentationStyle = "unspecified";
|
|
};
|
|
|
|
dictionary ClipboardPermissionDescriptor : PermissionDescriptor {
|
|
boolean allowWithoutGesture = false;
|
|
};
|