Ignore:
Timestamp:
2012-11-15T19:05:19+01:00 (12 years ago)
Author:
malcolmh
Message:

save

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/smed2/src/panels/PanelMain.java

    r28722 r28938  
    77import java.awt.Rectangle;
    88import java.awt.event.ActionListener;
    9 import java.io.File;
    109
    1110import javax.swing.*;
    1211
    1312import org.openstreetmap.josm.Main;
     13
     14import smed2.Smed2Action;
    1415
    1516import S57.S57dat;
     
    2829                }
    2930        };
    30         public JButton openButton = null;
     31        private JButton openButton = null;
    3132        final JFileChooser fc = new JFileChooser();
    3233        private ActionListener alOpen = new ActionListener() {
    3334                public void actionPerformed(java.awt.event.ActionEvent e) {
    3435                        if (e.getSource() == openButton) {
     36        messageBar.setText("Select file");
    3537        int returnVal = fc.showOpenDialog(Main.parent);
    3638        if (returnVal == JFileChooser.APPROVE_OPTION) {
    37             new S57dat(fc.getSelectedFile());
    38             messageBar.setText("Opening file");
    39         }
     39          Smed2Action.panelS57.startImport(fc.getSelectedFile());
     40         } else {
     41           messageBar.setText("");
     42         }
    4043      }
    4144                }
     
    5558               
    5659    messageBar = new JTextField();
    57     messageBar.setBounds(new Rectangle(40, 430, 320, 20));
     60    messageBar.setBounds(40, 430, 320, 20);
    5861    messageBar.setEditable(false);
    5962    messageBar.setBackground(Color.WHITE);
    6063    add(messageBar);
    6164                openButton = new JButton(new ImageIcon(getClass().getResource("/images/fileButton.png")));
    62                 openButton.setBounds(new Rectangle(10, 430, 20, 20));
     65                openButton.setBounds(10, 430, 20, 20);
    6366                add(openButton);
    6467                openButton.addActionListener(alOpen);
    6568                saveButton = new JButton();
    66                 saveButton.setBounds(new Rectangle(370, 430, 100, 20));
     69                saveButton.setBounds(370, 430, 100, 20);
    6770                saveButton.setText(tr("Save"));
    6871                add(saveButton);
Note: See TracChangeset for help on using the changeset viewer.