Changeset 17356 in osm for applications


Ignore:
Timestamp:
2009-08-30T17:14:18+02:00 (15 years ago)
Author:
guggis
Message:

Updated to ToggleDialog refactoring in JOSM 2005
Clean up of @deprecated OptionPaneUtil

Location:
applications/editors/josm/plugins/agpifoj
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/agpifoj/build.xml

    r16784 r17356  
    3434                <attribute name="Plugin-Early" value="false"/>
    3535                <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/index.php/JOSM/Plugins/AgPifoJ"/>
    36                 <attribute name="Plugin-Mainversion" value="1893"/>
     36                <attribute name="Plugin-Mainversion" value="2005"/>
    3737                <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
    3838            </manifest>
  • applications/editors/josm/plugins/agpifoj/src/org/openstreetmap/josm/plugins/agpifoj/CorrelateGpxWithImages.java

    r16784 r17356  
    148148                            cbGpx.setSelectedIndex(i);
    149149                            if (!sel.getName().equals(wrapper.name)) {
    150                                 OptionPaneUtil.showMessageDialog(
     150                                JOptionPane.showMessageDialog(
    151151                                                Main.parent,
    152152                                        tr("File {0} is loaded yet under the name \"{1}\"", sel.getName(), wrapper.name),
     
    172172                } catch (SAXException x) {
    173173                    x.printStackTrace();
    174                     OptionPaneUtil.showMessageDialog(
     174                    JOptionPane.showMessageDialog(
    175175                                Main.parent,
    176176                                tr("Error while parsing {0}",sel.getName())+": "+x.getMessage(),
     
    181181                } catch (IOException x) {
    182182                    x.printStackTrace();
    183                     OptionPaneUtil.showMessageDialog(
     183                    JOptionPane.showMessageDialog(
    184184                                Main.parent,
    185185                                tr("Could not read \"{0}\"",sel.getName())+"\n"+x.getMessage(),
     
    386386            boolean isOk = false;
    387387            while (! isOk) {
    388                 int answer = OptionPaneUtil.showConfirmationDialog(
     388                int answer = JOptionPane.showConfirmDialog(
    389389                                Main.parent, panel,
    390390                                tr("Synchronize time from a photo of the GPS receiver"),
     
    402402                            - dateFormat.parse(tfGpsTime.getText()).getTime();
    403403                } catch(ParseException e) {
    404                     OptionPaneUtil.showMessageDialog(Main.parent, tr("Error while parsing the date.\n"
     404                    JOptionPane.showMessageDialog(Main.parent, tr("Error while parsing the date.\n"
    405405                            + "Please use the requested format"),
    406406                            tr("Invalid date"), JOptionPane.ERROR_MESSAGE );
     
    586586
    587587            if (item == null || ! (item instanceof GpxDataWrapper)) {
    588                 OptionPaneUtil.showMessageDialog(Main.parent, tr("You should select a GPX track"),
     588                JOptionPane.showMessageDialog(Main.parent, tr("You should select a GPX track"),
    589589                                              tr("No selected GPX track"), JOptionPane.ERROR_MESSAGE );
    590590                continue;
     
    599599            Float timezoneValue = parseTimezone(tfTimezone.getText().trim());
    600600            if (timezoneValue == null) {
    601                 OptionPaneUtil.showMessageDialog(Main.parent, tr("Error while parsing timezone.\nExpected format: {0}", "+H:MM"),
     601                JOptionPane.showMessageDialog(Main.parent, tr("Error while parsing timezone.\nExpected format: {0}", "+H:MM"),
    602602                        tr("Invalid timezone"), JOptionPane.ERROR_MESSAGE);
    603603                continue;
     
    612612                    delta = Long.parseLong(deltaText);
    613613                } catch(NumberFormatException nfe) {
    614                     OptionPaneUtil.showMessageDialog(Main.parent, tr("Error while parsing offset.\nExpected format: {0}", "number"),
     614                    JOptionPane.showMessageDialog(Main.parent, tr("Error while parsing offset.\nExpected format: {0}", "number"),
    615615                            tr("Invalid offset"), JOptionPane.ERROR_MESSAGE);
    616616                    continue;
     
    691691        // no images found, exit
    692692        if(autoImgs.size() <= 0) {
    693             OptionPaneUtil.showMessageDialog(Main.parent,
     693            JOptionPane.showMessageDialog(Main.parent,
    694694                tr("The selected photos don't contain time information."),
    695695                tr("Photos don't contain time information"), JOptionPane.WARNING_MESSAGE);
     
    698698
    699699        AgpifojDialog dialog = AgpifojDialog.getInstance();
    700         dialog.action.button.setSelected(true);
    701         dialog.action.actionPerformed(null);
     700        dialog.showDialog();
    702701        // Will show first photo if none is selected yet
    703702        if(!dialog.hasImage())
     
    727726        // No GPX timestamps found, exit
    728727        if(firstGPXDate < 0) {
    729             OptionPaneUtil.showMessageDialog(Main.parent,
     728            JOptionPane.showMessageDialog(Main.parent,
    730729                tr("The selected GPX track doesn't contain timestamps. Please select another one."),
    731730                tr("GPX Track has no time information"), JOptionPane.WARNING_MESSAGE);
     
    864863            sldSeconds.setValue(offset%60);
    865864        } catch(Exception e) {
    866             OptionPaneUtil.showMessageDialog(Main.parent,
     865            JOptionPane.showMessageDialog(Main.parent,
    867866                tr("An error occurred while trying to match the photos to the GPX track."
    868867                    +" You can adjust the sliders to manually match the photos."),
Note: See TracChangeset for help on using the changeset viewer.