| Thread | Last Post | Replies |
|
| Invoking an action from a MouseListener on a JTable | 31 Jul 2003 17:40 GMT | 1 |
I've got a JTable that I'd like to have invoke an Action when a user double-clicks on a row. I found code on Google to get me started on adding a MouseListener to the table, checking the click count and calculating the clicked row. What I'm stuck on is how to invoke the
|
| Help with transforms | 31 Jul 2003 15:59 GMT | 3 |
I have a simple program below where the user can draw rectangles on a panel. The choice to either rotate or scale any single rectangle should result in the appropriate action.(after selecting a shape). However, the selected rectangle is transformed(rotated or scaled) but it
|
| JTabbedPane | 31 Jul 2003 13:58 GMT | 5 |
Has anyone out there written some very simple code to create a JTabbedPane that I could compare mine too? I have tried multiple times to create one using the code given on the Sun tutorial but must be missing something vital. I just get a very small blank
|
| Owner menu vs. dialog (layers) | 29 Jul 2003 22:20 GMT | 1 |
Is it possible to have an owner (frame) to have it's menu display over it's dialogs? I assumed incorrectly that owner's menu would have priority, but I assumed wrong as I forget that I was dealing with dialogs.
|
| converting a class to 2D? | 29 Jul 2003 17:54 GMT | 1 |
I have a program which adds shapes (rectangles, circles, etc) to a vector v. this is done by: v.add(new Rects(x, y, w, h)) ; Is there a easier way to make the Rects class have all the charateristics of
|
| Swing design? | 29 Jul 2003 11:53 GMT | 1 |
does anybody know of any resources that describe good design practices for large Swing applications? thanks, j.
|
| How to eliminate flicker from animation?? | 29 Jul 2003 02:58 GMT | 1 |
I've got a program that numerically generates two-dimensional data, which I'd like to display as an image. I'd like to get roughly realtime (10 fps or so). However, what I'm getting now is flicker. Here's the overloaded paintComponent method. My component is a JFrame
|
| Clickable JTable Cells | 29 Jul 2003 02:57 GMT | 2 |
How would I go about making the cells in a JTable clickable? By clicking one of the cells, I want to be able to open up a unique window. Thanks, Danny
|
| Java GUI Design: Docking and floating observation / questions | 28 Jul 2003 20:01 GMT | 6 |
I'm currently designing an application that will have floating and docking panels. In a sense, it will look like an MDI application, but it will allow the user to drag "panels" outside of the Frame or dock them to the inside.
|
| JRadioButton Focus Indicator | 28 Jul 2003 18:28 GMT | 1 |
I have a screen with many radio buttons (~24)... most people will be tabbing through all these fields making selections, instead of using the mouse. How do I give a visual indication of what JRadioButton currently has focus? Most UI's provide a dashed box or highlight the
|
| JInternalFrame and JDesktopPane | 28 Jul 2003 17:52 GMT | 1 |
I'm having some trouble with JInternalFrame and JDesktopPane. When I'm adding a JInternalFrame to the JDesktopPane it appears behind the JInternalFrame that's already open. How can I show the JInternalFrame above all other open JInternalFrame(s)?
|
| JFrame Borders | 28 Jul 2003 17:31 GMT | 2 |
Is there any way to eliminate borders on a JFrame so that a panel will run to the end of the screen. Also, how can you get the dimension of the title bar in pixels. Thanks in advance.
|
| Java2D cubic control points | 27 Jul 2003 23:32 GMT | 2 |
What do Java2D cubic control points represent? GEOMETRIC OBSERVATIONS AND QUESTIONS: Observations: The line from the control point to the endpoint is tangental to the curve at the endpoint. If both control points are coincident with
|
| Help with JPanel and Container problems | 27 Jul 2003 00:52 GMT | 5 |
I am try to set up a frame divided into 3 sections. For each section I use a JPanel in which I put buttons and fields and whatnot. Now, when I add each panel individually to the contentPane, they extend to the edge of the frame as they should. However, I would like to put these ...
|
| applet security | 26 Jul 2003 21:57 GMT | 3 |
Is there a way of signing or cerifying an applet so that when it is downloaded, the user can authorise the applet to access the local file system? If so, where would I start? Tony
|