JToolBar in Java with Example using NetBeans
JToolBar in Java:
With the javax.swing.JToolBar class, Java provides a so-called toolbar. This component is used to make frequently used functions directly available in a bar.
You can find an example of the use of a toolbar in programs for editing graphics (e.g Paint). There you will find various tools for editing graphics (e.g eraser). Toolbars are also usually available in text editing programs, via which the user can change the font, color, or size, for example. The individual tools are usually represented by appropriate icons.
If you are developing an application, you should consider whether there are also functionalities that are frequently used when using the program. If you integrate this in a toolbar, you increase the ease of use because the user does not have to look for the function in the menu bar first.
JToolBar Constructors:
constructor | description |
JToolBar(int orientation) | Here the constructor is passed a class constant (HORIZONTAL or VERTICAL) that specifies the orientation of the toolbar. By default, the alignment is set to horizontal. |
JToolBar(String name) | A character string is passed to the constructor, which is displayed as the title if the JToolBar is no longer coupled to the parent window and is displayed in its own window. |
JToolBar(String name, int orientation) | This constructor combines the two constructors above. |
Example: how to use JToolBar in java using NetBeans:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | package com.mycompany.guiexamples; import java.awt.Color; import javax.swing.*; /** * * @author Fawadkhan */ public class JToolBarExample { // main method public static void main(String[] args) { // creation of a new JDialog myJDialog = new JDialog(); myJDialog.setTitle("JToolBar Testing Example"); myJDialog.setSize(450, 300); // Create a menu bar JMenuBar menu = new JMenuBar(); // Adding menu.add(new JMenu("File")); menu.add(new JMenu("Edit")); menu.add(new JMenu("View")); menu.add(new JMenu("Run")); //toolbar is created JToolBar tbar = new JToolBar(); //Size of the toolbar is set tbar.setSize(230, 20); // Buttons are created and added to our JToolBar tbar.add(new JButton("Move")); tbar.add(new JButton("Cut ")); tbar.add(new JButton("Copy")); tbar.add(new JButton("Eraser")); tbar.add(new JButton("Font")); // menu bar is set for the dialog myJDialog.setJMenuBar(menu); //Our toolbar will be added to the dialog myJDialog.add(tbar); JPanel panel = new JPanel(); panel.setBackground(Color.WHITE); myJDialog.add(panel); // We display our dialog myJDialog.setVisible(true); } } |
As you may have noticed, our import statements have shrunk a lot. This is because we save ourselves from a lot of import statements by instead importing the entire swing package using the import javax.swing.* command. The asterisk serves as a placeholder for all classes in the respective package. The short variant with placeholders is recommended if you use many classes from a package to keep the source code clear.
In our example, we created a toolbar with 5 items and added it to our dialog. We used buttons ( JButton ) for this. We will go into more detail about buttons in the JButton article.
If you run the sample program, you should see the following picture:
The JToolBar is moveable you can place the toolbar anywhere in the window as you can see in the below images
The JToolBar class has two special methods: The setFloatable method expects a parameter of the data type boolean. If true is passed, which is the default, the user can move the toolbar. If false is passed, the toolbar is fixed at the default position.
The setRollover method also expects a parameter of data type boolean. If a true is passed here, the border of buttons is only drawn when the mouse pointer is moved over the corresponding button. By default, the value is set to false, so each button border is drawn.
The currently set status can be queried using the corresponding get methods.