Tagged Questions

A Java Swing component that lets the user switch between a group of components by clicking on a tab with a given title and/or icon.

learn more… | top users | synonyms

7
votes
5answers
3k 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 ...
6
votes
1answer
499 views

validate() tree throws NullPointerException on L&F change?

public class TabbedArea extends JTabbedPane { public void addArea(){ add(component); final JPanel panel = new JPanel(new BorderLayout()); panel.add(new JLabel(title), ...
4
votes
3answers
218 views

JTabbedPane customize tab look

I want to customize the look of the tabs in JTabbedPane. I want to start from the simplest and plainest behavior: no borders, solid color. The problem is that a non-plainess still remains: the tabs ...
4
votes
2answers
346 views

How can I change the shape of a JTabbedPane tab?

I am trying to change the shape of the tabs in a JTabbedPane. Using setTabComponentAt(0, someComponent); doesn't change the exterior of the tab, which is a rectangle with a diagonal top-left corner. ...
4
votes
2answers
501 views

Java: JProgressBar (or equivalent) in a JTabbedPane tab title

If I really wanted to do something like that, can I put a JProgressBar (or it's equivalent) in a JTabbedPane tab? (I mean, not in the tab itself, How would I do something like that? EDIT I really ...
4
votes
3answers
2k views

Override default look and feel Java

I want to override java look and feel. I just want to show the buttons differently. I want all the features of Windows Look and Feel but only buttons differently. I hope you get my point. Color color ...
3
votes
3answers
58 views

How to get coordinates of a tab header in the jTabbedPane?

I have a method that draws animated image on glass pane to simulate pulsing of an icon. It needs an image (i use icons of components) and bounds (of a button f.e.). I need this area: I know that ...
3
votes
1answer
76 views

Nimbus L&F missing divider at JTabbedPane set to scroll

I am missing the blue horizontal divider between the tabs and the content in a Nimbus L&F TabbedPane set to SCROLL (other L&Fs (default & windows) provide those). As you can see the ...
3
votes
2answers
101 views

How to inform the user that a specific Tab in a JTabbedPane needs attention?

Say you have a user interface with five or more tabs, and you need to inform the user that tab "2" needs attention. Is there a way to do this? For example make the tab flash orange, or change the ...
3
votes
1answer
279 views

How to place components beneath tabs in right oriented JTabbedPane

So I just stumbled across placement of tabs in a JTabbedPane to the right and left (i.e. setTabPlacement(JTabbedPane.RIGHT)) which I love the look of. What I need is to utilize the space this leaves ...
3
votes
5answers
311 views

Tab component consuming mouse so tabs won't change

I have a problem that when I add a mouse listener to a component that is used as a tab, I can't switch tabs. This demonstrates the problem: import javax.swing.*; import java.awt.event.MouseEvent; ...
3
votes
3answers
549 views

MouseEvents for a JTabbedPane Tab component are not bleeding through

I have a JTabbedPane with a custom tab component. That component contains a JLabel (To display the tab title) and a JButton (A close button). When I change the text in the JLabel the JLabel stops ...
2
votes
2answers
34 views

accessing data from a different Tab in a TabbedPane - Java

i have a JTabbedPane with several tabs, each of them is a class that extends JPanel, and contains a layout (textfields and labels for example). i been trying to reach the data from various tabs, but i ...
2
votes
1answer
71 views

How to change background color of JTabbedPane?

I know you can modify the LaF properties, but how do you accomplish this without doing such? I only ask because setBackground doesn't seem to do it. Note that I'm looking to change the following ...
2
votes
0answers
107 views

ButtonTabComponent adds AquaTabbedPaneCopyFromBasicUI$TabContainer in JTabbedPane

Im basicly trying to add in a bunch of JPanels in each tab in the jtabbedpane, and it works fine on its own. But when following the Javatutorial on adding closingbuttons to each tab, it adds this ...
2
votes
2answers
144 views

Can not click on tab when mouse listener has been added

I have been trying to add a pop up menu to the tab title of a JTabbedPane, which I have managed to do as follows: tabbedPane.setTabComponentAt(a+2, x); x.addMouseListener(new ...
2
votes
2answers
146 views

JTabbedPane: avoid automatic re-ordering tabs if stacked / Nimbus

a JTabbedPane is just what I need for my purpose. I have very limited horizontal space, so my Tabs get stacked, which is perfectly ok. But the default behaviour is that if user clicks on a Tab, the ...
2
votes
1answer
70 views

JXMultiSplitPane going bonkers when I switch tabs

I'm using JXMultiSplitPane (from SwingX 1.6.2) to implement a three-pane horizontal interface. In the center pane is a JTabbedPane with two tabs: one with a JTextArea (in a JScrollPane, of course) ...
2
votes
1answer
131 views

How do I tell if the tab that I have open is the active tab in java?

I have a panel inside a jtabbed pane that I only want to refresh if the tab is visible. I tried, isShowing(), isDisplayable() and isVisible() and none of them seem to work as they check whether or not ...
2
votes
1answer
118 views

How do I go about setting the exact style for tabs in a JTabbedPane?

I have looked around and I cannot figure out how to do it. Should I use the Synth look & feel? How would I go about doing this?
2
votes
5answers
667 views

How to create vertical tabs in Java?

I would like to get the effect like if JTabbedPane would be turned 90 degrees counterclockwise (only tabs but not the content inside tabs). What is the best way to implement that in Java?
2
votes
3answers
112 views

Can I put some tabs to the left and others to the right in a JTabbedPane?

Can I put some tabs to the left and others to the right in a JTabbedPane? Or at least to add some tabs, then add an empty space, and then add other tabs? Thanks!
2
votes
1answer
123 views

JTabbedPane: How to restrict user from moving out of current tab

How can I restrict the user from going away from the current tab. I need to show a confirmation message to save/discard changes before leaving the current tab. How can I implement this functionality ...
2
votes
3answers
398 views

how to change the color of text of tab on mouse over of JtabbedPane?

I need to change the color of text of tab of JtabbedPane on MouseOver. Is is possible using the Mouse Listener or is there any different property to do that? Thanks Jyoti
2
votes
2answers
139 views

JTabbedPane indent

When using a JTabbedPane, how do you indent the tabs? Swing default output: ------- --------- ------ | A | | B | | C | ------------------------------ | | | ...
2
votes
2answers
601 views

Java JTabbedPane, update others tab JLabel value?

I have 2 JTabbedPane. I am unable to refresh the data. PLease help, here is my code: pane1: //.. some codes... // This is the ButtonListener private class ButtonListener implements ActionListener { ...
2
votes
1answer
332 views

JTabbedPane tabs

Alright, so I have a JTabbedPane in an application and it has several panels. Is it possible to assign a JPopupMenu to the actual tabs themselves instead of the JPanel? If it is possible, how would I ...
2
votes
2answers
2k views

JTabbedPane - set default border around tabs..?

I am using a JTabbedPane in my application. I have added two tabs which are instances of a custom class "ContentPanel". This extends JPanel and sets the background, border etc etc. Basically it means ...
2
votes
5answers
3k views

Set the Background Color for JTabbedPane

I am using Nimbus Look and feel. I needs to change the Background color and foreground color of the tab in JTabbedPane but the color doesn't set in JTabbedPane. I tried setForeground(), ...
2
votes
3answers
2k views

Problem resizing JScrollPane and JTabbedPane

I have a problem with resizing some of my components in my java application. When I resize my main JFrame they keep their previous size instead of filling out the surrounding component. For example I ...
2
votes
2answers
372 views

JTabbedPane swing update error

I have 2 JPanels in a JTabbedPane and when update(g) is called on a panel inside the first panel (Its an animation) even if the second panel is the selected panel(i.e the one you can see) the updated ...
2
votes
1answer
1k views

Java: “Add Tab Button” for a JTabbedPane

Is it possible to add a button to a tabbedpane like in firefox. The green plus-button is what I want. Thanks
2
votes
1answer
2k 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 ...
1
vote
1answer
28 views

Vertical orientation of JTabbedPane titles when the the tab placement is set to LEFT

As you can see from the image below, the Java text is horizontal. What I would like to do is get a vertical orientation of the JTabbedPane Titles. While googling, I found that the only way is to add ...
1
vote
2answers
33 views

How to prevent leaving a Tab on JTabbedPane

I have an application that has nested JTabbedPanes. Each of the JTabbedPanes include other JTabbedPanes. I want to check something before allowing the user to leave the current tab. When you run ...
1
vote
1answer
65 views

JTabbedPane Scroll Button Postion

Been working with JTabbedPane and trying to customize it when using SCROLL_TAB_LAYOUT specifically with the scroll direction buttons. I'm extending BasicTabbedPaneUI, but I don't see a method or ...
1
vote
1answer
57 views

How set different colors for different selected tabs of a JTabbedPane?

I'm trying to create a JTabbedPane with tabs that will have different colors when selected. For example, let's say I have tabs A, B, and C. If a tab is not selected, then the tab color will be the ...
1
vote
1answer
64 views

Open another existing panel when user click button

I have created a java application which has a JTabbedPane that contains three JPanels. In my first panel I have a button. When the user clicks the button, it should open/show the second panel. Can ...
1
vote
3answers
97 views

When JPanel changes, elements of the old JPanel are left behind

I'm using a JTabbedPane, and on each tab there's a panel, which changes when the user does things like click buttons. The problem I'm getting is that elements from the previous panel get left behind. ...
1
vote
1answer
52 views

JTabbedPane mouseover paint issue

I am working with an application that is experiencing painting issues on some users computers when the mouse passes over the tabs in a JTabbedPane. They also occasionally have similar issues on other ...
1
vote
0answers
109 views

Adding a JTable to my Pane Inside a Dialog Throws an NPE when I pack it

I have created a JDialog. When it comes up, I have a JTabbedPane that has several FormPanels on it. The form panels are loaded in as a form file (I used Abeille to create the forms.) I have had no ...
1
vote
2answers
96 views

NetBeans: How to enable/disable specific tab in JTabedPane

I am developing a small desktop application in Netbeans. on my UI i have a JTabbedPane having 3 tabs in it now i come across a situation where i need to temporarily disable 2nd and 3rd tab. How could ...
1
vote
2answers
144 views

How to modify JLabel on JTabbedPane tab?

So say you had a JTabbedPane. And on each of those tabs, you have a JPanel with a JLabel, and a JButton. How can you modify that JLabel's text after it's already been added to the pane?
1
vote
2answers
106 views

Setting tab title colors on JTabbedPanes

On a JTabbedPane, how do you set the color of the tab titles for both the selected and unselected states?
1
vote
2answers
357 views

JTabbedPane - focus last focused component after tab change

When changing tabs, JTabbedPane always focuses the first focusable Component inside the tab. How can I change its behaviour so that it will either focus the last focused component or none at all? ...
1
vote
1answer
426 views

Groovy SwingBuilder : controlling the style of the tabs titles in JTabbedPane

I can't find a way (is there any ?) to format the style of tabs titles in a JTabbedPane. I can change the background color of the tab panes (see below), but can't find a way to style the titles of ...
1
vote
1answer
443 views

Java: How to refresh a JTabbedPane?

The program is supposed to refresh both tabbed panes every time a new choose drop down is selected. Unfortunatly, nothing is repainted/refreshed. I have already tried both repaint and revalidate in ...
1
vote
1answer
40 views

It is possible to make just some tabs focusable (JTabbedPane)?

It is possible to make just some tabs focusable, for instance the first 3 of 5 tabs? So that when changing tabs with the left - right keys, the non-focusable ones to be skipped (to be displayed only ...
1
vote
1answer
214 views

Reordering tabs in a JTabbedPane in java

Is there a way to swap two tabs? I have a touchscreen monitor with a java app with four tabs: Silkscreen Prep 1, Silkscreen Prep 2, Silkscreen 1, Silkscreen 2 and I want to swap Silkscreen Prep 2 ...
1
vote
2answers
278 views

Swing JTabbedPane contents

For some reason the layouts don't seem to want to work inside a JTabbedPane. Instead of flowing onto the next "line", it just acts as if it had infinite horizontal space :( However adding everything ...

1 2 3