mirror of
https://github.com/Armored-Dragon/overte.git
synced 2025-03-11 16:13:16 +01:00
Merge pull request #1275 from AleziaKurdis/GraphisApp_toggle
Graphics App: adding a setting to hide or display the app in the tablet/toolbar
This commit is contained in:
commit
fba519ec6d
1 changed files with 43 additions and 11 deletions
|
@ -1,15 +1,20 @@
|
||||||
//
|
//
|
||||||
// graphicsSettings.js
|
// graphicsSettings.js
|
||||||
//
|
//
|
||||||
// Created by Kalila L. on 8/5/2020
|
// Created by Kalila L. on August 5th, 2020
|
||||||
// Copyright 2020 Vircadia contributors.
|
// Copyright 2020 Vircadia contributors.
|
||||||
|
// Copyright 2024 Overte e.V.
|
||||||
//
|
//
|
||||||
// Distributed under the Apache License, Version 2.0.
|
// Distributed under the Apache License, Version 2.0.
|
||||||
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
||||||
//
|
//
|
||||||
|
|
||||||
(function() { // BEGIN LOCAL_SCOPE
|
(function() { // BEGIN LOCAL_SCOPE
|
||||||
|
var channelComm = "Overte-ShowGraphicsIconChanged";
|
||||||
|
var appStatus = false;
|
||||||
|
var GRAPHICS_HIDE_AND_SHOW_SETTING_KEY = "showGraphicsIcon";
|
||||||
|
var GRAPHICS_HIDE_AND_SHOW_DEFAULT_VALUE = true;
|
||||||
|
|
||||||
var AppUi = Script.require('appUi');
|
var AppUi = Script.require('appUi');
|
||||||
|
|
||||||
// cellphone-cog MDI
|
// cellphone-cog MDI
|
||||||
|
@ -49,22 +54,49 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
function startup() {
|
function startup() {
|
||||||
ui = new AppUi({
|
if (!appStatus) {
|
||||||
buttonName: BUTTON_NAME,
|
ui = new AppUi({
|
||||||
sortOrder: 8,
|
buttonName: BUTTON_NAME,
|
||||||
normalButton: getIcon(),
|
sortOrder: 8,
|
||||||
activeButton: getIcon().replace('white', 'black'),
|
normalButton: getIcon(),
|
||||||
home: GRAPHICS_QML_SOURCE
|
activeButton: getIcon().replace('white', 'black'),
|
||||||
});
|
home: GRAPHICS_QML_SOURCE
|
||||||
|
});
|
||||||
|
}
|
||||||
|
appStatus = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
function shutdown() {
|
function shutdown() {
|
||||||
|
if (appStatus) {
|
||||||
|
ui.onScriptEnding();
|
||||||
|
appStatus = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function cleanup() {
|
||||||
|
Messages.messageReceived.disconnect(onMessageReceived);
|
||||||
|
Messages.unsubscribe(channelComm);
|
||||||
|
}
|
||||||
|
|
||||||
|
function onMessageReceived(channel, message, sender, localOnly) {
|
||||||
|
if (channel === channelComm && localOnly) {
|
||||||
|
if (Settings.getValue(GRAPHICS_HIDE_AND_SHOW_SETTING_KEY, GRAPHICS_HIDE_AND_SHOW_DEFAULT_VALUE)) {
|
||||||
|
startup();
|
||||||
|
} else {
|
||||||
|
shutdown();
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
// Run the functions.
|
// Run the functions.
|
||||||
//
|
//
|
||||||
startup();
|
if (Settings.getValue(GRAPHICS_HIDE_AND_SHOW_SETTING_KEY, GRAPHICS_HIDE_AND_SHOW_DEFAULT_VALUE)) {
|
||||||
Script.scriptEnding.connect(shutdown);
|
startup();
|
||||||
|
}
|
||||||
|
Messages.subscribe(channelComm);
|
||||||
|
Messages.messageReceived.connect(onMessageReceived);
|
||||||
|
|
||||||
|
Script.scriptEnding.connect(cleanup);
|
||||||
|
|
||||||
}()); // END LOCAL_SCOPE
|
}()); // END LOCAL_SCOPE
|
||||||
|
|
Loading…
Reference in a new issue