Tagged Questions

JSplitPane is a java swing component used to divide two (and only two) components.

learn more… | top users | synonyms

6
votes
4answers
187 views

Need the height of an invalidated Swing component

The basic setup is this: I have a vertical JSplitPane that I want to have a fixed-size bottom component and a resizing top component, which I accomplished by calling setResizeWeight(1.0). In this ...
4
votes
3answers
276 views

JSplitPane: is there a way to show/hide one of the panes?

I have a JSplitPane with two components, A and B, but sometimes I want to be able to hide B, so that either of the following are true: components A and B are visible in the JSplitPane only component ...
4
votes
1answer
111 views

Java: JSplitPane duplicates top panel's contents to bottom panel when Timer is active

So I have a JSplitPane, and two JPanels - one on top, one on the bottom. In both panels I overrode the paintComponent method and added my own graphics. In the bottom panel, I wanted to add an ...
4
votes
2answers
239 views

CardLayout not working properly

I have written this simple Cardlayout example with Splitpane, Combobox and few other panels containing buttons and label. import java.awt.BorderLayout; import java.awt.CardLayout; import ...
3
votes
2answers
431 views

Using JSplitPane with an AWT component

I have an AWT canvas which I cannot convert to a Swing component (it comes from VTK). I wish to display a few of these canvases inside of a JSplitPane. I've read about mixing heavy and light weight ...
2
votes
1answer
108 views

JSplitPane divider color affected by contents

I'm working on an application that displays two JScrollPanes within a JSplitPane. Each of the JScrollPanes contains a JPanel that I'm drawing the content onto. The problem is that when I adjust the ...
2
votes
3answers
575 views

How to layout two JSplitPanes with evenly placed dividers when using JFrame.pack()

This code should produce a frame with 2 vertical split panes that should initialise so that the dividers are evenly placed. However, this only works if the frame size is fixed. It seems this is ...
2
votes
1answer
277 views

QT equivalent to JSplitPane

I'l be short and sweet how can I put an object like JSplitPane in my gui qt app thanks Luck
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 ...
2
votes
3answers
5k views

Making a JPanel manually resizable

I have a JFrame with BorderLayout as the layout manager. In the south border, I have a JPanel, I want this JPanel's size to be adjustable by the user, i.e. the user can click on the edge of the ...
1
vote
1answer
40 views

How can I restrict the location of the separator in JSplitPane?

Is there a way to restrict the location of the separator of a JSplitPane? I want to prevent it from ending up near either end. Whether the user drags the separator, or it is reset due to window ...
1
vote
1answer
45 views

JSplitPane in NetBean GUI builder

I tried to drag a JSplitPane from the Palette in NetBeans but it always shows up on my JPanel as two separate panes with left and right buttons on them. I could not do anything with the buttons. ...
1
vote
1answer
56 views

JSplitPane does not display items

I am writing a tool take performs a task on text file. The task takes some time to perform so I made a panel that displays the file name and the progress in percentage. The user may run the task on ...
1
vote
1answer
48 views

Make JSplitPane fully transparent

I am writing GUI program in Java. I have a JPanel called jpanel1 that I inserted a JSplitpane (jSplitPane1) on it. I set right and left components of jSplitPane1; jpanel2 & jpanel3. I set a ...
1
vote
1answer
119 views

horizontal split pane resize with window

I have a horizontal split pane that contains a vertical split pane. When the window shows up i want the vertical split pane in the top of the horizontal split pane to be split in the middle. I want ...
1
vote
3answers
172 views

Setting divider location on a JSplitPane doesn't work

I'm trying to set the divider location of a JSplitPane but it seems not to work. Here's an SSCCE: import java.awt.Color; import javax.swing.BoxLayout; import javax.swing.JFrame; import ...
1
vote
2answers
123 views

Swing JSplitPane problem

How to Split Component vertically into different parts? Is It possible in Swing? I want to assign different ScrollBar to each part ?
1
vote
1answer
214 views

How to lock JSplitPane divider when swapping components?

I have a simple extended JSplitPane that I set different panels to at different times when they are needed. Specifically, I split it into an upper and lower section, and I swap out the bottom section ...
1
vote
1answer
129 views

JSplitPane and Canvas

As part of an application I'm writing I need to mix the old (heavyweight) Canvas with swing components - specifically nesting them inside a JSplitPane. However, when I do this the divider refuses to ...
1
vote
1answer
105 views

Java: Issue with jsplitpane and boxlayout

I want to get rid of the empty space to the left of the jsplitpanes: Here's my code: getContentPane().setLayout(new BoxLayout(getContentPane(), BoxLayout.Y_AXIS)); JSplitPane splitPane = new ...
1
vote
3answers
2k views

How to set JSplitPane-Divider collapse/expand State?

I have a JFrame with a JSplitPane that is OneTouchExpandable. I want to remember the last Divider position of the JSplitPane on JFrame dispose and restore the Position if the JFrame is reopened. It ...
1
vote
1answer
323 views

