com.l2fprod.common.swing.BannerPanel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of orbit-image-analysis Show documentation
Show all versions of orbit-image-analysis Show documentation
Orbit, a versatile image analysis software for biological image-based quantification
/**
* $ $ License.
*
* Copyright $ L2FProd.com
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.l2fprod.common.swing;
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Dimension;
import javax.swing.Icon;
import javax.swing.JEditorPane;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.UIManager;
import javax.swing.border.CompoundBorder;
import javax.swing.border.EtchedBorder;
import javax.swing.text.JTextComponent;
/**
* BannerPanel.
*
*/
public class BannerPanel extends JPanel {
private JLabel titleLabel;
private JTextComponent subtitleLabel;
private JLabel iconLabel;
public BannerPanel() {
setBorder(
new CompoundBorder(new EtchedBorder(), LookAndFeelTweaks.PANEL_BORDER));
setOpaque(true);
setBackground(UIManager.getColor("Table.background"));
titleLabel = new JLabel();
titleLabel.setOpaque(false);
subtitleLabel = new JEditorPane("text/html", "");
subtitleLabel.setFont(titleLabel.getFont());
LookAndFeelTweaks.makeBold(titleLabel);
LookAndFeelTweaks.makeMultilineLabel(subtitleLabel);
LookAndFeelTweaks.htmlize(subtitleLabel);
iconLabel = new JLabel();
iconLabel.setPreferredSize(new Dimension(50, 50));
setLayout(new BorderLayout());
JPanel nestedPane = new JPanel(new BorderLayout());
nestedPane.setOpaque(false);
nestedPane.add("North", titleLabel);
nestedPane.add("Center", subtitleLabel);
add("Center", nestedPane);
add("East", iconLabel);
}
public void setTitleColor(Color color) {
titleLabel.setForeground(color);
}
public Color getTitleColor() {
return titleLabel.getForeground();
}
public void setSubtitleColor(Color color) {
subtitleLabel.setForeground(color);
}
public Color getSubtitleColor() {
return subtitleLabel.getForeground();
}
public void setTitle(String title) {
titleLabel.setText(title);
}
public String getTitle() {
return titleLabel.getText();
}
public void setSubtitle(String subtitle) {
subtitleLabel.setText(subtitle);
}
public String getSubtitle() {
return subtitleLabel.getText();
}
public void setSubtitleVisible(boolean b) {
subtitleLabel.setVisible(b);
}
public boolean isSubtitleVisible() {
return subtitleLabel.isVisible();
}
public void setIcon(Icon icon) {
iconLabel.setIcon(icon);
}
public Icon getIcon() {
return iconLabel.getIcon();
}
public void setIconVisible(boolean b) {
iconLabel.setVisible(b);
}
public boolean isIconVisible() {
return iconLabel.isVisible();
}
}