nsIClipboardDragDropHooks 编辑

widget/public/nsIClipboardDragDropHooks.idlScriptable Interfaces for overriding the built-in drag, drop, copy, and paste implementations in the content area and editors. Use this to do things such as prevent a drag from starting, adding or removing data and flavors, or preventing the drop. Inherits from: nsISupports Last changed in Gecko 1.7

Embedders who want to have these hooks made available should implement nsIClipboardDragDropHooks and use the command manager to send the appropriate commands with these parameters/settings:

command:  cmd_clipboardDragDropHook
params        value type   possible values
"addhook"     isupports    nsIClipboardDragDropHooks as nsISupports
"removehook"  isupports    nsIClipboardDragDropHooks as nsISupports
Note:
  • Overrides/hooks need to be added to each window (as appropriate). Adding them to the first window does not enable them for every window.
  • If more than one implementation is set for a window, the hooks will be called in the order they are added.
  • Adding the same hook to the same window will not add a second call. Each hook can only be called once per user action/api.
  • Not all hooks are guaranteed to be called. If there are multiple hooks set for a window, any of them has an opportunity to cancel the action so no further processing will occur.
  • If any errors occur (without setting the boolean result) the default action will occur.
  • AllowDrop() will be called MANY times during drag so ensure that it is efficient.

Method overview

boolean allowDrop(in nsIDOMEvent event, in nsIDragSession session);
boolean allowStartDrag(in nsIDOMEvent event);
boolean onCopyOrDrag(in nsIDOMEvent aEvent, in nsITransferable trans);
boolean onPasteOrDrop(in nsIDOMEvent event, in nsITransferable trans);

Methods

allowDrop()

Tells gecko whether a drop is allowed on this content area.

boolean allowDrop(
  in nsIDOMEvent event,
  in nsIDragSession session
);
Parameters
event
The DOM event (drag gesture).
session
The drag session from which client can get the flavors present or the actual data.
Return value

true indicates to the Operating System that if a drop does happen on this browser, it will be accepted. Otherwise, false to indicates to the Operating System that drop is not allowed. On win32, this will change the cursor to "reject".

allowStartDrag()

Prevents the drag from starting.

boolean allowStartDrag(
  in nsIDOMEvent event
);
Parameters
event
The DOM event (drag gesture).
Return value

true if the drag can proceed. Otherwise, false to show the drag is canceled (Does not go to Operating System).

onCopyOrDrag()

Alters the flavors or data presented to the OS. Used for drag and copy actions. Because this can be called many times, it is highly recommended that the implementation be very efficient so user feedback is not negatively impacted.

boolean onCopyOrDrag(
  in nsIDOMEvent aEvent,
  in nsITransferable trans
);
Parameters
aEvent
The DOM event (drag drop). null if triggered by copy.
trans
The transferable holding the list of flavors and the data for each flavor.
Return value

true to indicate that copy/drag can proceed. Otherwise, false to indicate that the copy/drag is canceled, does not go to Operating System.

onPasteOrDrop()

Provide an alternative action to the built-in behavior when something is dropped on the browser or in an editor.

boolean onPasteOrDrop(
  in nsIDOMEvent event,
  in nsITransferable trans
);
Parameters
event
The DOM event (drag drop); null if triggered by paste.
trans
The transferable holding the list of flavors and the data for each flavor.
Return value

true to indicate the action was handled, do not perform built-in behavior. Otherwise, false to indicate the action was not overridden, do built-in behavior.

See also

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:34 次

字数:6407

最后编辑:7年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文