Package net.sf.launch4j

Examples of net.sf.launch4j.FileChooserFilter


        .add("stayAlive", _stayAliveCheck);

    _dontWrapJarCheck.addChangeListener(new DontWrapJarChangeListener());

    _outfileButton.addActionListener(new BrowseActionListener(true, fc,
        new FileChooserFilter("Windows executables (.exe)", ".exe"),
        _outfileField));
    _jarButton.addActionListener(new BrowseActionListener(false, fc,
        new FileChooserFilter("Jar files", ".jar"), _jarField));
    _manifestButton.addActionListener(new BrowseActionListener(false, fc,
        new FileChooserFilter("Manifest files (.manifest)", ".manifest"),
        _manifestField));
    _iconButton.addActionListener(new BrowseActionListener(false, fc,
        new FileChooserFilter("Icon files (.ico)", ".ico"), _iconField));
  }
View Full Code Here


  public MainFrame() {
    showConfigName(null);
    setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);
    addWindowListener(new MainFrameListener());
    setGlassPane(new GlassPane(this));
    _fileChooser.setFileFilter(new FileChooserFilter(
        Messages.getString("MainFrame.config.files"),
        new String[] {".xml", ".cfg"}));

    _toolBar = new JToolBar();
    _toolBar.setFloatable(false);
View Full Code Here

        .add("splash.waitForWindow", _waitForWindowCheck, true)
        .add("splash.timeout", _timeoutField, "60")
        .add("splash.timeoutErr", _timeoutErrCheck, true);

    _splashFileButton.addActionListener(new BrowseActionListener(false, fc,
        new FileChooserFilter("Bitmap files (.bmp)", ".bmp"), _splashFileField));
  }
View Full Code Here

  public MainFrame() {
    showConfigName(null);
    setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);
    addWindowListener(new MainFrameListener());
    setGlassPane(new GlassPane(this));
    _fileChooser.setFileFilter(new FileChooserFilter(
        Messages.getString("MainFrame.config.files"),
        new String[] {".xml", ".cfg"}));

    _toolBar = new JToolBar();
    _toolBar.setFloatable(false);
View Full Code Here

TOP

Related Classes of net.sf.launch4j.FileChooserFilter

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.