Package net.ftb.gui

Examples of net.ftb.gui.ChooseDir


        setupGUI();

        getRootPane().setDefaultButton(applyButton);

        installPathBrowse.addActionListener(new ChooseDir(this));

        installPath.setText(OSUtils.getDefInstallPath());

        applyButton.addActionListener(new ActionListener() {
            @Override
View Full Code Here


        this.settings = settings;
        setBorder(new EmptyBorder(5, 5, 5, 5));

        installBrowseBtn = new JButton("...");
        installBrowseBtn.setBounds(786, 11, 49, 28);
        installBrowseBtn.addActionListener(new ChooseDir(this));
        setLayout(null);
        add(installBrowseBtn);

        lblInstallFolder = new JLabel(I18N.getLocaleString("INSTALL_FOLDER"));
        lblInstallFolder.setBounds(10, 11, 127, 28);
View Full Code Here

        tabbedPane.setSelectedIndex(0);

        enabledModsLst.setListData(getEnabled());
        disabledModsLst.setListData(getDisabled());

        addMod.addActionListener(new ChooseDir(this));

        tabbedPane.addChangeListener(new ChangeListener() {
            @Override
            public void stateChanged (ChangeEvent arg0) {
                currentTab = Tab.values()[tabbedPane.getSelectedIndex()];
View Full Code Here

TOP

Related Classes of net.ftb.gui.ChooseDir

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.