ToolBar Test : Toolbar « Swing JFC « Java

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Class
8. Collections Data Structure
9. Data Type
10. Database SQL JDBC
11. Design Pattern
12. Development Class
13. EJB3
14. Email
15. Event
16. File Input Output
17. Game
18. Generics
19. GWT
20. Hibernate
21. I18N
22. J2EE
23. J2ME
24. JDK 6
25. JNDI LDAP
26. JPA
27. JSP
28. JSTL
29. Language Basics
30. Network Protocol
31. PDF RTF
32. Reflection
33. Regular Expressions
34. Scripting
35. Security
36. Servlets
37. Spring
38. Swing Components
39. Swing JFC
40. SWT JFace Eclipse
41. Threads
42. Tiny Application
43. Velocity
44. Web Services SOA
45. XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java » Swing JFC » ToolbarScreenshots 
ToolBar Test
ToolBar Test
   
/**
 @version 1.00 1999-07-17
 @author Cay Horstmann
 */

import java.awt.Color;
import java.awt.Component;
import java.awt.Container;
import java.awt.event.ActionEvent;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;

import javax.swing.AbstractAction;
import javax.swing.Action;
import javax.swing.Icon;
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JMenu;
import javax.swing.JMenuBar;
import javax.swing.JPanel;
import javax.swing.JToolBar;

public class SwingToolBarTest {
  public static void main(String[] args) {
    JFrame frame = new ToolBarFrame();
    frame.show();
  }
}

/*
 * the color action sets the background of its target to a given color
 */

class ColorAction extends AbstractAction {
  public ColorAction(String name, Icon icon, Color c, Component t) {
    putValue(Action.NAME, name);
    putValue(Action.SMALL_ICON, icon);
    putValue(Action.SHORT_DESCRIPTION, name + " background");
    putValue("Color", c);
    target = t;
  }

  public void actionPerformed(ActionEvent evt) {
    Color c = (ColorgetValue("Color");
    target.setBackground(c);
    target.repaint();
  }

  private Component target;
}

/*
 * the tool bar button is a button with an icon and no text suitable for
 * addition into a tool bar. The tool tip is set to the short description of the
 * action, or to the name if the short description is not available
 */

class ToolBarButton extends JButton {
  public ToolBarButton(Action a) {
    super((Icona.getValue(Action.SMALL_ICON));

    String toolTip = (Stringa.getValue(Action.SHORT_DESCRIPTION);
    if (toolTip == null)
      toolTip = (Stringa.getValue(Action.NAME);
    if (toolTip != null)
      setToolTipText(toolTip);
    addActionListener(a);
  }
}

class ToolBarFrame extends JFrame {
  public ToolBarFrame() {
    setTitle("ToolBarTest");
    setSize(300200);
    addWindowListener(new WindowAdapter() {
      public void windowClosing(WindowEvent e) {
        System.exit(0);
      }
    });

    // add a panel for color change

    Container contentPane = getContentPane();
    JPanel panel = new JPanel();
    contentPane.add(panel, "Center");

    // set up actions

    Action blueAction = new ColorAction("Blue",
        new ImageIcon("java2s.gif"), Color.blue, panel);
    Action yellowAction = new ColorAction("Yellow"new ImageIcon(
        "java2s.gif"), Color.yellow, panel);
    Action redAction = new ColorAction("Red",
        new ImageIcon("red-ball.gif"), Color.red, panel);

    Action exitAction = new AbstractAction("Exit",
        new ImageIcon("java2s.gif")) {
      public void actionPerformed(ActionEvent event) {
        System.exit(0);
      }
    };

    // populate tool bar

    JToolBar bar = new JToolBar();
    bar.add(new ToolBarButton(blueAction));
    bar.add(new ToolBarButton(yellowAction));
    bar.add(new ToolBarButton(redAction));
    bar.addSeparator();
    bar.add(new ToolBarButton(exitAction));
    contentPane.add(bar, "North");

    // populate menu

    JMenu menu = new JMenu("Color");
    menu.add(yellowAction);
    menu.add(blueAction);
    menu.add(redAction);
    menu.add(exitAction);
    JMenuBar menuBar = new JMenuBar();
    menuBar.add(menu);
    setJMenuBar(menuBar);
  }
}
           
         
    
    
  
Related examples in the same category
1. Create two toolbars
2. Shows a vertical toolbar.
3. A simple frame containing a toolbar made up of several ButtonsA simple frame containing a toolbar made up of several Buttons
4. An example of JToolBarAn example of JToolBar
5. Toolbar Sample
6. JToolBar DemoJToolBar Demo
7. Swing ToolBar DemoSwing ToolBar Demo
8. ToolBar Demo 2ToolBar Demo 2
9. Toolbar and menubarToolbar and menubar
10. Simple toolbarSimple toolbar
11. Working with a ToolbarWorking with a Toolbar
12. Get ToolBar PropertiesGet ToolBar Properties
13. If the toolbar is to be floatable, it must be added to a container with a BorderLayout.
14. Highlighting Buttons in a JToolbar Container While Under the Cursor
15. JToolbar: Toolbars provide a quick access to the most frequently used commands.JToolbar: Toolbars provide a quick access to the most frequently used commands.
16. Preventing a JToolbar Container from Floating
17. Determining When a Floatable JToolBar Container Changes Orientation
18. Create a vertical toolbar
19. Add various buttons to the toolbar
20. ToolBar UI SampleToolBar UI Sample
21. ToolBar button
22. This class represents a separator for the toolbar buttons.
23. Buttons used in toolbars.
w___ww__.___j__a_v__a___2___s__.__c__om | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.