mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
192 lines
4.6 KiB
JavaScript
192 lines
4.6 KiB
JavaScript
/* 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/. */
|
|
|
|
|
|
let EXPORTED_SYMBOLS = [ ];
|
|
|
|
Components.utils.import("resource:///modules/devtools/gcli.jsm");
|
|
Components.utils.import("resource:///modules/HUDService.jsm");
|
|
|
|
|
|
/**
|
|
* 'tilt' command
|
|
*/
|
|
gcli.addCommand({
|
|
name: 'tilt',
|
|
description: gcli.lookup("tiltDesc"),
|
|
manual: gcli.lookup("tiltManual")
|
|
});
|
|
|
|
|
|
/**
|
|
* 'tilt open' command
|
|
*/
|
|
gcli.addCommand({
|
|
name: 'tilt open',
|
|
description: gcli.lookup("tiltOpenDesc"),
|
|
manual: gcli.lookup("tiltOpenManual"),
|
|
params: [
|
|
{
|
|
name: "node",
|
|
type: "node",
|
|
defaultValue: null,
|
|
description: gcli.lookup("inspectNodeDesc"),
|
|
manual: gcli.lookup("inspectNodeManual")
|
|
}
|
|
],
|
|
exec: function(args, context) {
|
|
let chromeWindow = context.environment.chromeDocument.defaultView;
|
|
let InspectorUI = chromeWindow.InspectorUI;
|
|
let Tilt = chromeWindow.Tilt;
|
|
|
|
if (Tilt.currentInstance) {
|
|
Tilt.update(args.node);
|
|
} else {
|
|
let hudId = chromeWindow.HUDConsoleUI.getOpenHUD();
|
|
let hud = HUDService.getHudReferenceById(hudId);
|
|
|
|
if (hud && !hud.consolePanel) {
|
|
HUDService.deactivateHUDForContext(chromeWindow.gBrowser.selectedTab);
|
|
}
|
|
InspectorUI.openInspectorUI(args.node);
|
|
Tilt.initialize();
|
|
}
|
|
}
|
|
});
|
|
|
|
|
|
/**
|
|
* 'tilt translate' command
|
|
*/
|
|
gcli.addCommand({
|
|
name: 'tilt translate',
|
|
description: gcli.lookup("tiltTranslateDesc"),
|
|
manual: gcli.lookup("tiltTranslateManual"),
|
|
params: [
|
|
{
|
|
name: "x",
|
|
type: "number",
|
|
defaultValue: 0,
|
|
description: gcli.lookup("tiltTranslateXDesc"),
|
|
manual: gcli.lookup("tiltTranslateXManual")
|
|
},
|
|
{
|
|
name: "y",
|
|
type: "number",
|
|
defaultValue: 0,
|
|
description: gcli.lookup("tiltTranslateYDesc"),
|
|
manual: gcli.lookup("tiltTranslateYManual")
|
|
}
|
|
],
|
|
exec: function(args, context) {
|
|
let chromeWindow = context.environment.chromeDocument.defaultView;
|
|
let Tilt = chromeWindow.Tilt;
|
|
|
|
if (Tilt.currentInstance) {
|
|
Tilt.currentInstance.controller.arcball.translate([args.x, args.y]);
|
|
}
|
|
}
|
|
});
|
|
|
|
|
|
/**
|
|
* 'tilt rotate' command
|
|
*/
|
|
gcli.addCommand({
|
|
name: 'tilt rotate',
|
|
description: gcli.lookup("tiltRotateDesc"),
|
|
manual: gcli.lookup("tiltRotateManual"),
|
|
params: [
|
|
{
|
|
name: "x",
|
|
type: { name: 'number', min: -360, max: 360, step: 10 },
|
|
defaultValue: 0,
|
|
description: gcli.lookup("tiltRotateXDesc"),
|
|
manual: gcli.lookup("tiltRotateXManual")
|
|
},
|
|
{
|
|
name: "y",
|
|
type: { name: 'number', min: -360, max: 360, step: 10 },
|
|
defaultValue: 0,
|
|
description: gcli.lookup("tiltRotateYDesc"),
|
|
manual: gcli.lookup("tiltRotateYManual")
|
|
},
|
|
{
|
|
name: "z",
|
|
type: { name: 'number', min: -360, max: 360, step: 10 },
|
|
defaultValue: 0,
|
|
description: gcli.lookup("tiltRotateZDesc"),
|
|
manual: gcli.lookup("tiltRotateZManual")
|
|
}
|
|
],
|
|
exec: function(args, context) {
|
|
let chromeWindow = context.environment.chromeDocument.defaultView;
|
|
let Tilt = chromeWindow.Tilt;
|
|
|
|
if (Tilt.currentInstance) {
|
|
Tilt.currentInstance.controller.arcball.rotate([args.x, args.y, args.z]);
|
|
}
|
|
}
|
|
});
|
|
|
|
|
|
/**
|
|
* 'tilt zoom' command
|
|
*/
|
|
gcli.addCommand({
|
|
name: 'tilt zoom',
|
|
description: gcli.lookup("tiltZoomDesc"),
|
|
manual: gcli.lookup("tiltZoomManual"),
|
|
params: [
|
|
{
|
|
name: "zoom",
|
|
type: { name: 'number' },
|
|
description: gcli.lookup("tiltZoomAmountDesc"),
|
|
manual: gcli.lookup("tiltZoomAmountManual")
|
|
}
|
|
],
|
|
exec: function(args, context) {
|
|
let chromeWindow = context.environment.chromeDocument.defaultView;
|
|
let Tilt = chromeWindow.Tilt;
|
|
|
|
if (Tilt.currentInstance) {
|
|
Tilt.currentInstance.controller.arcball.zoom(-args.zoom);
|
|
}
|
|
}
|
|
});
|
|
|
|
|
|
/**
|
|
* 'tilt reset' command
|
|
*/
|
|
gcli.addCommand({
|
|
name: 'tilt reset',
|
|
description: gcli.lookup("tiltResetDesc"),
|
|
manual: gcli.lookup("tiltResetManual"),
|
|
exec: function(args, context) {
|
|
let chromeWindow = context.environment.chromeDocument.defaultView;
|
|
let Tilt = chromeWindow.Tilt;
|
|
|
|
if (Tilt.currentInstance) {
|
|
Tilt.currentInstance.controller.arcball.reset();
|
|
}
|
|
}
|
|
});
|
|
|
|
|
|
/**
|
|
* 'tilt close' command
|
|
*/
|
|
gcli.addCommand({
|
|
name: 'tilt close',
|
|
description: gcli.lookup("tiltCloseDesc"),
|
|
manual: gcli.lookup("tiltCloseManual"),
|
|
exec: function(args, context) {
|
|
let chromeWindow = context.environment.chromeDocument.defaultView;
|
|
let Tilt = chromeWindow.Tilt;
|
|
|
|
Tilt.destroy(Tilt.currentWindowId);
|
|
}
|
|
});
|