mirror of
https://github.com/overte-org/overte.git
synced 2025-04-05 21:12:25 +02:00
Menu bar item
This commit is contained in:
parent
1f4d163ed7
commit
f5585605af
3 changed files with 36 additions and 30 deletions
|
@ -286,18 +286,6 @@ Menu::Menu() {
|
|||
}
|
||||
});
|
||||
|
||||
// Settings > Graphics...
|
||||
action = addActionToQMenuAndActionHash(settingsMenu, "Graphics...");
|
||||
connect(action, &QAction::triggered, [] {
|
||||
auto tablet = DependencyManager::get<TabletScriptingInterface>()->getTablet("com.highfidelity.interface.tablet.system");
|
||||
auto hmd = DependencyManager::get<HMDScriptingInterface>();
|
||||
tablet->pushOntoStack("hifi/dialogs/graphics/GraphicsSettings.qml");
|
||||
|
||||
if (!hmd->getShouldShowTablet()) {
|
||||
hmd->toggleShouldShowTablet();
|
||||
}
|
||||
});
|
||||
|
||||
// Settings > Security...
|
||||
action = addActionToQMenuAndActionHash(settingsMenu, "Security...");
|
||||
connect(action, &QAction::triggered, [] {
|
||||
|
|
|
@ -11,7 +11,6 @@
|
|||
|
||||
/* global Script Tablet */
|
||||
|
||||
// TODO: Bind Target frame Rate to Graphics Preset
|
||||
// TODO: Fullscreen display?
|
||||
|
||||
(() => {
|
||||
|
@ -31,14 +30,32 @@
|
|||
|
||||
// When script ends, remove itself from tablet
|
||||
Script.scriptEnding.connect(function () {
|
||||
console.log("Shutting Down");
|
||||
console.log("Shutting down Settings.js application");
|
||||
tablet.removeButton(appButton);
|
||||
Menu.removeMenuItem("Settings", "Graphics...");
|
||||
});
|
||||
|
||||
// Overlay button toggle
|
||||
// Event listeners
|
||||
appButton.clicked.connect(toolbarButtonClicked);
|
||||
tablet.fromQml.connect(fromQML);
|
||||
tablet.screenChanged.connect(onTabletScreenChanged);
|
||||
Menu.menuItemEvent.connect(onMenuItemEvent);
|
||||
|
||||
// Menu button
|
||||
Menu.addMenuItem({
|
||||
menuName: "Settings",
|
||||
menuItemName: "Graphics...",
|
||||
afterItem: "Audio...",
|
||||
});
|
||||
|
||||
function onMenuItemEvent(menuItem){
|
||||
if (menuItem === 'Graphics...'){
|
||||
toolbarButtonClicked();
|
||||
Script.setTimeout(() => {
|
||||
toQML({type: 'loadPage', page: 'Graphics'})
|
||||
}, 100);
|
||||
}
|
||||
}
|
||||
|
||||
function toolbarButtonClicked() {
|
||||
if (active) tablet.gotoHomeScreen();
|
||||
|
@ -72,9 +89,9 @@
|
|||
/**
|
||||
* Emit a packet to the HTML front end. Easy communication!
|
||||
* @param {Object} packet - The Object packet to emit to the HTML
|
||||
* @param {("show_message"|"clear_messages"|"notification"|"initial_settings")} packet.type - The type of packet it is
|
||||
* @param {("loadPage"|)} packet.type - The type of packet it is
|
||||
*/
|
||||
// function _emitEvent(packet = { type: "" }) {
|
||||
// tablet.sendToQml(packet);
|
||||
// }
|
||||
function toQML(packet = { type: "" }) {
|
||||
tablet.sendToQml(packet);
|
||||
}
|
||||
})();
|
|
@ -283,18 +283,19 @@ Rectangle {
|
|||
}
|
||||
|
||||
// Templates
|
||||
}
|
||||
|
||||
// Messages from script
|
||||
function fromScript(message) {
|
||||
switch (message.type){
|
||||
case "":
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
// Send message to script
|
||||
function toScript(packet){
|
||||
sendToScript(packet)
|
||||
// Messages from script
|
||||
function fromScript(message) {
|
||||
switch (message.type){
|
||||
case "loadPage":
|
||||
current_page = message.page;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
// Send message to script
|
||||
function toScript(packet){
|
||||
sendToScript(packet)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue