JSplitPane

1999-12-01 Thread jbaker
Anyone else find that the mouse "jumps over" the divider in a JSplitPane under the Jdk1.2pre2 and Jdk1.2.2rc2 (aint tried any more) I have the following 'sets' in operation: .setOneTouchExpandable(true); .setContinuousLayout(false); .setDividerSize(8); .setDividerLo

Re: Problem with JSplitPane on 1.1.7 and Swing 1.1.1b2

1999-04-27 Thread Maksim Lin
ddWindowListener (new BasicWindowMonitor()); > JTextField b1 = new JTextField("Button 1"); > JTextField b2 = new JTextField("Button 2"); > b1.addActionListener(this); > b2.addActionListener(this); > b1.addFocusListener(this); > b2.

Problem with JSplitPane on 1.1.7 and Swing 1.1.1b2

1999-04-27 Thread Gerald Preissler
ew JTextField("Button 1"); JTextField b2 = new JTextField("Button 2"); b1.addActionListener(this); b2.addActionListener(this); b1.addFocusListener(this); b2.addFocusListener(this); JSplitPane test = new JSplitPane(

Re: Repaint problems with JList/JScrollPane/JSplitPane

1998-12-08 Thread Catalin CLIMOV
Try also a myList.revalidate() also. It works. Catalin CLIMOV. Trieu Dang wrote: > Hi, > My application uses a JSplitPane in which the top and bottom components > are JScrollPane. The bottom scrollpane contains a JList. My list changes > depending on the user's actions

Repaint problems with JList/JScrollPane/JSplitPane

1998-12-07 Thread Trieu Dang
Hi, My application uses a JSplitPane in which the top and bottom components are JScrollPane. The bottom scrollpane contains a JList. My list changes depending on the user's actions so I have to use setListData, which must be followed by repaint(), otherwise the data wouldn't ch