Package net.ftb.gui.dialogs

Examples of net.ftb.gui.dialogs.TexturePackFilterDialog


        filter = new JButton(I18N.getLocaleString("FILTER_SETTINGS"));
        filter.setBounds(5, 5, 105, 25);
        filter.addActionListener(new ActionListener() {
            @Override
            public void actionPerformed (ActionEvent arg0) {
                TexturePackFilterDialog filter = new TexturePackFilterDialog(instance);
                filter.setVisible(true);
            }
        });
        add(filter);

        String filterTextColor = LauncherStyle.getColorAsString(LauncherStyle.getCurrentStyle().filterTextColor);
View Full Code Here

TOP

Related Classes of net.ftb.gui.dialogs.TexturePackFilterDialog

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.