- 浏览: 191920 次
- 性别:
- 来自: 苏州
文章分类
最新评论
-
wanglijunjsj:
谢谢,很有用
java log4j的一些总结 -
lxb_champagne:
this.init(); 类都没初始化好,this没用的。
java final变量的初始化问题 -
lg_asus:
上面代码有点小问题,最新代码:
public class Pr ...
判断素数 -
lg_asus:
测试10 million的以内的数据,算出所有素数时间在500 ...
判断素数 -
lg_asus:
文章中说错了:如果只是找一个数在不在其中,则可以直接遍历一次, ...
40亿不重复的正整数,如何判断一个数是否在其中
import javax.swing.*; import java.awt.*; import java.awt.event.*; import java.awt.geom.AffineTransform; import java.util.ArrayList; import java.util.HashMap; /** * A JTabbedPane which has a close ('X') icon on each tab. * To add a tab, use the method addTab(String, Component) * To have an extra icon on each tab (e.g. like in JBuilder, * showing the file type) use the method * addTab(String, Component, Icon). * Only clicking the 'X' closes the tab. */ public class ClosedTabPanel extends JTabbedPane implements MouseListener { private double scaleRatio = 0.3; private HashMap<String, Component> maps = new HashMap<String, Component>(); public ClosedTabPanel() { super(); addMouseListener(this); } public static void main(String args[]) { try { UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName()); } catch (Exception e) { e.printStackTrace(); } ClosedTabPanel pane = new ClosedTabPanel(); //ImageIcon icon = new ImageIcon(".\\Icons\\home.jpg"); ImageIcon icon = null; pane.addTab("tab1",new JButton("first Button"),icon); pane.addTab("tab2",new JButton("sec Button"),icon); pane.addTab("tab3",new JButton("third Button"),icon); pane.addTab("tab4",new JButton("fourth Button"),icon); JFrame frame = new JFrame("Demo"); frame.getContentPane().add(pane,BorderLayout.CENTER); frame.setSize(500,300); frame.setLocation(300,200); frame.setVisible(true); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); } public void addTab(String title, Component component) { this.addTab(title, component, null); } public void addTab(String title, Component component, Icon extraIcon) { super.addTab(title, new CloseTabIcon(extraIcon), component); } public void insertTab(String title, Icon icon, Component component, String tip, int index) { tip = "tab" + component.hashCode(); maps.put(tip, component); super.insertTab(title, icon, component, tip, index); } public void removeTabAt(int index) { Component component = getComponentAt(index); maps.remove("tab" + component.hashCode()); super.removeTabAt(index); } public JToolTip createToolTip() { ImageToolTip tooltip = new ImageToolTip(); tooltip.setComponent(this); return tooltip; } class ImageToolTip extends JToolTip { public Dimension getPreferredSize() { String tip = getTipText(); Component component = maps.get(tip); if (component != null) { return new Dimension((int) (getScaleRatio() * component.getWidth()), (int) (getScaleRatio() * component.getHeight())); } else { return super.getPreferredSize(); } } public void paintComponent(Graphics g) { String tip = getTipText(); Component component = maps.get(tip); if (component instanceof JComponent) { JComponent jcomponent = (JComponent) component; Graphics2D g2d = (Graphics2D) g; AffineTransform at = g2d.getTransform(); g2d.transform(AffineTransform.getScaleInstance(getScaleRatio(), getScaleRatio())); ArrayList<JComponent> dbcomponents = new ArrayList<JComponent>(); updateDoubleBuffered(jcomponent, dbcomponents); jcomponent.paint(g); resetDoubleBuffered(dbcomponents); g2d.setTransform(at); } } private void updateDoubleBuffered(JComponent component, ArrayList<JComponent> dbcomponents) { if (component.isDoubleBuffered()) { dbcomponents.add(component); component.setDoubleBuffered(false); } for (int i = 0; i < component.getComponentCount(); i++) { Component c = component.getComponent(i); if (c instanceof JComponent) { updateDoubleBuffered((JComponent) c, dbcomponents); } } } private void resetDoubleBuffered(ArrayList<JComponent> dbcomponents) { for (JComponent component : dbcomponents) { component.setDoubleBuffered(true); } } } public double getScaleRatio() { return scaleRatio; } public void setScaleRatio(double scaleRatio) { this.scaleRatio = scaleRatio; } public void mouseClicked(MouseEvent e) { int tabNumber = getUI().tabForCoordinate(this, e.getX(), e.getY()); if (tabNumber < 0) { return; } Rectangle rect = ((CloseTabIcon) getIconAt(tabNumber)).getBounds(); if (rect.contains(e.getX(), e.getY())) { //the tab is being closed this.removeTabAt(tabNumber); } } public void mouseEntered(MouseEvent e) { } public void mouseExited(MouseEvent e) { } public void mousePressed(MouseEvent e) { } public void mouseReleased(MouseEvent e) { } } /** * The class which generates the 'X' icon for the tabs. The constructor * accepts an icon which is extra to the 'X' icon, so you can have tabs * like in JBuilder. This value is null if no extra icon is required. */ class CloseTabIcon implements Icon { private int x_pos; private int y_pos; private int width; private int height; private Icon fileIcon; public CloseTabIcon(Icon fileIcon) { this.fileIcon = fileIcon; width = 16; height = 16; } public void paintIcon(Component c, Graphics g, int x, int y) { this.x_pos = x; this.y_pos = y; Color col = g.getColor(); g.setColor(new Color(250,100,100)); int y_p = y + 2; g.drawLine(x + 1, y_p, x + 12, y_p); g.drawLine(x + 1, y_p + 13, x + 12, y_p + 13); g.drawLine(x, y_p + 1, x, y_p + 12); g.drawLine(x + 13, y_p + 1, x + 13, y_p + 12); g.drawLine(x + 3, y_p + 3, x + 10, y_p + 10); g.drawLine(x + 3, y_p + 4, x + 9, y_p + 10); g.drawLine(x + 4, y_p + 3, x + 10, y_p + 9); g.drawLine(x + 10, y_p + 3, x + 3, y_p + 10); g.drawLine(x + 10, y_p + 4, x + 4, y_p + 10); g.drawLine(x + 9, y_p + 3, x + 3, y_p + 9); g.setColor(col); if (fileIcon != null) { fileIcon.paintIcon(c, g, x + width, y_p); } } public int getIconWidth() { return width + (fileIcon != null ? fileIcon.getIconWidth() : 0); } public int getIconHeight() { return height; } public Rectangle getBounds() { return new Rectangle(x_pos, y_pos, width, height); } }
轉:http://blog.csdn.net/arjick/archive/2009/09/07/4526692.aspx
发表评论
-
swt tree demo with a text editor
2012-12-25 16:41 1556项目需要,从XML中读取数据生成一个Tree,然后可以对叶子节 ... -
Paint in AWT andSwing
2012-04-20 21:32 0jdk 1.0中用的是AWT,有一个缺点,就是每个组件要和一个 ... -
SwingUtilities的invokeLater和invokeAndWait
2012-02-28 18:00 1171参考: http://blog.csdn.net/bzwm/a ... -
swing第三方jar增强功能
2012-02-14 16:34 2527原文:http://hb.qq.com/a/20101220/ ... -
swing 日期组件
2012-02-03 15:35 1161/** * chega * 2011-9-21上午 ... -
java swing全屏显示方式
2012-02-01 11:01 5144覆盖任务栏和不覆盖任务栏见:http://blog.csdn. ... -
带有行标题的JTable
2012-01-06 15:59 1254/** * @author chega * thi ... -
JColorChooser
2010-07-18 21:25 1185import java.awt.*; import ja ... -
JFileChooser
2010-07-18 20:17 1252import java.awt.*; import ja ... -
AbstractAction
2010-07-18 10:00 1840import java.awt.*; import ja ... -
JMenuItem和JTollBar
2010-07-18 09:34 1560import java.awt.*; import ja ... -
JTree
2010-07-17 16:41 1216import java.awt.*; import ja ... -
JTree
2010-07-17 14:58 1049import java.awt.*; import ja ... -
JTree
2010-07-17 13:17 1094import java.awt.*; import ja ... -
UndoableEditListener 和 DocumentListener
2010-07-15 21:24 1371import java.awt.*; import ja ... -
JTable增刪行列
2010-07-14 19:57 1460import java.awt.*; import ja ... -
JTable背景色與Boolean類型數據顯示衝突的問題
2010-07-12 16:53 966import java.awt.*; import java ... -
JComboBox每個Item加圖標
2010-07-11 16:46 1293import java.awt.*; import java ... -
JComboBox
2010-07-11 16:33 1313JComboBox(ComboModel):可以繼承Abstr ... -
JList雙向列表
2010-07-11 15:43 817import java.awt.*; import java ...
相关推荐
这个特定的项目是关于如何在`JTabbedPane`的每个选项卡上添加一个关闭按钮,使得用户能够动态地移除不需要的面板。这通常涉及到自定义`JPanel`和利用事件处理机制来实现这一功能。 首先,让我们深入了解一下`...
然而,标准的`JTabbedPane`并不直接支持在每个选项卡上显示关闭按钮,用户无法通过简单的方式移除某个选项卡。为了解决这个问题,开发者通常需要自定义`JTabbedPane`的行为,增加关闭按钮并处理相应的事件。而...
带关闭按钮可定制的JTabbedPane,首先解决了java自带的UI丑的不行的问题,然后附带了可关闭按钮,这个可关闭按钮,可以在添加标签时,自定义是否出现.该资源属于网络资源,谢谢作者的无私奉献.象征性的收1点积分,因为我的...
8. **设置选项卡关闭功能**:虽然`JTabbedPane`本身不支持关闭选项卡,但可以通过添加自定义组件并监听鼠标点击事件来模拟此功能。 9. **国际化支持**:`JTabbedPane`支持使用`ResourceBundle`进行国际化,允许根据...
`JTabbedPane`默认不支持关闭按钮,但可以通过自定义布局和组件实现。这通常涉及到复杂的布局管理和监听器设置。 7. **自定义选项卡内容**: 除了简单的`JPanel`之外,你还可以在选项卡中放置任何Swing组件,如`...
在Java的Swing库中,`JTabbedPane`是一个非常重要的组件,用于创建具有选项卡式界面的应用程序。这个组件允许我们将多个组件(如按钮、文本框、面板等)组织成独立的页面,用户可以通过点击不同的选项卡来切换显示的...
通过观察和修改代码,你可以学习到更多关于`JTabbedPane`的高级特性,比如自定义图标、添加关闭按钮、设置选项卡的可选性,以及响应选项卡切换事件等。 总之,`JTabbedPane`是Java Swing提供的一种强大工具,用于...
然而,`JTabbedPane` 还提供了许多其他功能,比如添加图标、改变选项卡的关闭行为、监听选项卡切换事件等。例如,你可以通过 `addTab` 的另一个重载方法 `void addTab(String title, Icon icon, Component component...
通过使用增强型`JTabbedPane`,开发者可以创建更为直观和用户友好的界面,同时提高应用的可定制性和可维护性。在设计GUI时,考虑用户的交互习惯和界面的逻辑结构是非常重要的,而这样的自定义组件正是为了满足这些...
然而,标准的javax.swing.JTabbedPane并没有内置的关闭选项,这使得开发者在需要实现类似浏览器那样的可关闭标签功能时面临挑战。NetBeans IDE提供了一个强大的组件库,其中包括了一些扩展和优化过的Swing组件,其中...
3. **设置可关闭标志**:默认情况下,JTabbedPane不支持关闭按钮。我们可以通过设置`setTabComponentAt(int index, Component component)`方法来自定义每个标签的组件,加入关闭按钮。通常我们会创建一个包含关闭...
可以设置`JTabbedPane`的属性,如关闭按钮,以及添加监听器来响应用户切换标签页或关闭标签页的事件。 在`JTabbedPaneDemo.java`文件中,可以看到上述步骤的具体实现,包括可能的自定义逻辑,如创建自定义的面板...
在Swing的原生`JTabbedPane`组件中,如果想要在每个选项卡上添加关闭按钮,需要进行一些额外的编程工作,而`TabbedContainer`则直接集成了这一功能,使得这个过程变得简单和直观。 `TabbedContainer`的主要特点和...
此外,JTabbedPane还提供了许多其他功能,如设置选项卡的图标、关闭选项卡、自定义选项卡的布局等。通过深入研究JTabbedPane类及其相关方法,你可以实现更加复杂和定制化的选项卡功能。 总之,Java中的JTabbedPane...
最后,将`TabbedPane`设置为`JFrame`的内容面板,并设定框架的标题、大小和关闭操作。 在MyEclipse中,保存这个Java文件(例如命名为`TabbedPaneDemo.java`),然后右键选择"Run As" -> "Java Application",你就...
以上就是Java Swing技术的一些关键点,包括`JTabbedPane`的使用、字符串转换整数的验证、窗口图标的设置、窗口关闭事件的处理以及数据库查询与事件监听的应用。掌握这些基本技能,将使你在Java桌面应用开发中更加...
总结来说,这个基于Swing的编辑器界面项目涉及了Swing的核心组件和功能,包括JTabbedPane(可关闭的选项卡面板)、文件操作、JSplitPane(分割面板)和JScrollPane(滚动面板)。通过学习和实践这些知识,开发者能够...
选项卡面板(JTabbedPane)是Java Swing中的一个容器组件,它允许我们将多个组件(如按钮、文本框、标签等)组织到不同的选项卡下,从而提高用户界面的清晰度和可操作性。这个组件特别适合于展示大量但相互独立的...
在Java Swing中,`JSplitPane`是一个非常强大的组件,用于创建可调整大小的容器来容纳两个子组件(例如面板或滚动窗格),并且允许用户通过拖动分割条来调整每个子组件的大小。下面将详细介绍如何使用`JSplitPane`来...