0
votes
1answer
33 views
Capturing the close tab event of a JTabbedPanel in Java Swing
Is it possible to capture the close tab event for a JTabbedPanel in Java Swing.
I want to check for some conditions and if they are not met, then I have to prevent the user from closing it.
Thanks!
…
1
vote
1answer
54 views
JTabbedPane: icon on left side of tabs
hello i am using the nimbus look-and-feel and have a tabbedpane with an icon and text.
now the icon appears on the right side of the text, while i would like to have it on the left side.
also i would …
0
votes
1answer
59 views
problem with putting things inside a tabbed pane
I need to put check boxes inside tabbed panes, but they are always on the outside like this
I want to put the murder check box inside the Input tab. This is what I have in my code
import model.*;
…
1
vote
3answers
51 views
GUI program, problem with tabbedpanes
I am creating a GUI program using MVC which should look like this..
I have created a Window and Panel class. I am thinking of creating the Input and Display tabs in the Panel class and then creating …
0
votes
2answers
110 views
Why won’t this Swing tabbed pane display?
Hi all,
Could someone explain what I am doing wrong with my classes that my JTabbedPane doesn't display when the JFrame.setvisible is set to true?
Yes, the main method of the program (which I …
0
votes
1answer
56 views
JTabbedPane adding null components
Hi Everyone,
Riddle me this: I have a JTabbedPane that has custom JPanels in it. When I try and access those JPanels, all I get back is null. I know that the panels have been added because on the UI I …
1
vote
3answers
150 views
Java threading and the JTabbedPane dilemma
In a project I'm working on, I have a main class (named TrackWin) that extends JFrame. In this frame, I make use of a JTabbedPane.
A user can create a new tab in the pane from the Menu Bar. Whenever …
1
vote
2answers
166 views
What’s wrong with JSplitPanel (or JTabbedPane)?
I have two panels that i wish to display to the user. I decided to add them to a JTabbedPane. I also want to allow the user to have a side by side view of them both at the same time. So I added the …
0
votes
3answers
493 views
Tabs with equal (constant) width in JTabbedPane
I'm trying to get a JTabbedPane where all tabs (the actual tabs, not the components) have the same width (either the minimum width needed for the widest label or a constant width).
I've tried to …
1
vote
5answers
248 views
After calling JTabbedPane.removeAll(), the JTabbedPane still has x number of tabs?
In my JTabbedPane, I am removing tabs in 2 different ways:
tabbedPane.remove(index)
and
tabbedPane.removeAll()
Both work fine in terms of closing the tabs. However, I have a change listener on …
0
votes
2answers
123 views
Bringing tab to front in JTabbedPane
When I use setSelectedComponent or setSelectedIndex on a JTabbedPane object, the panel always comes up in my UI. However, sometimes the tab associated with the panel remains hidden. In other words, …
2
votes
2answers
534 views
Is there a way to hide the tab bar of JTabbedPane if only one tab exists?
I want a behavior similar to e.g. Firefox where the list of available tabs does only show up if at least two tabs exist.
I wasn't able to find anything like that, yet.
The best idea I had was …
0
votes
3answers
490 views
Java JTabbedPane, how can I select a tab from a button?
Hi all
How can I select a tab as if it was clicked by clicking on a button?
I have googled and looked at all the actions but there are just just so many... :(
Anyone know off hand?
Thanks in …
0
votes
2answers
343 views
JTabbedPane: Actions performed before displaying selected tab
When one of the panels present in a JTabbedPane is clicked, I need to perform a few actions at the start. Say, for example, I need to check the username and password. Only if those match, the …
0
votes
2answers
120 views
JTabbedPane weird behaviour
I have the following code :
JTabbedPane container;
...
AWindow page = WinUtils.buildWindow();
boolean existing = checkIfExists(page); // in this code, this will always be false
if(!existing)
{
…
