Package net.sf.latexdraw.ui.dialog

Examples of net.sf.latexdraw.ui.dialog.ExportDialog


   * @return The export dialog to select a path.
   * @since 3.0
   */
  protected ExportDialog getExportDialog(final ExportFormat format) {
    if(fileChooserExport==null)
      fileChooserExport = new ExportDialog(pathExport);// currentFile==null ? pathExport : currentFile.getPath());

    // Setting the dialog.
    fileChooserExport.removeChoosableFileFilter(fileChooserExport.getFileFilter());
    fileChooserExport.setFileFilter(fileChooserExport.getAcceptAllFileFilter());
    fileChooserExport.setFileFilter(format.getFilter());
View Full Code Here

TOP

Related Classes of net.sf.latexdraw.ui.dialog.ExportDialog

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.