Changeset 10367 in josm


Ignore:
Timestamp:
2016-06-12T23:40:12+02:00 (8 years ago)
Author:
stoecker
Message:

don't use SideButton outside side panel

Location:
trunk/src/org/openstreetmap/josm/gui/oauth
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/oauth/FullyAutomaticAuthorizationUI.java

    r10183 r10367  
    1919import javax.swing.AbstractAction;
    2020import javax.swing.BorderFactory;
     21import javax.swing.JButton;
    2122import javax.swing.JLabel;
    2223import javax.swing.JOptionPane;
     
    3334import org.openstreetmap.josm.gui.HelpAwareOptionPane;
    3435import org.openstreetmap.josm.gui.PleaseWaitRunnable;
    35 import org.openstreetmap.josm.gui.SideButton;
    3636import org.openstreetmap.josm.gui.help.HelpUtil;
    3737import org.openstreetmap.josm.gui.preferences.server.UserNameValidator;
     
    201201        tfPassword.getDocument().addDocumentListener(runAuthorisationAction);
    202202        tfUserName.getDocument().addDocumentListener(runAuthorisationAction);
    203         pnl.add(new SideButton(runAuthorisationAction));
     203        pnl.add(new JButton(runAuthorisationAction));
    204204        return pnl;
    205205    }
     
    236236        // the actions
    237237        JPanel pnl1 = new JPanel(new FlowLayout(FlowLayout.LEFT));
    238         pnl1.add(new SideButton(new BackAction()));
    239         pnl1.add(new SideButton(new TestAccessTokenAction()));
     238        pnl1.add(new JButton(new BackAction()));
     239        pnl1.add(new JButton(new TestAccessTokenAction()));
    240240        gc.gridy = 2;
    241241        pnl.add(pnl1, gc);
     
    325325        RunAuthorisationAction() {
    326326            putValue(NAME, tr("Authorize now"));
    327             putValue(SMALL_ICON, ImageProvider.get("oauth", "oauth-small"));
     327            new ImageProvider("oauth", "oauth-small").getResource().getImageIcon(this);
    328328            putValue(SHORT_DESCRIPTION, tr("Click to redirect you to the authorization form on the JOSM web site"));
    329329            updateEnabledState();
     
    362362            putValue(NAME, tr("Back"));
    363363            putValue(SHORT_DESCRIPTION, tr("Run the automatic authorization steps again"));
    364             putValue(SMALL_ICON, ImageProvider.get("dialogs", "previous"));
     364            new ImageProvider("dialogs", "previous").getResource().getImageIcon(this);
    365365        }
    366366
     
    377377        TestAccessTokenAction() {
    378378            putValue(NAME, tr("Test Access Token"));
    379             putValue(SMALL_ICON, ImageProvider.get("logo"));
     379            new ImageProvider("logo").getResource().getImageIcon(this);
    380380        }
    381381
  • trunk/src/org/openstreetmap/josm/gui/oauth/ManualAuthorizationUI.java

    r10189 r10367  
    1616import javax.swing.AbstractAction;
    1717import javax.swing.BorderFactory;
     18import javax.swing.JButton;
    1819import javax.swing.JCheckBox;
    1920import javax.swing.JLabel;
     
    2526
    2627import org.openstreetmap.josm.data.oauth.OAuthToken;
    27 import org.openstreetmap.josm.gui.SideButton;
    2828import org.openstreetmap.josm.gui.preferences.server.OAuthAccessTokenHolder;
    2929import org.openstreetmap.josm.gui.widgets.DefaultTextComponentValidator;
     
    147147        JPanel pnl = new JPanel(new FlowLayout(FlowLayout.LEFT));
    148148        TestAccessTokenAction actTestAccessToken = new TestAccessTokenAction();
    149         pnl.add(new SideButton(actTestAccessToken));
     149        pnl.add(new JButton(actTestAccessToken));
    150150        this.addPropertyChangeListener(actTestAccessToken);
    151151        return pnl;
     
    223223        TestAccessTokenAction() {
    224224            putValue(NAME, tr("Test Access Token"));
    225             putValue(SMALL_ICON, ImageProvider.get("oauth", "oauth-small"));
     225            new ImageProvider("oauth", "oauth-small").getResource().getImageIcon(this);
    226226            putValue(SHORT_DESCRIPTION, tr("Click to test the Access Token"));
    227227            updateEnabledState();
  • trunk/src/org/openstreetmap/josm/gui/oauth/OAuthAuthorizationWizard.java

    r10254 r10367  
    2626import javax.swing.AbstractAction;
    2727import javax.swing.BorderFactory;
     28import javax.swing.JButton;
    2829import javax.swing.JComponent;
    2930import javax.swing.JDialog;
     
    4243import org.openstreetmap.josm.data.oauth.OAuthParameters;
    4344import org.openstreetmap.josm.data.oauth.OAuthToken;
    44 import org.openstreetmap.josm.gui.SideButton;
    4545import org.openstreetmap.josm.gui.help.ContextSensitiveHelpAction;
    4646import org.openstreetmap.josm.gui.help.HelpUtil;
     
    9999        pnlManualAuthorisationUI.addPropertyChangeListener(actAcceptAccessToken);
    100100
    101         pnl.add(new SideButton(actAcceptAccessToken));
    102         pnl.add(new SideButton(new CancelAction()));
    103         pnl.add(new SideButton(new ContextSensitiveHelpAction(HelpUtil.ht("/Dialog/OAuthAuthorisationWizard"))));
     101        pnl.add(new JButton(actAcceptAccessToken));
     102        pnl.add(new JButton(new CancelAction()));
     103        pnl.add(new JButton(new ContextSensitiveHelpAction(HelpUtil.ht("/Dialog/OAuthAuthorisationWizard"))));
    104104
    105105        return pnl;
     
    351351        CancelAction() {
    352352            putValue(NAME, tr("Cancel"));
    353             putValue(SMALL_ICON, ImageProvider.get("cancel"));
     353            new ImageProvider("cancel").getResource().getImageIcon(this);
    354354            putValue(SHORT_DESCRIPTION, tr("Close the dialog and cancel authorization"));
    355355        }
     
    373373        AcceptAccessTokenAction() {
    374374            putValue(NAME, tr("Accept Access Token"));
    375             putValue(SMALL_ICON, ImageProvider.get("ok"));
     375            new ImageProvider("ok").getResource().getImageIcon(this);
    376376            putValue(SHORT_DESCRIPTION, tr("Close the dialog and accept the Access Token"));
    377377            updateEnabledState(null);
  • trunk/src/org/openstreetmap/josm/gui/oauth/SemiAutomaticAuthorizationUI.java

    r10183 r10367  
    1818import javax.swing.AbstractAction;
    1919import javax.swing.BorderFactory;
     20import javax.swing.JButton;
    2021import javax.swing.JCheckBox;
    2122import javax.swing.JLabel;
     
    2324
    2425import org.openstreetmap.josm.data.oauth.OAuthToken;
    25 import org.openstreetmap.josm.gui.SideButton;
    2626import org.openstreetmap.josm.gui.preferences.server.OAuthAccessTokenHolder;
    2727import org.openstreetmap.josm.gui.util.GuiHelper;
     
    195195
    196196            JPanel pnl1 = new JPanel(new FlowLayout(FlowLayout.LEFT));
    197             pnl1.add(new SideButton(new RetrieveRequestTokenAction()));
     197            pnl1.add(new JButton(new RetrieveRequestTokenAction()));
    198198            gc.fill = GridBagConstraints.HORIZONTAL;
    199199            gc.weightx = 1.0;
     
    269269        protected JPanel buildActionPanel() {
    270270            JPanel pnl = new JPanel(new FlowLayout(FlowLayout.LEFT));
    271             pnl.add(new SideButton(new BackAction()));
    272             pnl.add(new SideButton(new RetrieveAccessTokenAction()));
     271            pnl.add(new JButton(new BackAction()));
     272            pnl.add(new JButton(new RetrieveAccessTokenAction()));
    273273            return pnl;
    274274        }
     
    292292                putValue(NAME, tr("Back"));
    293293                putValue(SHORT_DESCRIPTION, tr("Go back to step 1/3"));
    294                 putValue(SMALL_ICON, ImageProvider.get("dialogs", "previous"));
     294                new ImageProvider("dialogs", "previous").getResource().getImageIcon(this);
    295295            }
    296296
     
    349349        protected JPanel buildActionPanel() {
    350350            JPanel pnl = new JPanel(new FlowLayout(FlowLayout.LEFT));
    351             pnl.add(new SideButton(new RestartAction()));
    352             pnl.add(new SideButton(new TestAccessTokenAction()));
     351            pnl.add(new JButton(new RestartAction()));
     352            pnl.add(new JButton(new TestAccessTokenAction()));
    353353            return pnl;
    354354        }
     
    368368                putValue(NAME, tr("Restart"));
    369369                putValue(SHORT_DESCRIPTION, tr("Go back to step 1/3"));
    370                 putValue(SMALL_ICON, ImageProvider.get("dialogs", "previous"));
     370                new ImageProvider("dialogs", "previous").getResource().getImageIcon(this);
    371371            }
    372372
     
    389389        RetrieveRequestTokenAction() {
    390390            putValue(NAME, tr("Retrieve Request Token"));
    391             putValue(SMALL_ICON, ImageProvider.get("oauth", "oauth-small"));
     391            new ImageProvider("oauth", "oauth-small").getResource().getImageIcon(this);
    392392            putValue(SHORT_DESCRIPTION, tr("Click to retrieve a Request Token"));
    393393        }
     
    425425        RetrieveAccessTokenAction() {
    426426            putValue(NAME, tr("Retrieve Access Token"));
    427             putValue(SMALL_ICON, ImageProvider.get("oauth", "oauth-small"));
     427            new ImageProvider("oauth", "oauth-small").getResource().getImageIcon(this);
    428428            putValue(SHORT_DESCRIPTION, tr("Click to retrieve an Access Token"));
    429429        }
     
    462462        TestAccessTokenAction() {
    463463            putValue(NAME, tr("Test Access Token"));
    464             putValue(SMALL_ICON, ImageProvider.get("oauth", "oauth-small"));
     464            new ImageProvider("oauth", "oauth-small").getResource().getImageIcon(this);
    465465            putValue(SHORT_DESCRIPTION, tr("Click to test the Access Token"));
    466466        }
Note: See TracChangeset for help on using the changeset viewer.