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
| | |
| | | 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? |
| | |
| | | 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--; |
| | |
| | | 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--; |
| | |
| | | */ |
| | | INFORMATION_LARGE, |
| | | /** |
| | | * Icon of OpenDS. |
| | | */ |
| | | OPENDS_SMALL, |
| | | /** |
| | | * Icon to create subsection title in Status Panel. |
| | | */ |
| | | SUBSECTION_LEFT, |
| | |
| | | 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; |
| | |
| | | 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; |
| | |
| | | tooltip = INFO_INFORMATION_ICON_TOOLTIP.get(); |
| | | break; |
| | | |
| | | case OPENDS_SMALL: |
| | | tooltip = null; |
| | | break; |
| | | |
| | | case SUBSECTION_LEFT: |
| | | tooltip = null; |
| | | break; |