2 * Copyright © 2012 Keith Packard <keithp@keithp.com>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; version 2 of the License.
8 * This program is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
18 package org.altusmetrum.micropeak;
21 import java.awt.event.*;
23 import javax.swing.filechooser.FileNameExtensionFilter;
25 import java.util.concurrent.*;
27 import org.altusmetrum.altoslib_10.*;
28 import org.altusmetrum.altosuilib_10.*;
30 public class MicroSave extends JFileChooser {
35 public static void save(File file, MicroData data) throws FileNotFoundException, IOException {
36 FileOutputStream fos = new FileOutputStream(file);
41 public boolean runDialog() {
45 ret = showSaveDialog(frame);
46 if (ret != APPROVE_OPTION)
50 file = getSelectedFile();
53 if (!file.getName().contains(".")) {
54 String fullname = file.getPath();
55 file = new File(fullname.concat(".mpd"));
57 filename = file.getName();
59 if (file.isDirectory()) {
60 JOptionPane.showMessageDialog(frame,
61 String.format("\"%s\" is a directory",
64 JOptionPane.ERROR_MESSAGE);
67 int r = JOptionPane.showConfirmDialog(frame,
68 String.format("\"%s\" already exists. Overwrite?",
71 JOptionPane.YES_NO_OPTION);
72 if (r != JOptionPane.YES_OPTION)
75 if (!file.canWrite()) {
76 JOptionPane.showMessageDialog(frame,
77 String.format("\"%s\" is not writable",
80 JOptionPane.ERROR_MESSAGE);
86 AltosUIPreferences.set_last_logdir(file.getParentFile());
87 data.set_name(filename);
89 } catch (FileNotFoundException fe) {
90 JOptionPane.showMessageDialog(frame,
93 JOptionPane.ERROR_MESSAGE);
94 } catch (IOException ioe) {
99 public MicroSave(JFrame frame, MicroData data) {
102 setDialogTitle("Save MicroPeak Data File");
103 setFileFilter(new FileNameExtensionFilter("MicroPeak data file",
105 setCurrentDirectory(AltosUIPreferences.last_logdir());
106 setSelectedFile(MicroFile.make());