close all tabs menu item

This commit is contained in:
nakst 2021-09-14 10:10:11 +01:00
parent 4206aae3f6
commit 599a2786d8
2 changed files with 12 additions and 0 deletions

View File

@ -861,6 +861,16 @@ int WindowTabBandMessage(EsElement *element, EsMessage *message) {
EsSyscall(ES_SYSCALL_WINDOW_MOVE, band->window->handle, (uintptr_t) &newBounds, 0, ES_FLAGS_DEFAULT);
}, band);
EsMenuAddItem(menu, band->window->isMaximised ? ES_ELEMENT_DISABLED : ES_FLAGS_DEFAULT,
band->items.Length() > 1 ? interfaceString_DesktopCloseAllTabs : interfaceString_DesktopCloseWindow, -1,
[] (EsMenu *, EsGeneric context) {
WindowTabBand *band = (WindowTabBand *) context.p;
for (uintptr_t i = 0; i < band->items.Length(); i++) {
WindowTabClose((WindowTab *) band->items[i]);
}
}, band);
EsMenuShow(menu);
} else {
return ReorderListMessage(band, message);

View File

@ -93,6 +93,8 @@ DEFINE_INTERFACE_STRING(DesktopCloseTab, "Close tab");
DEFINE_INTERFACE_STRING(DesktopMoveTabToNewWindow, "Move to new window");
DEFINE_INTERFACE_STRING(DesktopInspectUI, "Inspect UI");
DEFINE_INTERFACE_STRING(DesktopCenterWindow, "Center in screen");
DEFINE_INTERFACE_STRING(DesktopCloseWindow, "Close window");
DEFINE_INTERFACE_STRING(DesktopCloseAllTabs, "Close all tabs");
DEFINE_INTERFACE_STRING(DesktopSettingsApplication, "Settings");
DEFINE_INTERFACE_STRING(DesktopSettingsTitle, "Settings");