⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 basictabbedpaneui.java

📁 this gcc-g++-3.3.1.tar.gz is a source file of gcc, you can learn more about gcc through this codes f
💻 JAVA
字号:
package javax.swing.plaf.basic;import javax.swing.*;import java.awt.*;import javax.swing.plaf.*;public class BasicTabbedPaneUI  extends TabbedPaneUI {    public static ComponentUI createUI(final JComponent c)     {	return new BasicTabbedPaneUI();    }        public void installUI(final JComponent c)     {	super.installUI(c);    }        public Dimension getPreferredSize(JComponent c)     {	JTabbedPane p = (JTabbedPane) c;	Dimension d = new Dimension(50,50);		for (int i=0;i<p.getTabCount();i++)	    {		Component comp = p.getComponentAt(i);				Dimension pr = comp.getPreferredSize();		d.width = Math.max(d.width, comp.getWidth());		d.height = Math.max(d.height, comp.getHeight());	    }		Insets i = p.getInsets();		d.width  += i.left + i.right;	d.height += i.top + i.bottom;	int height_of_tabs = 25;	d.height += height_of_tabs;	// FIXME: should be max of panes in p	return d;    }        public Rectangle getTabBounds(JTabbedPane pane, int index)    {	return null;    }    public int getTabRunCount(JTabbedPane pane)    {	return 0;    }    public int tabForCoordinate(JTabbedPane pane, int x, int y)    {	return 0;    }}                       

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -