| Thread | Last Post | Replies |
|
| How to make Component/JComponent's border to zero? | 19 Jul 2007 14:27 GMT | 4 |
For example, I want a JLabel without its border ( border width = 0) How to do that? Thank Q very much in advance!
|
| Drawing line from one JButton to another JButton | 19 Jul 2007 14:26 GMT | 2 |
I'm developing some thing like an electronic circuit designer. I have a number of JButtons placed programatically on a JPanel. Now I need to draw lines between pairs of JButtons by dragging mouse from one button to another one. Please advice on how such a thing can be implemented.
|
| Structuring packages in a GUI application | 18 Jul 2007 08:19 GMT | 1 |
Let's say I have a GUI project "abc" that consists of 3 "components" each of which has some widgets (GUI elements), model classes and controller classes. What's the best way to structure the packages? My first thought would be something like this:
|
| Draggable lables/button on frame/panel | 17 Jul 2007 12:34 GMT | 1 |
in an appliction i'm developing, i need to place jlabels or button on a frame/panel. when the application is running, i should be able to drag these jlabels/buttons around. how can this be done. Please advice Thanks in advance
|
| ListSelectionListener Responds to Mouse Button Up and Down | 16 Jul 2007 21:51 GMT | 5 |
This seems quite different than the issue I had with an ActionListener responding twice (it was added twice). I've even checked to make sure this list box has only one ListSelectionListener. I have a JList that allows multiple interval selection and the
|
| Changing Panel view from JComboBox | 15 Jul 2007 03:04 GMT | 7 |
I hava a problem with my Gui. I have: 1 Frame with 2 panels (JPanel) on first JPanel I have JComboBox object and on second panel i want to have different objects for each
|
| radioButton without radio | 15 Jul 2007 02:43 GMT | 16 |
I want to create a group of buttons with radiobutton functionality (exclusive to each other) but I don't want that radio in front of each button. I want those buttons look like normal JButton. In addition, I specify 2 colors for the button when selected and unselected. But I
|
| Listeners Still Respond After Being Removed | 14 Jul 2007 23:24 GMT | 5 |
I have the following code (with line numbers for convenience): //jList is a JList 1 jList.setFocusable(false); 2 jList.removeListSelectionListener(this);
|
| creating an ESRI shapefile | 14 Jul 2007 20:22 GMT | 3 |
I need to create an ESRI shapefile set (.shp, .shx, .dbf) from an object. The object is drawn to the screen -- or any Graphics2D -- via its draw() method, so a good starting point would be an implementation of Graphics2D which writes to a shapefile instead of the screen.
|
| Problem with loaded images after pack() | 14 Jul 2007 07:32 GMT | 5 |
I've run into a rather strange problem, at least for me. I've got an AWT Frame containing a Canvas at the center of a BorderLayout which an Image is painted on. This Canvas returns the Image's size as preferred size, so on pack()-ing
|
| Java | 14 Jul 2007 00:59 GMT | 3 |
Do any of you know someone experienced in Java that is interested in a full time job in Tucson, Omaha or Dallas? Company dies not pay relo but has an excellent reputation as a great place to work. If you are interested sheck out www.retaliz.com
|
| JFileChooser features | 13 Jul 2007 21:13 GMT | 9 |
Does anyone know if there's a reliable alternate file browsing dialog, or if JFileChooser is being worked on? It lacks many features that the simple native Windows FileDialog has, such as the different views, popup-menu operations, etc.
|
| Creating a form in SWT | 13 Jul 2007 19:15 GMT | 3 |
It seems there is a lack of tutorials for SWT out there, at least significantly less than the amazing Swing Tutorial. Anyways . . . I was thinking of converting my partially developed app from Swing to SWT. I'm currently spending my free time testing out SWT, however a
|
| in-place editing of text on a canvas | 12 Jul 2007 23:41 GMT | 1 |
We are working on a Whiteboard application. We have a feature where text can be written on the canvas. Currently we popup up a dialog to enter text to be written and then use a text area to display it on the canvas.
|
| HTML in JTree (via JEditorPane?) | 12 Jul 2007 05:34 GMT | 11 |
Is there any way to have HTML-formatted text in a JTree node? I have to display up to 400 characters in the node. I was thinking about building a JEditorPane into a TreeNode, but have no idea how to do this.
|