I have a panel with flow layout, and it can contain a variable number of items - from 1 to 2000. I want to put it inside a scroll pane, scrollable in vertical direction, and with fixed width. The problem is, when I set preferred size of panel to something like (800,600), some items are missing, and there is no scroll. If I set up preferred size of scroll pane, then all elements in flow pane are put on one very long line.

Setting maximum size on any element seems to do nothing at all - layout managers ignore it.

How can I fix this?

link|improve this question

1  
from 1 to really big numbers is there some logics – mKorbel Oct 3 '11 at 9:34
2  
do. not. use. setXXSize. Instead, use an appropriate LayoutManager – kleopatra Oct 3 '11 at 9:36
2  
hmmm, lot of LayoutManagers ignore setXxxSize, your question is addept for sscce.org, there are endless variations starts with nested layout to the GridBagLayout – mKorbel Oct 3 '11 at 9:39
1  
@kleopatra - but when I really need some element be some specific size? – Rogach Oct 3 '11 at 9:41
2  
@Rogach: I see that I'm not the only one struggling with preferredSizeMethod :) . Here's a previous question you may consider interesting: stackoverflow.com/questions/7229226/… – Heisenbug Oct 3 '11 at 9:53
show 4 more comments
feedback

2 Answers

up vote 2 down vote accepted

You could use BoxLayout to do this:

JPanel verticalPane = new JPanel();
verticalPane.setLayout(new BoxLayout(verticalPane, BoxLayout.Y_AXIS));

JScrollPane pane = new JScrollPane(verticalPane);

//add what you want to verticalPane
verticalPane.add(new JButton("foo"));
verticalPane.add(new JButton("bar"));

This of course will use the preferred size of each component added. If you want to modify the preferred size for example of a JPanel, extend it and override getPreferredSize:

class MyPanel extends JPanel(){
    public Dimension getPreferredSize(){
         return new Dimension(100,100);
    }
} 

A note: BoxLayout will take in consideration getPreferredSize, other LayoutManager may not.

Please criticize my answer, I'm not sure it's completely correct and I'm curious to hear objections in order to know if I understood the problem.

link|improve this answer
3  
'This of course will use the preferred size of each component added' of course is wrong (or not completely correct, depends a bit on what you mean by "use" ;-) LayoutManagers are free to do whatever they like with the hints given by the components. Overriding the getXXSize is the right direction to go, though hard-coded values are nearly as bad as setting them. Simply use a decent LayoutManager and configure it with whatever sizing rules you need. – kleopatra Oct 3 '11 at 11:10
feedback

I want to put it inside a scroll pane, scrollable in vertical direction, and with fixed width

You can use the Wrap Layout for this.

Don't set the preferred size of the panel. But you can set the preferred size of the scroll pane so the frame.pack() method will work.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.