Package com.mucommander.ui.main.tabs

Examples of com.mucommander.ui.main.tabs.FileTableTab


      int tabsCounter = 0;
      Iterator<FileTableTab> tabsIterator = tabs.iterator();
     
      // Save tabs locations
      while (tabsIterator.hasNext()) {
        FileTableTab tab = tabsIterator.next();
        configuration.setVariable(getTabLocationVariable(index, isLeft, tabsCounter), tab.getLocation().toString());
        configuration.setVariable(getTabLockedVariable(index, isLeft, tabsCounter), tab.isLocked());
        configuration.setVariable(getTabTitleVariable(index, isLeft, tabsCounter), tab.getTitle());
        ++tabsCounter;
      }

      if (tabsCounter > 0) {
        // Save tabs count
View Full Code Here


                mainFrame.getActivePanel().getTabs().getTabsCount() > 1);
    }

    @Override
    public void performAction() {
      FileTableTab tab = mainFrame.getActivePanel().getTabs().closeCurrentTab();
      mainFrame.getInactivePanel().getTabs().add(tab);
    }
View Full Code Here

TOP

Related Classes of com.mucommander.ui.main.tabs.FileTableTab

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.