Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > Java > JScrollPane Scrollbar issues

Reply
Thread Tools

JScrollPane Scrollbar issues

 
 
SeanSBW@gmail.com
Guest
Posts: n/a
 
      08-30-2006
Sorry if this has been posted. I went through 3 pages of topics
looking for it, plus numerous google searches to no avail. Does anyone
know why in Java 1.5 the Horizontal scrollbar in a JScrollPane
initializes to the middle?

I've tried using:

JScrollPane pane
// more initialization, but the last call is as follows.
pane.getHorizontalScrollBar().setValue(0);

Any thoughts? I thought it might be where the visible rectangle is
set, but I am not sure. I was also wondering why too.

Thanks,

Sean

 
Reply With Quote
 
 
 
 
Michael Rauscher
Guest
Posts: n/a
 
      08-30-2006
schrieb:
> Sorry if this has been posted. I went through 3 pages of topics
> looking for it, plus numerous google searches to no avail. Does anyone
> know why in Java 1.5 the Horizontal scrollbar in a JScrollPane
> initializes to the middle?


It doesn't

import java.awt.Dimension;
import javax.swing.*;

public class Test {

public static final void main( String args[] ) {
JTable table = new JTable(5,5);
table.setAutoResizeMode( JTable.AUTO_RESIZE_OFF );
JScrollPane scrollPane = new JScrollPane( table );
scrollPane.setPreferredSize( new Dimension(300,200) );

JFrame frame = new JFrame();
frame.setDefaultCloseOperation( JFrame.DISPOSE_ON_CLOSE );
frame.setContentPane( scrollPane );
frame.pack();
frame.setVisible(true);
}
}

Bye
Michael
 
Reply With Quote
 
 
 
 
SeanSBW@gmail.com
Guest
Posts: n/a
 
      08-30-2006
Mike,

Thanks for the response. I discovered the problem, however, I'm
looking at a different situation than the simple example below. I'll
modify the ex. below to show you my issue.

import java.awt.Dimension;
import javax.swing.*;

public class Test {

public static final void main( String args[] ) {
TestPanel viewport = new TestPanel();
JScrollPane scrollPane = new JScrollPane( viewport );
scrollPane.setPreferredSize( new Dimension(300,200) );

JFrame frame = new JFrame();
frame.setDefaultCloseOperation( JFrame.DISPOSE_ON_CLOSE );
frame.setContentPane( scrollPane );
frame.pack();
frame.setVisible(true);
}
}
// Creates the ViewPort panel
class TestPanel extends JPanel
{
public TestPanel()
{
setLayout(new GridLayout(0, 6));
for (int i = 0; i < 6; i++)
{
// add new repeated panels
add(new RepeatedPanel());
}
}
}
// Repeated panel in grid formation
// ***** PROBLEM: The JTextArea inside the panel is causing
// the JScrollPane to get a different viewing area, because every
// textarea that's added to the parent JScrollPane is messing up the
scrollbar locations

class RepeatedPanel extends JPanel
{
JTextField singleLine1;
JTextField singleLine2;
JTextArea multiLine;

public TestPanel()
{
singleLine1 = new JTextField("single ex. 1");
add(singleLine1);

singleLine2 = new JTextField("single ex. 2");
add(singleLine2);

multiLine = new JTextArea("multi ex. 1");
multiLine.setLineWrap(true);
add(multiLine);
}
}

Is there a way to hide the inner JTextArea from the outside
JScrollPane, or disable it as a scrollable area? Or would it be
simpler to create a multi-line JTextField with word-wrap
and text aligned with the beginning of the field?

Thanks for your help, it is appreciated.

Michael Rauscher wrote:
> schrieb:
> > Sorry if this has been posted. I went through 3 pages of topics
> > looking for it, plus numerous google searches to no avail. Does anyone
> > know why in Java 1.5 the Horizontal scrollbar in a JScrollPane
> > initializes to the middle?

>
> It doesn't
>
> import java.awt.Dimension;
> import javax.swing.*;
>
> public class Test {
>
> public static final void main( String args[] ) {
> JTable table = new JTable(5,5);
> table.setAutoResizeMode( JTable.AUTO_RESIZE_OFF );
> JScrollPane scrollPane = new JScrollPane( table );
> scrollPane.setPreferredSize( new Dimension(300,200) );
>
> JFrame frame = new JFrame();
> frame.setDefaultCloseOperation( JFrame.DISPOSE_ON_CLOSE );
> frame.setContentPane( scrollPane );
> frame.pack();
> frame.setVisible(true);
> }
> }
>
> Bye
> Michael


 
Reply With Quote
 
Michael Rauscher
Guest
Posts: n/a
 
      08-30-2006
Hi,
schrieb:
> Mike,
>
> Thanks for the response. I discovered the problem, however, I'm
> looking at a different situation than the simple example below. I'll
> modify the ex. below to show you my issue.


