| Thread | Last Post | Replies |
|
| SWT and SVG in standalone bpplication | 12 Apr 2006 23:19 GMT | 1 |
I am developing a standalone application using the SWT framework; however, the application will not be based on the eclipse rich client. I like to integrate SVG graphics into my application; more precisely, I would like to render SVG graphics to arbitrary positions on a Canvas. Is ...
|
| Java Swings: Adding JButton to JFrame | 12 Apr 2006 19:31 GMT | 2 |
I have a problem in the following code.....I was unit testing the code from main(). I have the FaMain base class for creating the window with certain features. So I need all my child windows to inherit FaMain class. Similarly, I need FaButton as base class instead of JButton.
|
| Getting access to printDialog attributes | 12 Apr 2006 18:20 GMT | 2 |
I need to print 8 html files. These files are loaded into JEditPanes which are then passed to a PrinterJob object. It would be nice to query the user with the print Dialog ( printDialog() ) at the beginning of the print sequence but not for each successive file. It appears that ...
|
| setResizable on JOptionPane.showConfirmDialog() | 12 Apr 2006 17:24 GMT | 1 |
I create a JDialog using something like public class Thingies; public static void editThingies() { ThingyTableModel ttm = new ThingyTableModel();
|
| Locking a JFrame | 12 Apr 2006 15:48 GMT | 1 |
I have a Jframe and want to fix its size so that it does not get's resized by pulling it with a mouse or cliking on the maximize button
|
| Image swallows buttons | 12 Apr 2006 15:10 GMT | 2 |
I am trying to draw an image in a panel.In the same panel I try to use some buttons also.Then i add the panel into a frame.When i use request focus in the paint method of the frame the buttons are shown.Otherwise the buttons are covered by image.The problem is I use the JPanel in an
|
| How to 'pack' a JPanel? | 12 Apr 2006 14:17 GMT | 18 |
I have a GUI made up of a number of JPanels within JPanels. The layout and size of the top level of JPanels is controlled using a GridBagLayout and this seems to be fine. The problem I am having is that some of the JPanels within these top level JPanels (and the JPanels within ...
|
| How to select a leaf in a JTree using a JButton | 12 Apr 2006 14:10 GMT | 3 |
Here's the deal. I need to select a leaf in a jtree using a click on a button. I'm making some kind of MP3 player so when i press "next" i need it to select the next leaf. When "shuffle" is pressed i need it to select a random leaf. How do i do it?
|
| How to wait() until painted ? | 12 Apr 2006 13:55 GMT | 2 |
I need to save my jpanel content to the SVG file but after JPanel was drawn. So I need to wait() until the paint method was finished. How can I know that the panel is drawn ?
|
| JTable model updating problems | 12 Apr 2006 12:00 GMT | 3 |
I am trying to allow an application to update the data in a JTable (not by editing the actual table itself though). I am trying to update the data in the table model from a different class to the one which extends AbstractTableModel which the model is in.
|
| JEditorPane | 12 Apr 2006 11:19 GMT | 1 |
I have used JEditorPane to display an HTML page. I use JEditorPane jep = new JEditorPane(); jep.setPage("file:index.html");
|
| Initial position of a JDialog | 12 Apr 2006 10:57 GMT | 1 |
Why does every JDialog you 'setVisible' is shown on the upper right corner of the screen? Why isn't it shown on top of the calling Frame/Dialog? I mean, when you call a new dialog you will expect it to appear close to where the button on which you clicked. I thought that
|
| problems with implementation of own scrollable bar | 12 Apr 2006 10:39 GMT | 1 |
We are experiencing problems with making our own scrolling class and putting them into a ScrollPane.The program below does not draw anything in the paintComponent procedure. It does not create scroll bars
|
| problems with drop down menu | 12 Apr 2006 08:10 GMT | 5 |
I created a menubar with drop down menus. its working fine but there is one problem that when the drop down part comes over a list box the drop down part gets overlapped by the list box. This does not happen in case of a text box. incase of the text box the
|
| JPopupMenu + Applet in Mac vs. Windows | 12 Apr 2006 04:10 GMT | 4 |
(example code below!) I developed an applet -- JApplet -- on Windows. When a JPopupMenu is visible and the browser is moved around, the JPopupMenu stays "glued" to its position relative to the component specified in the
|