39 lines
1.2 KiB
Java
39 lines
1.2 KiB
Java
/*
|
|
* To change this template, choose Tools | Templates
|
|
* and open the template in the editor.
|
|
*/
|
|
package eric.GUI.window;
|
|
|
|
import eric.GUI.pipe_tools;
|
|
import eric.GUI.windowComponent;
|
|
import eric.GUI.themes;
|
|
import java.awt.Dimension;
|
|
import java.awt.Graphics;
|
|
import java.awt.Point;
|
|
|
|
/**
|
|
*
|
|
* @author erichake
|
|
*/
|
|
public class tab_right extends windowComponent {
|
|
|
|
private Point winloc;
|
|
|
|
public void paintComponent(Graphics g) {
|
|
Dimension d=getSize();
|
|
g.drawImage(themes.getImage("tab_right.gif"), 0, 0, d.width, d.height,
|
|
this);
|
|
}
|
|
|
|
public void init() {
|
|
// win=StaticTools.getMainWindow(this);
|
|
setBounds(pipe_tools.getWindowSize().width-themes.getVerticalBorderWidth()-themes.getTabRightBorderWidth()-themes.getTotalRightPanelWidth(),
|
|
themes.getTitleBarHeight()+themes.getMenuBarHeight()+themes.getCommentsHeight()-1,
|
|
themes.getTabRightBorderWidth(),
|
|
pipe_tools.getWindowSize().height-themes.getTitleBarHeight()-themes.getMenuBarHeight()-themes.getCommentsHeight()-themes.getStatusBarHeight()-themes.getMainTabPanelHeight()+2);
|
|
}
|
|
|
|
public tab_right() {
|
|
}
|
|
}
|