mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
75 lines
2.9 KiB
Plaintext
75 lines
2.9 KiB
Plaintext
|
/* -*- Mode: IDL; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
||
|
/* vim: set ts=2 et sw=2 tw=80: */
|
||
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
||
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
||
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||
|
|
||
|
#include "nsISupports.idl"
|
||
|
|
||
|
interface nsIDOMDOMRequest;
|
||
|
interface nsIFrameLoader;
|
||
|
|
||
|
[scriptable, function, uuid(c0c2dd9b-41ef-42dd-a4c1-e456619c1941)]
|
||
|
interface nsIBrowserElementNextPaintListener : nsISupports
|
||
|
{
|
||
|
void recvNextPaint();
|
||
|
};
|
||
|
|
||
|
%{C++
|
||
|
#define BROWSER_ELEMENT_API_CONTRACTID "@mozilla.org/dom/browser-element-api;1"
|
||
|
#define BROWSER_ELEMENT_API_CID \
|
||
|
{ 0x651db7e3, 0x1734, 0x4536, \
|
||
|
{ 0xb1, 0x5a, 0x5b, 0x3a, 0xe6, 0x44, 0x13, 0x4c } }
|
||
|
%}
|
||
|
|
||
|
/**
|
||
|
* Interface to the BrowserElementParent implementation. All methods
|
||
|
* but setFrameLoader throw when the remote process is dead.
|
||
|
*/
|
||
|
[scriptable, uuid(abae4fb1-7d6f-4e3f-b435-6501f1d4c659)]
|
||
|
interface nsIBrowserElementAPI : nsISupports
|
||
|
{
|
||
|
void setFrameLoader(in nsIFrameLoader frameLoader);
|
||
|
|
||
|
void setVisible(in boolean visible);
|
||
|
nsIDOMDOMRequest getVisible();
|
||
|
void setActive(in boolean active);
|
||
|
boolean getActive();
|
||
|
|
||
|
void sendMouseEvent(in DOMString type,
|
||
|
in uint32_t x,
|
||
|
in uint32_t y,
|
||
|
in uint32_t button,
|
||
|
in uint32_t clickCount,
|
||
|
in uint32_t mifiers);
|
||
|
void sendTouchEvent(in DOMString aType,
|
||
|
[const, array, size_is(count)] in uint32_t aIdentifiers,
|
||
|
[const, array, size_is(count)] in int32_t aXs,
|
||
|
[const, array, size_is(count)] in int32_t aYs,
|
||
|
[const, array, size_is(count)] in uint32_t aRxs,
|
||
|
[const, array, size_is(count)] in uint32_t aRys,
|
||
|
[const, array, size_is(count)] in float aRotationAngles,
|
||
|
[const, array, size_is(count)] in float aForces,
|
||
|
in uint32_t count,
|
||
|
in long aModifiers);
|
||
|
void goBack();
|
||
|
void goForward();
|
||
|
void reload(in boolean hardReload);
|
||
|
void stop();
|
||
|
nsIDOMDOMRequest download(in DOMString url,
|
||
|
[optional] in jsval options);
|
||
|
nsIDOMDOMRequest purgeHistory();
|
||
|
nsIDOMDOMRequest getScreenshot(in uint32_t width,
|
||
|
in uint32_t height,
|
||
|
[optional] in DOMString mimeType);
|
||
|
void zoom(in float zoom);
|
||
|
nsIDOMDOMRequest getCanGoBack();
|
||
|
nsIDOMDOMRequest getCanGoForward();
|
||
|
nsIDOMDOMRequest getContentDimensions();
|
||
|
|
||
|
void addNextPaintListener(in nsIBrowserElementNextPaintListener listener);
|
||
|
void removeNextPaintListener(in nsIBrowserElementNextPaintListener listener);
|
||
|
|
||
|
nsIDOMDOMRequest setInputMethodActive(in boolean isActive);
|
||
|
};
|