Tagged Questions
The jtoolbar tag has no wiki summary.
5
votes
4answers
2k views
How can I create a “Drop-Down” menu in a Java Swing toolbar?
I've created a drop-down menu on my Swing JToolBar. But it doesn't create behave the way I want. I'm aiming for it to work like Firefox's "Smart Bookmarks" button.
It disappears when the user selects ...
4
votes
4answers
454 views
JAVA: Ways to fill a Frame. add(), setContentPane(), getContentPane()
I found three ways too fill my JFrame frame = new JFrame("...")
createContentPanel returns a JPanel and createToolBar returns a ToolBar.
frame.add(this.createToolBar(), BorderLayout.PAGE_START); ...
3
votes
1answer
845 views
How can I let JToolBars wrap to the next line (FlowLayout) without them being hidden ty the JPanel below them?
I am in the process of making a GUI which shows three JToolBars above a big JPanel. These toolbars are collectively very large, so I'm using a FlowLayout to make them wrap to the next line if they ...
3
votes
2answers
279 views
Why is addSeparator() not working with my JToolBar?
I am having trouble getting a JSeparator to show up inside of a JToolBar. My toolbar is created as follows :
public class ToolBar extends JToolBar {
super();
FlowLayout layout = new ...
2
votes
2answers
67 views
How to make an auto-hide the JToolBar?
I'd like to make an auto-hide the JToolBar and it appear only when the mouse goes near/over the JToolBar. I have added the JToolBar in JPanel. There is no mouseover listener in JToolBar. How to do ...
2
votes
2answers
385 views
How to remove gap between controls in JToolBar?
How to remove gap between controls in JToolBar? I want to have no free space between controls in JToolBar.
EDIT:
I was wrong. There is no free space. The problem is caused by JButton (situated in ...
2
votes
3answers
911 views
BorderLayout problem with JSplitPane after adding JToolbar (Java)
Problem:
My program layout is fine, as below before I add JToolbar to BorderLayout.PAGE_START
Here's a screenshot before JToolbar is added:
Here's how it looked like after adding JToolbar:
May I ...
1
vote
2answers
33 views
How to add buttons into a jtoolbar dynamically
I have a java application which requires to add button sets contains in jpanels dynamically.
ex:-
.
.
JButton button1 = new JButton("Button_1");
JButton button2 = new JButton("Button_2");
JPanel ...
1
vote
1answer
27 views
Placing an image within a jmenubar + jtoolbar
I would like to know if it's possible to set an image as background for a jmenubar+jtoolbar (not only for one of theym, not one for each of theym But on for BOTH) ...
Anyone's got an idea ??
How ...
1
vote
1answer
67 views
Java JTable and JToolBar resizing strangely
I noticed very strange behavior of my program today. Basically I have JToolBar uder which is JScrollPane with JTable. Both inside JPanel inside JFrame. Every container using MigLayout.
Now, if I ...
1
vote
3answers
59 views
How to make a link betweeen the name a function and the actual function in java
I am building a user interface in netBeans (coding by hand, more flexible) with multiple toolbars.
What I am trying to do is create an actionListener for each button. I am retrieving names of the ...
1
vote
1answer
47 views
Transfer jtoolbar from one jpanel to another
This is my first question, so bare with me. Let's say that I have 2 JPanel and 1 JToolBar. What I want to do is drag the toolbar from one panel to another and, after mouse release, the toolbar should ...
1
vote
2answers
87 views
switching between different JPanels when pressing jtoolbar buttons
Im designing a parent Jpanel contains JToolBar && inner JPanel.By the JToolBar's action i need to replace the inner JPanel with new JPanel which where i designed already. switching between ...
1
vote
2answers
127 views
In which situation does a JComponent request to get focus? How to know which component is actually the focus owner?
I have a bug in my application that i'm not able to find.
I have some selectable and resizable JPanel , which display a border when selected. For some of them the border dissapear after moving them, ...
1
vote
1answer
716 views
Add image to Joomla JToolBar custom link button
Hi I have created a custom button link in the admin section of my component, something like this:
$bar = & JToolBar::getInstance('toolbar');
$bar->appendButton( 'Link', 'export', 'Export', ...
1
vote
1answer
181 views
JToolbar is hidden by JMenu
I'm using Netbeans to add a JToolbar to my window which also has a JMenuBar. Here is the design-time look:
.. but during run-time I get this:
With the toolbar seemingly partially hidden under the ...
1
vote
3answers
756 views
Java Swing JToolBar
I have created JToolBar (Java Swing). I have set a Background image on frame which contains JToolBar. I want my JToolBar to be transparent so that the image kept on frame should be visible. I am using ...
0
votes
2answers
80 views
Java Swing: How JToolbar changes appearance of a button?
When you add a JButton to a JToolbar, the button takes a specific look (not the same that if you add it to a Jpanel).
I created some component similar to a JToolbar and I would like the same behavior.
...
0
votes
1answer
88 views
JToolbar frontend submit value on click
I'm building a joomla component and I can't find a solution to the following. In my front end I'm using the joomlas build in class JToolbar to handle events on click like edit, delete so one.
...
0
votes
2answers
84 views
Swing JToolbarButton pressing
I use JToolbarButton button, I want to make it be "pressed" when I click on it, just like JButton works.How can I do this?
Please help!Thanks.
0
votes
1answer
53 views
JToolBarHelper won't work on IE8 and IE9 Browsers?
I'm working on joomla 1.5 and I have this form and it has a Save and Close button but it is not working on IE browsers. The conflict on MooTools.js and jQuery.js is resolved but still the buttons ...
0
votes
1answer
256 views
Gradient Background for JToolBar
I Want to set gradient background color for JToolBar in Java.
Am able to set this gradient effect for JPanel.
Thanks,
Sathish
0
votes
1answer
167 views
ToolBar problem in swing + java
I have this code in my file
String[] iconFiles = { "state.jpg", "cursor.jpg", "arrow.jpg" };
String[] buttonLabels = { "New Node", "Attribute Change", "Add Edge"};
for (int i = 0; i < ...
0
votes
1answer
136 views
JToolbar doesn't show on Ubuntu if set to BasicToolBarUI
I've decided to have my own custom UI of JToolBar by
subclassing BasicToolBarUI, as part of my Swing program.
It works great under OS X (10.6) and Windows (7), but
when it comes to Linux, problem ...
0
votes
3answers
292 views
how to remove item from jtoolbar
private JButton btnTask = new JButton();
...
TaoGlobal.taskbar.add(btnTask);
How to remove btnTask from JToolBar?
Thanx.
0
votes
2answers
464 views
JToolbar background image
I'm using a customized JToolbar using the following code:
public class GeneralToolbar extends JToolBar{
public GeneralToolbar() {
super();
setBackground(Color.white);
setOpaque(true);
...
-1
votes
1answer
91 views
Swing JMenu problem
Why I can't add JMenuBar to JToolBar, is it possible? Or I can only add menubar on frame?Tutorial says:
As the code shows, to set the menu bar for a JFrame, you use the setJMenuBar method. To add ...