Menu bar item

This commit is contained in:
armored-dragon 2024-11-20 02:41:27 -06:00
parent 1f4d163ed7
commit f5585605af
No known key found for this signature in database
GPG key ID: C7207ACC3382AD8B
3 changed files with 36 additions and 30 deletions

View file

@ -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, [] {

View file

@ -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);
}
})();

View file

@ -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)
}
}