Home
last modified time | relevance | path

Searched refs:nextTab (Results 1 – 25 of 244) sorted by relevance

12345678910

/dports/games/manaplus/manaplus-2.1.3.17/src/progs/manaplus/actions/
H A Dtabs.cpp49 socialWindow->nextTab(); in impHandler0()
59 itemShortcutWindow->nextTab(); in impHandler0()
79 spellShortcutWindow->nextTab(); in impHandler0()
97 InventoryWindow::nextTab(); in impHandler0()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.debug/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/
H A DLaunchConfigurationTabGroupWrapper.java84 ILaunchConfigurationTab nextTab = nextExtensionTab(); in next() local
85 if (nextTab == null) { in next()
87 nextTab = tabList.remove(0); in next()
91 nextTab = launchConfigurationTabExtension.getTab(); in next()
94 if (nextTab instanceof AbstractLaunchConfigurationTab) { in next()
95 String id = ((AbstractLaunchConfigurationTab)nextTab).getId(); in next()
100 return nextTab; in next()
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/android/java/src/org/chromium/chrome/browser/tabmodel/
H A DTabModelImpl.java282 Tab nextTab = null; in getNextTabIfClosed() local
284 nextTab = TabModelUtils.getCurrentTab(mModelDelegate.getCurrentModel()); in getNextTabIfClosed()
286 nextTab = currentTab; in getNextTabIfClosed()
289 nextTab = parentTab; in getNextTabIfClosed()
291 nextTab = adjacentTab; in getNextTabIfClosed()
293 nextTab = TabModelUtils.getCurrentTab(mModelDelegate.getModel(false)); in getNextTabIfClosed()
296 return nextTab != null && nextTab.isClosing() ? null : nextTab; in getNextTabIfClosed()
623 Tab nextTab = in removeTabAndSelectNext() local
640 boolean nextIsIncognito = nextTab == null ? false : nextTab.isIncognito(); in removeTabAndSelectNext()
641 int nextTabId = nextTab == null ? Tab.INVALID_TAB_ID : nextTab.getId(); in removeTabAndSelectNext()
[all …]
/dports/www/firefox-legacy/firefox-52.8.0esr/mobile/android/base/java/org/mozilla/gecko/
H A DTabs.java380 closeTab(tab, nextTab, false);
395 if (nextTab == null) {
399 selectTab(nextTab.getId());
422 Tab nextTab = getNextTabFrom(tab, getPrivate);
423 if (nextTab == null)
424 nextTab = getPreviousTabFrom(tab, getPrivate);
425 if (nextTab == null && getPrivate) {
429 nextTab = lastTab;
438 if (nextTab != null && nextTab.getParentId() == tab.getParentId())
439 return nextTab;
[all …]
/dports/lang/spidermonkey60/firefox-60.9.0/mobile/android/base/java/org/mozilla/gecko/
H A DTabs.java445 closeTab(tab, nextTab, false); in closeTab()
460 if (nextTab == null) { in closeTab()
464 selectTab(nextTab.getId()); in closeTab()
482 Tab nextTab = getNextTabFrom(tab, getPrivate); in getNextTab() local
483 if (nextTab == null) in getNextTab()
484 nextTab = getPreviousTabFrom(tab, getPrivate); in getNextTab()
485 if (nextTab == null && getPrivate) { in getNextTab()
489 nextTab = lastTab; in getNextTab()
498 if (nextTab != null && nextTab.getParentId() == tab.getParentId()) in getNextTab()
499 return nextTab; in getNextTab()
[all …]
/dports/net-p2p/eiskaltdcpp-cli/eiskaltdcpp-2.2.10/eiskaltdcpp-qt/src/
H A DMultiLineToolBar.cpp34 connect(this, SIGNAL(nextTab()), frame, SLOT(nextTab())); in MultiLineToolBar()
49 emit nextTab(); in wheelEvent()
H A DMultiLineToolBar.h31 void nextTab();
/dports/net-p2p/eiskaltdcpp-gtk/eiskaltdcpp-2.2.10/eiskaltdcpp-qt/src/
H A DMultiLineToolBar.cpp34 connect(this, SIGNAL(nextTab()), frame, SLOT(nextTab())); in MultiLineToolBar()
49 emit nextTab(); in wheelEvent()
/dports/net-p2p/eiskaltdcpp-lib/eiskaltdcpp-2.2.10/eiskaltdcpp-qt/src/
H A DMultiLineToolBar.cpp34 connect(this, SIGNAL(nextTab()), frame, SLOT(nextTab())); in MultiLineToolBar()
49 emit nextTab(); in wheelEvent()
/dports/net-p2p/eiskaltdcpp-data/eiskaltdcpp-2.2.10/eiskaltdcpp-qt/src/
H A DMultiLineToolBar.cpp34 connect(this, SIGNAL(nextTab()), frame, SLOT(nextTab())); in MultiLineToolBar()
49 emit nextTab(); in wheelEvent()
/dports/net-p2p/eiskaltdcpp-daemon/eiskaltdcpp-2.2.10/eiskaltdcpp-qt/src/
H A DMultiLineToolBar.cpp34 connect(this, SIGNAL(nextTab()), frame, SLOT(nextTab())); in MultiLineToolBar()
49 emit nextTab(); in wheelEvent()
/dports/science/jstrack/jstrack/extlib/tcllib1.19/textutil/
H A Dtabify.tcl147 set nextTab [expr {($currPos + $num) - ($currPos % $num)}]
148 set prevTab [expr {$nextTab - $num}]
153 if { ($currPos + 1) != $nextTab } {
/dports/science/jstrack/jstrack/extlib/textutil/
H A Dtabify.tcl147 set nextTab [expr {($currPos + $num) - ($currPos % $num)}]
148 set prevTab [expr {$nextTab - $num}]
153 if { ($currPos + 1) != $nextTab } {
/dports/devel/tcllib/tcllib-1.20/modules/textutil/
H A Dtabify.tcl147 set nextTab [expr {($currPos + $num) - ($currPos % $num)}]
148 set prevTab [expr {$nextTab - $num}]
153 if { ($currPos + 1) != $nextTab } {
/dports/devel/tcllibc/tcllib-1.20/modules/textutil/
H A Dtabify.tcl147 set nextTab [expr {($currPos + $num) - ($currPos % $num)}]
148 set prevTab [expr {$nextTab - $num}]
153 if { ($currPos + 1) != $nextTab } {
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/android/java/src/org/chromium/chrome/browser/customtabs/
H A DCloseButtonNavigator.java106 Tab nextTab = mTabProvider.getTab(); in navigateOnClose() local
107 if (nextTab != null && isLandingPage(nextTab.getUrlString())) { in navigateOnClose()
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/android/java/src/org/chromium/chrome/browser/compositor/layouts/
H A DLayoutManagerChromePhone.java128 Tab nextTab = getTabById(nextId);
129 if (nextTab != null && nextTab.getView() != null) nextTab.getView().requestFocus();
/dports/www/firefox-esr/firefox-91.8.0/browser/modules/
H A DTabsList.jsm146 let nextTab = newTab.nextElementSibling;
148 while (nextTab && !this.filterFn(nextTab)) {
149 nextTab = nextTab.nextElementSibling;
153 let nextRow = this.tabToElement.get(nextTab);
/dports/lang/spidermonkey78/firefox-78.9.0/browser/modules/
H A DTabsList.jsm146 let nextTab = newTab.nextElementSibling;
148 while (nextTab && !this.filterFn(nextTab)) {
149 nextTab = nextTab.nextElementSibling;
153 let nextRow = this.tabToElement.get(nextTab);
/dports/www/firefox/firefox-99.0/browser/modules/
H A DTabsList.jsm146 let nextTab = newTab.nextElementSibling;
148 while (nextTab && !this.filterFn(nextTab)) {
149 nextTab = nextTab.nextElementSibling;
153 let nextRow = this.tabToElement.get(nextTab);
/dports/mail/thunderbird/thunderbird-91.8.0/browser/modules/
H A DTabsList.jsm146 let nextTab = newTab.nextElementSibling;
148 while (nextTab && !this.filterFn(nextTab)) {
149 nextTab = nextTab.nextElementSibling;
153 let nextRow = this.tabToElement.get(nextTab);
/dports/devel/arduino-core/Arduino-b439a77/app/src/processing/app/
H A DEditorHeader.java107 public final Action nextTab = new SimpleAction(tr("Next Tab"), field in EditorHeader.Actions
116 Keys.bind(EditorHeader.this, nextTab); in Actions()
120 Keys.bind(EditorHeader.this, nextTab, Keys.ctrl(KeyEvent.VK_TAB)); in Actions()
320 menu.add(new JMenuItem(actions.nextTab)); in rebuildMenu()
/dports/x11-fm/krusader2/krusader-2.7.2/krusader/
H A Dtabactions.cpp40 …tion(i18n("Next Tab"), QString(), KStandardShortcut::tabNext(), this, SLOT(nextTab()), "next tab"); in TabActions()
87 void TabActions::nextTab() in nextTab() function in TabActions
/dports/lang/smalltalk/smalltalk-3.2.5/packages/visualgst/Commands/TabsMenus/
H A DNextTabCommand.st12 target shell nextTab
/dports/net-im/chatterino2/chatterino2-2.3.4/src/widgets/
H A DWindow.cpp426 QAction *nextTab = windowMenu->addAction(QString("Select next tab")); in addMenuBar() local
427 nextTab->setShortcuts({QKeySequence("Meta+Tab")}); in addMenuBar()
428 connect(nextTab, &QAction::triggered, this, [=] { in addMenuBar()

12345678910