| | |
| | | gbc.fill = GridBagConstraints.HORIZONTAL; |
| | | |
| | | progressBarLabel = UIFactory.makeHtmlPane( |
| | | INFO_PROGRESSBAR_INITIAL_LABEL.get(), |
| | | null, |
| | | UIFactory.PROGRESS_FONT); |
| | | progressBarLabel.setOpaque(false); |
| | | progressBarLabel.setEditable(false); |
| | |
| | | } |
| | | }); |
| | | progressBarLabel.setEditorKit(htmlEditor); |
| | | String summaryText = UIFactory.applyFontToHtml( |
| | | String.valueOf(INFO_PROGRESSBAR_INITIAL_LABEL.get()), |
| | | UIFactory.PROGRESS_FONT); |
| | | progressBarLabel.setText(summaryText); |
| | | progressBarLabel.addHyperlinkListener(this); |
| | | panel.add(progressBarLabel, gbc); |
| | | |
| | |
| | | summaryText = "<form>"+summaryText+"</form>"; |
| | | } |
| | | } |
| | | |
| | | progressBarLabel.setText(summaryText); |
| | | |
| | | Integer v = descriptor.getProgressBarRatio(); |