java: Problem with JSplitpane

I would like to have a jsplitPane and swap right component by left component while running my program. I set division location about 0.2. when I swapped my left component and right component and set ...
1
vote
1answer
295 views

JSplitPane + MiGLayout: how to enable autoresizing

I'm doing something wrong here: I want to have two JButtons in a JSplitPane in a JPanel in a a JFrame, where the buttons fill the JSplitPane. Here's what I get when I resize the JFrame: The ...
1
vote
1answer
913 views

jsplitpane in netbeans

I am trying to use a JSplitPane in Netbeans 6.9.1, but I can not configure it properly for some reason. E.g. I add a jtree and a jtable in a jframe. Then I use "enclose in splitpane". Then I set the ...
1
vote
1answer
2k views

How to set BackGround color to a divider in JSplitPane

I have created a divider in JSplitPane. I am unable to set the color of divider. I want to set the color of divider. Please help me how to set color of that divider. import javax.swing.*; import ...
1
vote
5answers
1k views

JSplitPane SetDividerLocation Problem

I have a JSplitPane which when shown should split the pane by 50%. Now on giving an argument of 0.5 (as suggested) to setDividerLocation, Java seems to treat it as a normal number instead of a ...
1
vote
2answers
799 views

JSplitPane resize behavior

I have a vertically split JSplitPane and when I move the divider down, it shifts the bottom component and the bottom gets cut off. Is there a way to specify the resize behavior of a JSplitPane so the ...
1
vote
2answers
676 views

alternatives/improvements to JSplitPane

I had a fairly simple dialog with a pair of JPanels of roughly equal size, contained in a JSplitPane. Now I'm looking at adding a 3rd JPanel and I'm not so sure there is an obvious solution. Is there ...
0
votes
0answers
21 views

How to change the color or background color of JSplitPane divider?

I am trying to the set the background color for the JSplitPane divider. I've written the following code, but it doesn't seem to work. BasicSplitPaneUI ui = (BasicSplitPaneUI) ...
0
votes
0answers
55 views

Java Components - Defining a empty panel for a SplitPane

[Reedited Question] Hi again, I have the next components created on a JFrame: The code used to instantiate this frame is: public MyFrame(){ _mainPanel = new MyMainPanel(); ...
0
votes
1answer
65 views

How to set a custom divider to a JSplitPane

I have found this example : http://java2s.com/Open-Source/Java-Document-2/Swing/petersoft-java-style-2/com/petersoft/white/SplitPaneDivider.java.htm And I would like to apply it to my JSplitPane. ...
0
votes
0answers
24 views

JSplitPane Maximum size for bottom part

Is it possible to set the maximum height of the bottom part of a JSplitPane ? I don't want it to be resizable too much. How to do this ? Thank you,
0
votes
1answer
122 views

Resize Control with Java JSplitPane

Please see my image below at the link and then read below it for more details on my problem. Imagine that is a Basic frame splited into two with a JSplitPane, by default when you resize your frame ...
0
votes
1answer
187 views

JSplitPane won't resize when I use java.awt.Canvas?

I have a simple example where I'm using java.awt.Canvas for components within a JSplitPane, and the JSplitPane won't allow adjustment. Could anyone explain why? (and more importantly, how to fix) ...
0
votes
2answers
123 views

JSplitPane is painting over JMenu

when I create JSplitPane and JMenu: JSplitPane pane = new JSplitPane(); pane.setLeftComponent(new SidePanel()); // extends JPanel pane.setRightComponent(new LibraryPanel()); // extends JPanel ...
0
votes
2answers
138 views

Java SplitPaneDemo not working?

I am trying to get this up code up and running from java official site but I am getting Exception in thread "AWT-EventQueue-0" java.lang.StackOverflowError at ...
0
votes
2answers
368 views

JSplitPane + MiGLayout: how to enable proportional autoresizing

A followup question to my other one; How do I enable proportional resizing? I thought this would work but it doesn't: import javax.swing.JButton; import javax.swing.JFrame; import ...
0
votes
1answer
482 views

How to disable JSplitPane arrow button

How do I disable(grey-out) the arrow button on the JSplitPane. I do know how to get the button from BasicSplitPaneDivider like this: final int UP_ARROW = 0; final BasicSplitPaneUI ui = ...
0
votes
1answer
261 views

hide one part of JSplitPane in Applet

Here is my situation, i want to implement a sidebar on the right side of a JFrame. The sidebar is hidden in default, appear if i click a button. In order to hide the sidebar, I set the divider ...
0
votes
1answer
435 views

How to implement JSplitPane in the BorderLayout?

HI, how can i use the JSplitPane so that they show up in the borders of a BorderLayout??? So that i can resize each sise (NORTH, EAST, WEST, SOUTH, CENTER). Thanks