mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-04 04:05:09 +00:00
As3ScriptReplacer as interface
Better handling missing directories Tip for directories in advanced setting refactored - link to Flex SDK Use Flex SDK switch in Advanced settings
This commit is contained in:
63
src/com/jpexs/decompiler/flash/gui/HtmlLabel.java
Normal file
63
src/com/jpexs/decompiler/flash/gui/HtmlLabel.java
Normal file
@@ -0,0 +1,63 @@
|
||||
/*
|
||||
* Copyright (C) 2016 Jindra
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package com.jpexs.decompiler.flash.gui;
|
||||
|
||||
import java.awt.Color;
|
||||
import javax.swing.JEditorPane;
|
||||
import javax.swing.JLabel;
|
||||
import javax.swing.event.HyperlinkEvent;
|
||||
|
||||
public class HtmlLabel extends JEditorPane {
|
||||
|
||||
private JLabel label = new JLabel();
|
||||
private String rawText;
|
||||
|
||||
public HtmlLabel() {
|
||||
this("");
|
||||
}
|
||||
|
||||
public HtmlLabel(String text) {
|
||||
super("text/html", "");
|
||||
setText(text);
|
||||
setEditable(false);
|
||||
setFocusable(false);
|
||||
setOpaque(false);
|
||||
addHyperlinkListener((HyperlinkEvent hle) -> {
|
||||
if (HyperlinkEvent.EventType.ACTIVATED.equals(hle.getEventType())) {
|
||||
View.navigateUrl(hle.getURL().toString());
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setText(String t) {
|
||||
String modText = t;
|
||||
if (!t.equals("")) {
|
||||
Color fgColor = label.getForeground();
|
||||
|
||||
modText = "<body style=\"font-size:" + label.getFont().getSize() + "pt; font-family: " + label.getFont().getFamily() + "; color:rgb(" + fgColor.getRed() + "," + fgColor.getGreen() + "," + fgColor.getBlue() + ");\">" + t + "</body>";
|
||||
}
|
||||
this.rawText = t;
|
||||
super.setText(modText);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getText() {
|
||||
return rawText;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user