mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
60 lines
1.3 KiB
JavaScript
60 lines
1.3 KiB
JavaScript
function windowUtils() {
|
|
return content.QueryInterface(Components.interfaces.nsIInterfaceRequestor)
|
|
.getInterface(Components.interfaces.nsIDOMWindowUtils);
|
|
}
|
|
|
|
function recvSetViewport(w, h) {
|
|
|
|
dump("setting viewport to "+ w +"x"+ h +"\n");
|
|
|
|
windowUtils().setCSSViewport(w, h);
|
|
}
|
|
|
|
function recvSetDisplayPort(x, y, w, h) {
|
|
|
|
dump("setting displayPort to <"+ x +", "+ y +", "+ w +", "+ h +">\n");
|
|
|
|
windowUtils().setDisplayPort(x, y, w, h);
|
|
}
|
|
|
|
function recvSetResolution(xres, yres) {
|
|
|
|
dump("setting xres="+ xres +" yres="+ yres +"\n");
|
|
|
|
windowUtils().setResolution(xres, yres);
|
|
}
|
|
|
|
function recvScrollBy(dx, dy) {
|
|
content.scrollBy(dx, dy);
|
|
}
|
|
|
|
function recvScrollTo(x, y) {
|
|
content.scrollTo(x, y);
|
|
}
|
|
|
|
addMessageListener(
|
|
"setViewport",
|
|
function (m) { recvSetViewport(m.json.w, m.json.h); }
|
|
);
|
|
|
|
addMessageListener(
|
|
"setDisplayPort",
|
|
function (m) { recvSetDisplayPort(m.json.x, m.json.y,
|
|
m.json.w, m.json.h); }
|
|
);
|
|
|
|
addMessageListener(
|
|
"setResolution",
|
|
function (m) { recvSetResolution(m.json.xres, m.json.yres); }
|
|
);
|
|
|
|
addMessageListener(
|
|
"scrollBy",
|
|
function(m) { recvScrollBy(m.json.dx, m.json.dy); }
|
|
);
|
|
|
|
addMessageListener(
|
|
"scrollTo",
|
|
function(m) { recvScrollTo(m.json.x, m.json.y); }
|
|
);
|