Sorry, but I can't see your issue.

Running your example (on build 1.5.0_06-b05 - after fixing some errors
to get the code compiled) initializes the scrollbar to the left.

Bye
Michael
 
Reply With Quote
 
SeanSBW@gmail.com
Guest
Posts: n/a
 
      08-30-2006
Michael,

I saw what you meant. Sorry for the sloppy code. Here is another
version more tightly coupled to my code. The only difference is that I
removed the validate() call from my code and it still displays the same
way. If you click the update button at the bottom of the window, watch
the scrollbars, they jump to the middle and stay there. My GUI loads
that way, which is odd to me because I removed the validate() call.

import java.awt.Dimension;
import javax.swing.*;
import javax.swing.border.*;

import java.awt.*;
import java.awt.event.*;


public class Test {


public static final void main( String args[] ) {

Box displayPane = new Box(BoxLayout.PAGE_AXIS);
Dimension d = new Dimension(500,500);
int idx = 0;
TestPanel viewport = new TestPanel(idx);
displayPane.add(viewport);

JButton update = new JButton("update");
update.addActionListener(viewport);
displayPane.add(update);
JFrame frame = new JFrame();
frame.setDefaultCloseOperation( JFrame.DISPOSE_ON_CLOSE );
frame.setContentPane( displayPane );
frame.pack();
frame.setVisible(true);
}
}
// Creates the ViewPort panel
class TestPanel extends JPanel implements ActionListener {

Dimension dfltSize = new Dimension(400, 150);
int offset = 36;
int og;
Dimension d = new Dimension(1200, 225);
Dimension vpSize = new Dimension(500,500);
JScrollPane scrollPane;
JPanel viewport;


public TestPanel(int idx) {
og = idx+1;
scrollPane = new
JScrollPane(JScrollPane.VERTICAL_SCROLLBAR_AS_NEED ED,
JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);
viewport = createPanel(idx);
add(scrollPane);
scrollPane.setPreferredSize(vpSize);
scrollPane.setMaximumSize(vpSize);
scrollPane.setMinimumSize(vpSize);
scrollPane.setViewportView(viewport);
scrollPane.validate();
}

public JPanel createPanel(int idx){
JPanel view = new JPanel();
view.setLayout(new GridLayout(0, 6));
for (int i = idx; i < idx+offset; i++) {
// add new repeated panels
RepeatedPanel tmp = new RepeatedPanel(i);
tmp.setPreferredSize(dfltSize);
tmp.setMaximumSize(dfltSize);
tmp.setMinimumSize(dfltSize);
view.add(new RepeatedPanel(i));
}
return view;
}

public void actionPerformed(ActionEvent e) {
update();
}
public void update(){
viewport = createPanel(og++);
scrollPane.setViewportView(viewport);
scrollPane.validate();
}
}

class RepeatedPanel extends JPanel {
JTextField singleLine1;
JTextField singleLine2;
JTextArea multiLine;
Border txtAreaBorder;
Dimension txtAreaSize = new Dimension(100, 100);

public RepeatedPanel(int idx) {
singleLine1 = new JTextField(Integer.toString(idx));
add(singleLine1);

singleLine2 = new JTextField(Integer.toString(idx));
add(singleLine2);

multiLine = new JTextArea(Integer.toString(idx));
multiLine.setLineWrap(true);
multiLine.setPreferredSize(txtAreaSize);
multiLine.setMaximumSize(txtAreaSize);
multiLine.setMinimumSize(txtAreaSize);
add(multiLine);

setBorder(BorderFactory.createLoweredBevelBorder() );
}
}

 
Reply With Quote
 
Michael Rauscher
Guest
Posts: n/a
 
      08-30-2006
schrieb:
> Michael,
>
> I saw what you meant. Sorry for the sloppy code. Here is another
> version more tightly coupled to my code. The only difference is that I
> removed the validate() call from my code and it still displays the same
> way. If you click the update button at the bottom of the window, watch
> the scrollbars, they jump to the middle and stay there. My GUI loads
> that way, which is odd to me because I removed the validate() call.


Ah, I see. The problem is that JComponent hands scrollRectToVisible up
the hierarchy. Solutions:

a) put multiLine into a JScrollPane or
b) override scrollRectToVisible in RepeatedPanel

Bye
Michael
 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
ScrollBar? Does it exist just WEB ScrollBar Control? Alex ASP .Net Web Controls 1 04-04-2004 12:44 AM
Problem with JList, DefaultListModel and JScrollPane Tobi Krausl Java 0 11-12-2003 11:20 AM
change jscrollpane bar? soni29 Java 0 08-21-2003 07:39 PM
TextArea in JScrollPane extends, not shrinks Miguel De Anda Java 0 08-13-2003 08:40 PM
JScrollPane scroll to top Richard Trahan Java 0 07-26-2003 04:01 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57