mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

jvergara
21.43.2009 3c745e6404629d39773c304c763efd587323ea2b
Fix for issue 3732 (Incosistency in use of icons in dialogs of setup and control panel)
Remove the icons from the dialogs in the QuickSetup.
1 files deleted
4 files modified
23 ■■■■■ changed files
opends/src/messages/messages/quicksetup.properties 3 ●●●●● patch | view | raw | blame | history
opends/src/quicksetup/org/opends/quicksetup/images/opends_logo_small.png patch | view | raw | blame | history
opends/src/quicksetup/org/opends/quicksetup/installer/ui/SecurityOptionsDialog.java 2 ●●● patch | view | raw | blame | history
opends/src/quicksetup/org/opends/quicksetup/ui/CertificateDialog.java 2 ●●● patch | view | raw | blame | history
opends/src/quicksetup/org/opends/quicksetup/ui/UIFactory.java 16 ●●●●● patch | view | raw | blame | history
opends/src/messages/messages/quicksetup.properties
@@ -664,9 +664,6 @@
INFO_OPEN_LDIF_FILE_DIALOG_TITLE=Choose an LDIF File
INFO_OPEN_SERVER_LOCATION_DIALOG_TITLE=Choose Installation Path
INFO_OPEN_ZIP_FILE_DIALOG_TITLE=Choose an OpenDS Installation Package (.zip)
# Only translate if the image is specific to the local
INFO_OPENDS_SMALL_ICON=images/opends_logo_small.png
INFO_OPENDS_SMALL_ICON_DESCRIPTION=OpenDS icon.
# Only translate if the color is specific to the local
INFO_OPTIONPANE_BACKGROUND_COLOR=255,255,255
INFO_ORACLE_ACTION_PROMPT=Have you performed the tasks described?
opends/src/quicksetup/org/opends/quicksetup/images/opends_logo_small.png
Binary files differ
opends/src/quicksetup/org/opends/quicksetup/installer/ui/SecurityOptionsDialog.java
@@ -608,7 +608,7 @@
    gbc.gridwidth = 4;
    gbc.insets = UIFactory.getEmptyInsets();
    gbc.insets.left = UIFactory.getCurrentStepPanelInsets().left;
    buttonsPanel.add(UIFactory.makeJLabel(UIFactory.IconType.OPENDS_SMALL,
    buttonsPanel.add(UIFactory.makeJLabel(UIFactory.IconType.NO_ICON,
        null, UIFactory.TextStyle.NO_STYLE), gbc);
    gbc.weightx = 1.0;
    gbc.gridwidth--;
opends/src/quicksetup/org/opends/quicksetup/ui/CertificateDialog.java
@@ -350,7 +350,7 @@
    gbc.gridwidth = 4;
    gbc.insets = UIFactory.getEmptyInsets();
    gbc.insets.left = UIFactory.getCurrentStepPanelInsets().left;
    buttonsPanel.add(UIFactory.makeJLabel(UIFactory.IconType.OPENDS_SMALL,
    buttonsPanel.add(UIFactory.makeJLabel(UIFactory.IconType.NO_ICON,
        null, UIFactory.TextStyle.NO_STYLE), gbc);
    gbc.weightx = 1.0;
    gbc.gridwidth--;
opends/src/quicksetup/org/opends/quicksetup/ui/UIFactory.java
@@ -613,10 +613,6 @@
     */
    INFORMATION_LARGE,
    /**
     * Icon of OpenDS.
     */
    OPENDS_SMALL,
    /**
     * Icon to create subsection title in Status Panel.
     */
    SUBSECTION_LEFT,
@@ -1516,10 +1512,6 @@
      key = INFO_INFORMATION_LARGE_ICON.get();
      break;
    case OPENDS_SMALL:
      key = INFO_OPENDS_SMALL_ICON.get();
      break;
    case SUBSECTION_LEFT:
      key = INFO_SUBSECTION_LEFT_ICON.get();
      break;
@@ -1608,10 +1600,6 @@
      description = INFO_INFORMATION_ICON_DESCRIPTION.get();
      break;
    case OPENDS_SMALL:
      description = INFO_OPENDS_SMALL_ICON_DESCRIPTION.get();
      break;
    case SUBSECTION_LEFT:
      description = INFO_SUBSECTION_LEFT_ICON_DESCRIPTION.get();
      break;
@@ -1700,10 +1688,6 @@
      tooltip = INFO_INFORMATION_ICON_TOOLTIP.get();
      break;
    case OPENDS_SMALL:
      tooltip = null;
      break;
    case SUBSECTION_LEFT:
      tooltip = null;
      break;