Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
660 views

Mixed alignment with Java Swing's GroupLayout

I'm trying to build a GUI window in my application. What I'm trying to do is have a window, with a few buttons at the top, and a large text area. Something like this: ...
4
votes
2answers
448 views

GroupLayout giving error with java swing

I am getting a long list of errors. Can anyone suggest to me where I am going wrong with GroupLayout. layout.setHorizontalGroup( layout.createSequentialGroup() .addComponent(new ...
4
votes
2answers
221 views

what's the difference between DEFAULT_SIZE and PREFERRED_SIZE?

I'm using Swing GroupLayout and I'm confused about the values GroupLayout.DEFAULT_SIZE and GroupLayout.PREFERRED_SIZE. I never know when to use each one of them in methods like ...
2
votes
1answer
84 views

Swing GroupLayout: Resizing and limiting component sizes

I'm using GroupLayout to manage components in some dynamically generated data input forms. The layout is more or less like so: *-----------------------------------------------* | label A | ...
2
votes
3answers
112 views

NetBeans, GUI builder (group layout) centering a component

I'm trying to design a JButton (an "Ok" button) that to look good has to be horizontally centered in the containing JFrame. I'm using the GUI Builder with the Free Form layout (GroupLayout). I've ...
2
votes
3answers
61 views

What happens when my Java applet runs on older Java versions, but uses new classes?

I am creating an applet to embed in an HTML page. This applet uses the GroupLayout class, which is found in Java SE 6, but not in 5. When someone whose computer runs Java 5 or earlier opens this HTML ...
2
votes
2answers
699 views

Why does my JTextArea overflow the frame in GroupLayout?

I'm observing some strange behavior using GroupLayout. I've got a JTextArea that is contained inside of a JScrollPane that is resizing and pushing other components out of the JFrame. Oddly, if I ...
2
votes
2answers
146 views

Stopping GroupLayout components from stretching vertically

Is there an easy way to get all (or most) of the components in a GroupLayout application NOT stretch vertically? I know I can do it by forcing each component to it's preferred size when I add it, but ...
1
vote
3answers
87 views

Aligning GroupLayout in the center of screen in Java Swing?

So if i have a GUI like this: import javax.swing.GroupLayout; public class MyTest extends javax.swing.JFrame { public MyTest() { initComponents(); } private void ...
1
vote
2answers
193 views

With GroupLayout, how can I align separate components to each end of one longer component? Or, can one component span multiple parallel groups?

tl;dr: I want to do what's in the second picture (ignore the red lines) I understand how GroupLayout works, but I can't figure this out, or whether it's even possible. I initially had this code: ...
1
vote
1answer
121 views

Baseline broken with GroupLayout and nested Panels

I am using GroupLayout for my main layout, and baseline alignment works fine, until I add internal panels. It seems the baseline is not propagated through these panels: While all buttons, labels, etc. ...
1
vote
2answers
204 views

Gap size after placing JSeparator in Java Swing

I have a simple problem here in Java Swing. I simplified my code to the following snippet. I am not sure how I can minimize the gap size between the horizontal JSeparator with the next JTextField, as ...
1
vote
2answers
229 views

How to center content of a GroupLayout in Java applet

I would like to center content of a GroupLayout in Java applet. After long research I still cannot figure out how to do it. Code below shows my applet. All elements are centered to layout but the ...
1
vote
1answer
142 views

How to remove a specific element from a JPanel using BorderLayout/GroupLayout?

I need to remove the Component in the Center of the JPanel, but after some tries no prevail. I tried the method here: Removing the CENTER element from a JPanel using BorderLayout But the answer's ...
1
vote
1answer
68 views

Using GroupLayout

I am trying to use GroupLayout from NetBeans 7.0, but I simply cannot select it. I did go to Properties/Libraries/Wrapped JARs/swing-layout-1.0.4.jar and even make it public but still GroupLayout ...
1
vote
1answer
120 views

Swing GroupLayout show only one component? How to fix that?

So, I have basic frame with GroupLayout and 3 component. It in theory should look something like that [------label------] [button][button] But it shows me only last used button component ...
1
vote
2answers
930 views

Why doesn't my JPanel's preferred size change when its contained JScrollPane does in GroupLayout?

Using GroupLayout and the code below, I noticed that the leftPanel is not updating it's preferred size. I thought this was supposed to be automatic and appears to work in other layout managers. How ...
1
vote
1answer
191 views

GCJ javax.swing.GroupLayout

I am using gnu compiler for java version 4.4.4. It doesn't come with support for javax.swing.GroupLayout. Do later versions come with this support? I have build GCC many times before on my system. ...
1
vote
1answer
536 views

Java Swing - problem insert component in JTextPane

The below given program insert a new JTextArea on button click. Everytime new TextArea is inserted in new Line. The program is working fine on Linux machine but not on windows machine. On windows ...
1
vote
0answers
388 views

Setting maximum width using Matisse GUI builder

I'd like to create a GUI where some of the textfields are resizable horizontaly but maximum width is also specified. For instance the preferred width is 100 pixels, it can be bigger if the window is ...
0
votes
1answer
17 views

Components rendered on top of each other with GroupLayout

I trying to learn how to use Java Swing's GroupLayout. First of all I just want to make a grid made from JLabels. The problem I'm having is that the JLabels are being rendered directly on top of ...
0
votes
1answer
98 views

How to make components normal sized in GroupLayout in Java

I am trying to make a layout for my applet, but I cannot handle one problem - some of the elements (e.g. JComboBox) are as big as they can be - take all place in applet. setSize function do not work. ...
0
votes
0answers
125 views

java.lang.IllegalStateException: com…[canvas0,0,0,200x200,invalid] is not attached to a horizontal group

I do not understand how to use GroupLayout I tried something as trivial as: javax.swing.GroupLayout layout = new javax.swing.GroupLayout(this); layout.setAutoCreateGaps(true); ...
0
votes
1answer
46 views

Getting the correct sizes for JComponent after using GroupLayout

I wanted to ask whether it is possible to get the correct sizes of an JPanel after it has been placed in another JPanel that uses GroupLayout as Layout Manager. I have already tried to use: ...
0
votes
1answer
340 views

Java's Swing seems to be changing the layout from Card Layout

I am having some pretty strange symptoms with JPanels and CardLayout. Essentially, I have cards which act as "pages" since I can only hold 12 cells on the grid, and I display each page as a card, and ...
0
votes
1answer
145 views

Layout manager won't work

I have done an layout in my GUI but it did not work , all the component just appear one after another. Here is my codes : import javax.swing.*; public class main extends JFrame { public main() { ...