forked from KNEMC/KLALB
35 lines
564 B
Java
35 lines
564 B
Java
package org.kne.ui;
|
|
|
|
import java.awt.Graphics;
|
|
import java.awt.Rectangle;
|
|
|
|
import javax.swing.JComponent;
|
|
import javax.swing.plaf.metal.MetalTabbedPaneUI;
|
|
|
|
public class KTabUI extends MetalTabbedPaneUI{
|
|
|
|
@Override
|
|
public void paint(Graphics g, JComponent c) {
|
|
|
|
}
|
|
|
|
@Override
|
|
protected void paintContentBorder(Graphics g, int tabPlacement, int selectedIndex) {
|
|
|
|
}
|
|
|
|
@Override
|
|
protected void paintTabBorder(Graphics g, int tabPlacement, int tabIndex, int x, int y, int w, int h,
|
|
boolean isSelected) {
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|