| Thread | Last Post | Replies |
|
| JCheckBox displayed in node of JTree | 19 Feb 2004 15:31 GMT | 1 |
I need to do some GUI implementation work in which a JTree is implemented but each node in the tree needs to have a check box to select/de-select that node as a User Interface requirement. I tried simply creating a JCheckbox and adding it as a TreeNode but that simple
|
| Defaults for JFileChooser? | 19 Feb 2004 13:46 GMT | 3 |
Any idea how the look and feel mechanism loads the text items for JFileChooser? I began digging in the source code for UIManager.java, BasicFileChooserUI.java, and others, and rapidly got lost. Ultimately a call is made to, e.g.,
|
| Looking for a JAVA visual editor, any suggestions? | 19 Feb 2004 12:30 GMT | 5 |
I'm currently looking for a visual editor to help me create GUIs in Java. I want something that will let me easily create with prefabricated objects (labels, button, sliders, etc.) but will also let me easily create custom graphical objects not reliant on the
|
| JTable | 19 Feb 2004 00:44 GMT | 2 |
Is it possible to draw objects (squares) on a Jtable , and how ?
|
| Testing Intersection with A Rectangle(2D) w/No Area | 18 Feb 2004 17:22 GMT | 1 |
How do I test a rectangle for intersection with another rectangle which has no area, ie where the y1 and y2 co-ords are the same? All the intersect methods from awt.geom.Rectangle2D.* and awt.geom.Area seem to test for intersection with the interior of the rectangle, but that always ...
|
| list with checkbox... | 18 Feb 2004 15:32 GMT | 2 |
I have a particular requirement. - I need a JList which has list of elements along with checkboxes. But checkbox should be clicked only if the user clicks on the checkbox itself, and not otherwise.
|
| setModel() and updateUI() ???? | 18 Feb 2004 14:18 GMT | 1 |
hi~ all one> list.setModel(listModel); list.updateUI();
|
| How do I make text "blink" | 18 Feb 2004 07:44 GMT | 6 |
I have a Canvas component, which has been added to a JPanel, which in turn has been added to a JFrame. I am attempting to make a line of text "blink" on the Canvas component, which is not working.
|
| Help: paintComponent does not work as intended | 17 Feb 2004 23:50 GMT | 1 |
Good day! I am new to paintComponent and cannot get it to work (Logo not drawn at all). Below are the key classes. StickMan and StickWoman (not shown) just use Graphics methods
|
| differense of look between 1.4.2 and 1.4.1 | 17 Feb 2004 23:16 GMT | 4 |
when compiling and running with jdk 1.4.2 (or higher) the look is totally different then when i use 1.4.1 fe mouse over on buttons seems different, the look of the radiobuttons is different , how can i solve this fe how i call a button
|
| Creating a grid for a agenda | 17 Feb 2004 21:30 GMT | 3 |
I need to create a agenda ,currently I've used swing and it's components but swing doesn't seem to do the thing. I need to create some grid with objects (squares) that I can resize and move on the grid.
|
| Using JComponent.getGraphics() in Swing for incremental painting | 17 Feb 2004 21:21 GMT | 6 |
I have read many posts and articles saying "don't ever use getGraphics() in Swing JComponents... always use paintComponent()!" I understand the motivation for such statements: the paintComponent() method should be used to implement painting, in order to ensure
|
| Launching applet from console?!?! | 17 Feb 2004 16:14 GMT | 5 |
I'd like to launch an applet from the console, as if it would be a Frame. I tried adding the main and creating hte applet object from there, but it doesn't work. Where do I go wrong? Thanx so much to anyone who can help me!
|
| JPanel, JLabel, Graphics | 17 Feb 2004 15:48 GMT | 2 |
It's my first post here, so you doubt I have a question :o) I want to develop a mini graphical editor. Imagine that I have 2 JFrame, I want to have one with a list of JToggleButton with a ImageIcon and one called DrawingAeraWind with nothing into.
|
| MenuItem change base on selection in main window | 17 Feb 2004 08:44 GMT | 1 |
I want to know how to implement a MenuItem change (enable/disable item or like in microsoft word, the window menu). I explain. When you have a Gui application, you select a line or some field in the main window and the menu will change base on the selection you
|