Start working on list GUI

This commit is contained in:
Vortrex
2022-01-09 05:22:49 -06:00
parent 9ac9a7a2b6
commit a526497f48

View File

@@ -73,4 +73,35 @@ function initListGUI() {
logToConsole(LOG_DEBUG, `[VRR.GUI] Created list dialog GUI`);
}
// ===========================================================================
function showListGUI() {
closeAllWindows();
logToConsole(LOG_DEBUG, `[VRR.GUI] Showing login window`);
setChatWindowEnabled(false);
mexui.setInput(true);
listDialog.window.shown = true;
guiSubmitKey = checkListDialogSelection;
guiUpKey = selectPreviousListItem;
guiDownKey = selectNextListItem;
}
// ===========================================================================
function checkListDialogSelection() {
}
// ===========================================================================
function selectPreviousListItem() {
}
// ===========================================================================
function selectNextListItem() {
}
// ===========================================================================