Package com.mucommander.ui.main.tabs

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


        // Opens browsable files in the destination FolderPanel.
        if(resolvedFile.isBrowsable()) {
          resolvedFile = MuConfigurations.getPreferences().getVariable(MuPreference.CD_FOLLOWS_SYMLINKS, MuPreferences.DEFAULT_CD_FOLLOWS_SYMLINKS) ? resolvedFile : file;

          FileTableTabs tabs = destination.getTabs();
          if (tabs.getCurrentTab().isLocked())
            tabs.add(resolvedFile);
          else
            destination.tryChangeCurrentFolder(resolvedFile);
        }

        // Opens local files using their native associations.
View Full Code Here


        fileTable = new FileTable(mainFrame, this, conf);

        locationChanger = new LocationChanger(mainFrame, this, locationManager);
       
        // Create the Tabs (Must be called after the fileTable was created and current folder was set)
        tabs = new FileTableTabs(mainFrame, this, initialTabs);
       
    // Select the tab that was previously selected on last run
    tabs.selectTab(indexOfSelectedTab);
   
    tabs.addActiveTabListener(this);
View Full Code Here

TOP

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

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.