mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
123 lines
2.5 KiB
JavaScript
123 lines
2.5 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/. */
|
|
|
|
// Copied from the proposed JS library for Bedrock (ie, www.mozilla.org).
|
|
|
|
// create namespace
|
|
if (typeof Mozilla == 'undefined') {
|
|
var Mozilla = {};
|
|
}
|
|
|
|
(function($) {
|
|
'use strict';
|
|
|
|
// create namespace
|
|
if (typeof Mozilla.UITour == 'undefined') {
|
|
Mozilla.UITour = {};
|
|
}
|
|
|
|
var themeIntervalId = null;
|
|
function _stopCyclingThemes() {
|
|
if (themeIntervalId) {
|
|
clearInterval(themeIntervalId);
|
|
themeIntervalId = null;
|
|
}
|
|
}
|
|
|
|
|
|
function _sendEvent(action, data) {
|
|
var event = new CustomEvent('mozUITour', {
|
|
bubbles: true,
|
|
detail: {
|
|
action: action,
|
|
data: data || {}
|
|
}
|
|
});
|
|
console.log("Sending mozUITour event: ", event);
|
|
document.dispatchEvent(event);
|
|
}
|
|
|
|
Mozilla.UITour.DEFAULT_THEME_CYCLE_DELAY = 10 * 1000;
|
|
|
|
Mozilla.UITour.showHighlight = function(target, effect) {
|
|
_sendEvent('showHighlight', {
|
|
target: target,
|
|
effect: effect
|
|
});
|
|
};
|
|
|
|
Mozilla.UITour.hideHighlight = function() {
|
|
_sendEvent('hideHighlight');
|
|
};
|
|
|
|
Mozilla.UITour.showInfo = function(target, title, text) {
|
|
_sendEvent('showInfo', {
|
|
target: target,
|
|
title: title,
|
|
text: text
|
|
});
|
|
};
|
|
|
|
Mozilla.UITour.hideInfo = function() {
|
|
_sendEvent('hideInfo');
|
|
};
|
|
|
|
Mozilla.UITour.previewTheme = function(theme) {
|
|
_stopCyclingThemes();
|
|
|
|
_sendEvent('previewTheme', {
|
|
theme: JSON.stringify(theme)
|
|
});
|
|
};
|
|
|
|
Mozilla.UITour.resetTheme = function() {
|
|
_stopCyclingThemes();
|
|
|
|
_sendEvent('resetTheme');
|
|
};
|
|
|
|
Mozilla.UITour.cycleThemes = function(themes, delay, callback) {
|
|
_stopCyclingThemes();
|
|
|
|
if (!delay) {
|
|
delay = Mozilla.UITour.DEFAULT_THEME_CYCLE_DELAY;
|
|
}
|
|
|
|
function nextTheme() {
|
|
var theme = themes.shift();
|
|
themes.push(theme);
|
|
|
|
_sendEvent('previewTheme', {
|
|
theme: JSON.stringify(theme),
|
|
state: true
|
|
});
|
|
|
|
callback(theme);
|
|
}
|
|
|
|
themeIntervalId = setInterval(nextTheme, delay);
|
|
nextTheme();
|
|
};
|
|
|
|
Mozilla.UITour.addPinnedTab = function() {
|
|
_sendEvent('addPinnedTab');
|
|
};
|
|
|
|
Mozilla.UITour.removePinnedTab = function() {
|
|
_sendEvent('removePinnedTab');
|
|
};
|
|
|
|
Mozilla.UITour.showMenu = function(name) {
|
|
_sendEvent('showMenu', {
|
|
name: name
|
|
});
|
|
};
|
|
|
|
Mozilla.UITour.hideMenu = function(name) {
|
|
_sendEvent('hideMenu', {
|
|
name: name
|
|
});
|
|
};
|
|
})();
|