active questions tagged swing - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T04:53:29Z http://stackoverflow.com/feeds/tag/swing http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1892015/java-swing-fade-out-background 2 Java Swing Fade Out Background Jeff Storey 2009-12-12T02:13:56Z 2009-12-12T04:40:17Z <p>I have a Swing application and I'm trying to fade out the main application and show a window saying an operation is in progress (this is for long running operations that may need to block the UI). Is there an elegant way to do this in Swing (mainly the fading out the background) or maybe some swing library to help with this (maybe from swing labs)?</p> <p>Thanks,</p> <p>Jeff</p> http://stackoverflow.com/questions/422956/java-swing-or-java-qt 20 Java Swing or Java Qt? Gili 2009-01-08T01:54:50Z 2009-12-11T18:58:38Z <p>Can someone with extensive experience with both Qt and Java Swing please discuss whether you would use Swing or Qt under Java, and why?</p> <p>Secondly, what is the business impact of using Qt? Is it reasonably popular or will I have a hard time finding experienced Qt developers? Are there any other business impacts I should be aware of?</p> <p><strong>UPDATE</strong>: I am more interested in the technical and business impacts of Swing vs Qt than the license type/fee since in my case the cost is not a concern.</p> http://stackoverflow.com/questions/1886329/java-swing-jtoolbar 0 Java Swing JToolBar Nilesh 2009-12-11T07:05:26Z 2009-12-11T17:52:15Z <p>I have created JToolBar (Java Swing). I have set a Background image on frame which contains JToolBar. I want my JToolBar to be transparent so that the image kept on frame should be visible. I am using setOpaque(false) but it is not having any effect on my toolbar.. Has anyone delt with this before? My Code is as follows</p> <p>import javax.swing.ImageIcon; import javax.swing.UIManager; import javax.swing.UnsupportedLookAndFeelException;</p> <p>public class NewJFrame extends javax.swing.JFrame { static NewJFrame dialog = null;</p> <pre><code>/** Creates new form NewJFrame */ public NewJFrame() { initComponents(); jToolBar1.setOpaque(false); } /** This method is called from within the constructor to * initialize the form. * WARNING: Do NOT modify this code. The content of this method is * always regenerated by the Form Editor. */ @SuppressWarnings("unchecked") // &lt;editor-fold defaultstate="collapsed" desc="Generated Code"&gt; private void initComponents() { jToolBar1 = new javax.swing.JToolBar(); setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE); jToolBar1.setRollover(true); javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane()); getContentPane().setLayout(layout); layout.setHorizontalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addComponent(jToolBar1, javax.swing.GroupLayout.DEFAULT_SIZE, 400, Short.MAX_VALUE) ); layout.setVerticalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(layout.createSequentialGroup() .addComponent(jToolBar1, javax.swing.GroupLayout.PREFERRED_SIZE, 25, javax.swing.GroupLayout.PREFERRED_SIZE) .addContainerGap(275, Short.MAX_VALUE)) ); pack(); }// &lt;/editor-fold&gt; /** * @param args the command line arguments */ public static void main(String args[]) { java.awt.EventQueue.invokeLater(new Runnable() { public void run() { try { try { // Set cross-platform Java L&amp;F (also called "Metal") UIManager.setLookAndFeel(UIManager. getSystemLookAndFeelClassName()); } catch (UnsupportedLookAndFeelException ex) { ex.printStackTrace(); } } catch (ClassNotFoundException e) { e.printStackTrace(); } catch (InstantiationException e) { e.printStackTrace(); } catch (IllegalAccessException e) { e.printStackTrace(); } ImagePanel panel = new ImagePanel(new ImageIcon("image").getImage()); dialog = new NewJFrame(); dialog.getContentPane().add(panel); dialog.setVisible(true); } }); } // Variables declaration - do not modify private javax.swing.JToolBar jToolBar1; // End of variables declaration </code></pre> <p>}</p> http://stackoverflow.com/questions/1888535/fire-mouse-event-on-underlying-components 0 Fire mouse event on underlying components Emilis Panovas 2009-12-11T14:47:49Z 2009-12-11T16:56:17Z <p>I'm looking for a way to pass mouse events to components covered by other components. To illustrate what I mean, here's a sample code. It contains two <em>JLabel</em>s, one is twice smaller and entirely covered with a bigger label. If you mouse over the labels, only the bigger one fires <em>mouseEntered</em> event however.</p> <pre><code>import java.awt.Color; import java.awt.event.MouseAdapter; import java.awt.event.MouseEvent; import javax.swing.JFrame; import javax.swing.JLabel; import javax.swing.WindowConstants; import javax.swing.border.LineBorder; public class MouseEvtTest extends JFrame { public MouseEvtTest() { setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE); setLayout(null); setSize(250, 250); MouseAdapter listener = new MouseAdapter() { @Override public void mouseEntered(MouseEvent e) { System.out.printf("Mouse entered %s label%n", e.getComponent().getName()); } }; LineBorder border = new LineBorder(Color.BLACK); JLabel smallLabel = new JLabel(); smallLabel.setName("small"); smallLabel.setSize(100, 100); smallLabel.setBorder(border); smallLabel.addMouseListener(listener); add(smallLabel); JLabel bigLabel = new JLabel(); bigLabel.setName("big"); bigLabel.setBorder(border); bigLabel.setSize(200, 200); bigLabel.addMouseListener(listener); add(bigLabel, 0); //Add to the front } public static void main(String[] args) { new MouseEvtTest().setVisible(true); } } </code></pre> <p>What would be the best way to fire mouse entered event on the smaller label when cursor is moved to the coordinates above it? How would it work in case where there would be multiple components stacked on top of each other? What about the remaining mouse events, like <em>mouseClicked</em>, <em>mousePressed</em>, <em>mouseReleased</em>, etc.?</p> http://stackoverflow.com/questions/1882487/why-does-repaintlong-repaint-immediately 1 Why does repaint(long) repaint immediately? Gili 2009-12-10T17:12:00Z 2009-12-11T12:39:36Z <p>According to the Javadoc, <a href="http://java.sun.com/javase/6/docs/api/java/awt/Component.html#repaint%28long%29" rel="nofollow">JComponent.repaint(long)</a> is supposed to schedule a repaint() sometime in the future. When I try using it it always triggers an immediate repaint. What am I doing wrong?</p> <pre><code>import java.awt.AlphaComposite; import java.awt.Color; import java.awt.Graphics; import java.awt.Graphics2D; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import javax.swing.JFrame; import javax.swing.JPanel; import javax.swing.Timer; public class Repaint { public static final boolean works = false; private static class CustomComponent extends JPanel { private float alpha = 0; @Override protected void paintComponent(Graphics g) { super.paintComponent(g); Graphics2D g2d = (Graphics2D) g; g2d.setComposite( AlphaComposite.getInstance(AlphaComposite.SRC_OVER, alpha)); g2d.setPaint(Color.BLACK); g2d.fillRect(0, 0, getWidth(), getHeight()); alpha += 0.1; if (alpha &gt; 1) alpha = 1; System.out.println("alpha=" + alpha); if (!works) repaint(1000); } } public static void main(String[] args) { final JFrame frame = new JFrame(); frame.getContentPane().add(new CustomComponent()); frame.setSize(800, 600); frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE); frame.setVisible(true); if (works) { new Timer(1000, new ActionListener() { @Override public void actionPerformed(ActionEvent e) { frame.repaint(); } }).start(); } } } </code></pre> http://stackoverflow.com/questions/1882400/is-there-a-convenient-way-to-use-a-spinner-as-an-editor-in-a-swing-jtable 0 Is there a convenient way to use a spinner as an editor in a Swing JTable? Uri 2009-12-10T16:58:57Z 2009-12-10T18:59:29Z <p>I deal with numeric data that is often edited up or down by 0.01*Value_of_variable, so a spinner looks like a good choice compared to a usual text cell. </p> <p>I've looked at DefaultCellEditor but it will only take text fields, combo boxes or check boxes.</p> <p>Is there a convenient way to use a spinner?</p> http://stackoverflow.com/questions/1880888/javax-swing-grouplayout-not-exist-in-jdk-1-5 0 javax.swing.grouplayout not exist in jdk 1.5 tamizhan 2009-12-10T13:09:43Z 2009-12-10T17:59:30Z <p>I developed a java application with netbeans. It used jdk 1.6.</p> <p>It works fine.</p> <p>But now the requirement is I need to build the jar for the application from the .java files in another machine without netbeans and where jdk 1.5 is used. I cannot upgrade that machine to jdk 1.6.</p> <p>Is there any way I could make my java files compile and work in jdk 1.5 machine with a possible minimal change to my source code..</p> <p>The error is javax.swing.grouplayout not available in jdk 1.5</p> <p>Please help...</p> http://stackoverflow.com/questions/1881054/swing-question-jtree-custom-tree-model 2 Swing question / JTree / custom tree model Thomas Arts 2009-12-10T13:42:40Z 2009-12-10T17:29:54Z <p>Hello,</p> <p>I'm having a problem and hope, someone knows what's going wrong and why and is able to give me the explanation of what I'm missing out right now to make that thing work as suggested.</p> <p>I have a JTree which is build upon a custom TreeModel ("WRTreeModel", see below). The data structure this model shall be used for is build of an root object which contains some fields and furthermore a list which is backed by the "ArrayListModel" shown below. The tree looks fine when I build it using the WRTreeModel. I'm able to expand and collapse the nodes which represent the lists and fields contained in the objects. I can expand and collapse these lists and see their contents as well and so on.</p> <p>Now I want to remove a child of one of the lists and - as I already know - do it by removing it from the model calling the remove method of the ArrayListModel. To make the WRTreeModel aware of that remove, the first thing is to call its fireIntervalRemoved method is called, so far so good.</p> <p>In the WRTreeModels inner class ArrayModelListener the intervalRemoved method prepares the call of fireTreeNodesRemoved which then builds a TreeEvent which is forwarded to all registered TreeModelListeners (and therefore the JTree which registers itself automaticall when it's connected to the model).</p> <p>Now I would expect that the tree reflects the change and updates it's internal and visual representation to show the new state. Unfortunately this doesn't seem to work that way. Something happens. But when I click on the node I just have changed some EventHandler-Exceptions are thrown. Obviously something got really confused.</p> <p>I know it's not easy to answer such a question on the fly but I would really appreciate a fast answer. It would also be of help, if someone knew websites explaining the use of custom tree models (not on DefaultMutableTreeNode or any given implementation based class) and how the event handling and updating of the JTree works.</p> <p>With best regards,</p> <p>Thomas Arts</p> <p><hr></p> <pre><code>public class ArrayListModel&lt;E&gt; extends ArrayList&lt;E&gt; implements ListModel { ... public E remove(int index) { fireIntervalRemoved(index, index); E removedElement = super.remove(index); return removedElement; } ... } </code></pre> <p><hr></p> <pre><code>public class WRTreeModel extends LogAndMark implements TreeModel { class ArrayModelListener implements ListDataListener { ... @Override public void intervalRemoved(ListDataEvent e) { int[] indices = new int[e.getIndex1() - e.getIndex0() + 1]; for (int i = e.getIndex0(); i &lt; e.getIndex1(); i++) indices[i - e.getIndex0()] = i; fireTreeNodesRemoved(e.getSource(), getPathToRoot(e.getSource()), indices, ((ArrayListModel&lt;?&gt;)e.getSource()).subList(e.getIndex0(), e.getIndex1()+1).toArray()); } ... } public Object[] getPathToRoot(Object child) { ArrayList&lt;Object&gt; ret = new ArrayList&lt;Object&gt;(); if (child == null) return ret.toArray(); ret.add(root); if (child == root) return ret.toArray(); int childType = 0; if (child instanceof List&lt;?&gt; &amp;&amp; ((List) child).get(0) instanceof Einleitungsstelle) { childType = 1; } if (child instanceof Einleitungsstelle) { childType = 2; } if (child instanceof List&lt;?&gt; &amp;&amp; ((List) child).get(0) instanceof Messstelle) { childType = 3; } if (child instanceof Messstelle) { childType = 4; } if (child instanceof List&lt;?&gt; &amp;&amp; ((List) child).get(0) instanceof Ueberwachungswert) { childType = 5; } if (child instanceof Ueberwachungswert) { childType = 6; } if (child instanceof List&lt;?&gt; &amp;&amp; ((List) child).get(0) instanceof Selbstueberwachungswert) { childType = 7; } if (child instanceof Selbstueberwachungswert) { childType = 8; } switch (childType) { // List of ESTs case 1: { ret.add(child); break; } // EST case 2: { List&lt;Einleitungsstelle&gt; listOfEST = ((Wasserrecht) (root)).getListOfEST(); ret.add(listOfEST); ret.add(child); break; } // List of MSTs case 3: { List&lt;Einleitungsstelle&gt; listOfEST = ((Wasserrecht) (root)).getListOfEST(); ret.add(listOfEST); // Find the EST containing the List of MSTs the child referes to for (Einleitungsstelle einleitungsstelle : listOfEST) { if (child == einleitungsstelle.getListOfMST()) { ret.add(einleitungsstelle); break; } } ret.add(child); break; } // MST case 4: { List&lt;Einleitungsstelle&gt; listOfEST = ((Wasserrecht) (root)).getListOfEST(); ret.add(listOfEST); // Find the EST containing the List of MSTs the child referes to for (Einleitungsstelle einleitungsstelle : listOfEST) { if (child == einleitungsstelle.getListOfMST()) { ret.add(einleitungsstelle.getListOfMST()); break; } } ret.add(child); break; } // List of UEWs case 5: { List&lt;Einleitungsstelle&gt; listOfEST = ((Wasserrecht) (root)).getListOfEST(); ret.add(listOfEST); // Find the EST containing the List of MSTs the child referes to for (Einleitungsstelle einleitungsstelle : listOfEST) { ArrayListModel&lt;Messstelle&gt; listOfMST = einleitungsstelle.getListOfMST(); if (child == listOfMST) { ret.add(listOfMST); for (Messstelle messstelle : listOfMST) { if (child == messstelle.getListOfUEW()) { ret.add(messstelle.getListOfUEW()); break; } } break; } } break; } // UEW case 6: { List&lt;Einleitungsstelle&gt; listOfEST = ((Wasserrecht) (root)).getListOfEST(); ret.add(listOfEST); // Find the EST containing the List of MSTs the child referes to for (Einleitungsstelle einleitungsstelle : listOfEST) { ArrayListModel&lt;Messstelle&gt; listOfMST = einleitungsstelle.getListOfMST(); if (child == listOfMST) { ret.add(listOfMST); for (Messstelle messstelle : listOfMST) { if (child == messstelle.getListOfUEW()) { ret.add(messstelle.getListOfUEW()); break; } } break; } } ret.add(child); break; } // List of SUEWs case 7: { List&lt;Einleitungsstelle&gt; listOfEST = ((Wasserrecht) (root)).getListOfEST(); ret.add(listOfEST); // Find the EST containing the List of MSTs the child referes to for (Einleitungsstelle einleitungsstelle : listOfEST) { ArrayListModel&lt;Messstelle&gt; listOfMST = einleitungsstelle.getListOfMST(); if (child == listOfMST) { ret.add(listOfMST); for (Messstelle messstelle : listOfMST) { if (child == messstelle.getListOfSUEW()) { ret.add(messstelle.getListOfSUEW()); break; } } break; } } break; } // SUEW case 8: { List&lt;Einleitungsstelle&gt; listOfEST = ((Wasserrecht) (root)).getListOfEST(); ret.add(listOfEST); // Find the EST containing the List of MSTs the child referes to for (Einleitungsstelle einleitungsstelle : listOfEST) { ArrayListModel&lt;Messstelle&gt; listOfMST = einleitungsstelle.getListOfMST(); if (child == listOfMST) { ret.add(listOfMST); for (Messstelle messstelle : listOfMST) { if (child == messstelle.getListOfSUEW()) { ret.add(messstelle.getListOfSUEW()); break; } } break; } } ret.add(child); break; } default: ret = null; } return ret.toArray(); } } ... protected void fireTreeNodesRemoved(Object changed, Object path[], int childIndecies[], Object children[]) { TreeModelEvent event = new TreeModelEvent(this, path, childIndecies, children); synchronized (listeners) { for (Enumeration e = listeners.elements(); e.hasMoreElements();) { TreeModelListener tml = (TreeModelListener) e.nextElement(); tml.treeNodesRemoved(event); } } } ... } </code></pre> http://stackoverflow.com/questions/1817789/java-swing-questions-regarding-gridlayout-and-paintcomponent-methods 1 Java Swing questions regarding GridLayout and paintComponent methods aforloney 2009-11-30T04:03:14Z 2009-12-10T17:25:46Z <p>Within this program, we need to create an 8x8 grid of "LifeCell" widgets. The instructor did not mention that the widgets had to be an object of <code>Shape</code> so I went ahead and used the <code>GridLayout</code> class. The <code>GridLayout</code> class works fine (as well as I know, since there is no visual aid to confirm.) The object of the program is to play the Game of Life where a user can click on one of the LifeCell widgets and toggle between states being 'alive' or 'dead.</p> <p>My question relies heavily on getting the cells to be painted. It could be a problem with my code, but I am not 100% sure. </p> <h3>Program2.java</h3> <pre><code>public class Program2 extends JPanel implements ActionListener { private LifeCell[][] board; // Board of life cells. private JButton next; // Press for next generation. private JFrame frame; // The program frame. public Program2() { // The usual boilerplate constructor that pastes the main // panel into a frame and displays the frame. It should // invoke the "init" method before packing the frame frame = new JFrame("LIFECELL!"); frame.setContentPane(this); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); this.init(); frame.pack(); frame.setVisible(true); } public void init() { // Create the user interface on the main panel. Construct // the LifeCell widgets, add them to the panel, and store // them in the two-dimensional array "board". Create the // "next" button that will show the next generation. LifeCell[][] board = new LifeCell[8][8]; this.setPreferredSize(new Dimension(600, 600)); this.setBackground(Color.white); this.setLayout(new GridLayout(8, 8)); // here is where I initialize the LifeCell widgets for (int u = 0; u &lt; 8; u++) { for (int r = 0; r &lt; 8; r++) { board[u][r] = new LifeCell(board, u, r); this.add(board[u][r]); this.setVisible(true); } } </code></pre> <h3>LifeCell.java</h3> <pre><code> public class LifeCell extends JPanel implements MouseListener { private LifeCell[][] board; // A reference to the board array. private boolean alive; // Stores the state of the cell. private int row, col; // Position of the cell on the board. private int count; // Stores number of living neighbors. public LifeCell(LifeCell[][] b, int r, int c) { // Initialize the life cell as dead. Store the reference // to the board array and the board position passed as // arguments. Initialize the neighbor count to zero. // Register the cell as listener to its own mouse events. this.board = b; this.row = r; this.col = c; this.alive = false; this.count = 0; addMouseListener(this); } </code></pre> <p>and here is the <code>paintComponent</code> method:</p> <pre><code> public void paintComponent(Graphics gr) { // Paint the cell. The cell must be painted differently // when alive than when dead, so the user can clearly see // the state of the cell. Graphics2D g = (Graphics2D) gr; super.paintComponent(gr); g.setPaint(Color.BLUE); } </code></pre> <p>I do not need the exact solution to fix it, but I am at wits end trying to get it to work. </p> <p>Thanks.</p> <p>EDIT:</p> <p>I added more segment of Program2.java class, I can check back tomorrow I am heading off to bed, I appreciate all the help guys.</p> <p>EDIT #2:</p> <p>My real confusion gets to when I populate my frame with an 8x8 <code>GridLayout</code> each individual "cell" for lack of better words is of type <code>LifeCell</code>. How can I paint each <code>LifeCell</code> different colors? If that makes any sense at all to you guys, I can try to revise it as much as I can. And camickr, I will look at that website, thank you.</p> <p>Assignment can be found <a href="http://www.ric.edu/faculty/emcdowell/cs221/program2.txt" rel="nofollow">here</a> to avoid any and all confusion regarding my question and/or the code snippet.</p> http://stackoverflow.com/questions/1882055/java-swing-change-background-color-on-mouse-over 1 Java Swing: change background color on mouse over Miguel Ping 2009-12-10T16:09:23Z 2009-12-10T16:19:41Z <p>Hi,</p> <p>I've implemented a simple mouse listener where the background color changes whenever the mouse enters the component (a JPanel), and it reverts back whenever the mouse leaves. This has some problems:</p> <ul> <li>Sometimes the mouse moves so quick that the <em>mouseExit</em> event is not fired</li> <li>If my component has childs, when the mouse moves to the childs it triggers the <em>mouseExit</em></li> <li>If I move the mouse over to the childs quickly, the <em>mouseEnter</em> event is not fired</li> </ul> <p>I'm guessing this is an easy one for Swing veterans. Any suggestions on how to fix this? I'd love not to use timers and such...</p> http://stackoverflow.com/questions/1881924/suppressing-swing-visibility 0 Suppressing Swing Visibility mtc06 2009-12-10T15:51:08Z 2009-12-10T16:05:56Z <p>Hello,</p> <p>I've been given a bunch of messy code and a short time limit (no surprises there) to write some tests for it. I have written tests! They are good tests.</p> <p>Unfortunately, instantiating some of the project's components causes Swing GUI elements to be constructed and set visible too. I don't want this to happen for obvious reasons, so I was wondering if there was a way to suppress the displaying of any Swing-based stuff before I instantiate these objects. Essentially, some kind of master visibility setting, that says "I don't care if anyone calls setVisible on a Swing component, don't show anything."</p> <p>I don't think there is, and I don't think there's a solution other than modifying the project code. Just thought I'd ask.</p> http://stackoverflow.com/questions/1807177/require-help-to-implement-drag-from-java-application-and-drop-to-native-file-syst 2 Require help to implement drag from Java Application and drop to Native File System Ashish Pancholi 2009-11-27T06:59:55Z 2009-12-10T15:18:48Z <p>I have a Java Swing application which shows a list of the files/Folders that have been uploaded to the server. I have a requirement to download selected file(s)/folder(s) to native file system using Drag and Drop . I have searched links but almost every link describes the Drag and Drop within a Java Swing application. My requirement is to Drag the file from the Java Swing application and Drop it to the native file system. </p> <p>I need help to know how I can get the location where user has dropped the selected file(s)/folder(s) to the native file system.</p> <p>For example, let's suppose the user has dragged the file and dropped directly to the <code>C:\Back_Up</code> folder <em>by restore the window of Java Application</em>. How can I identify the location that user has dropped the file to, i.e. <code>C:\Back_Up</code>?</p> http://stackoverflow.com/questions/1878692/jdialog-with-minimize-button 0 JDialog with minimize button Harish 2009-12-10T04:47:42Z 2009-12-10T10:57:48Z <p>Is it possible to have a minimize and maximize button for a non-modal(modal=false) JDialog.I know JFrame is the ideal solution for this but this change has to be made in an existing code and its little difficult to change from JDialog to JFrame.</p> http://stackoverflow.com/questions/1879214/dragging-a-circle-on-a-jframe 0 Dragging A Circle on a JFrame Madison 2009-12-10T07:26:56Z 2009-12-10T08:35:06Z <p>I am trying to have a circle appear on the screen, then when the user clicks INSIDE the circle, enable the ability for them to drag the circle where the mouse goes while it is being pressed.</p> <p>This is the code i have so far, the drag works, but it is allowing the user to drag without them pressing the inside of the circle, just when anywhere on the screen is pressed.</p> <p>I hope i am not too confusing</p> <p>here's the code i have, please if someone could just tell me the code that needs to be corrected, it will save me anymore hours.</p> <pre><code>import javax.swing.*; import java.awt.*; import java.awt.event.*; public class DragCircle extends JFrame { private static final long serialVersionUID = 1L; public static int size = 400; public static int r = 10; private int x; private int y; private int cX; private int cY; private int dX; private int dY; private MouseHandler mh; boolean isCircleClicked = false; public static void main(String[] args) { DragCircle c1 = new DragCircle(); c1.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); } public DragCircle() { super("Drag circle"); cX = r + 100; cY = r + 100; mh = new MouseHandler(); addMouseListener(mh); addMouseMotionListener(mh); setSize(size, size); setVisible(true); } public void paint(Graphics g) { super.paint(g); g.setColor(Color.RED); g.fillOval(cX, cY, r * 2, r * 2); } private class MouseHandler extends MouseAdapter implements MouseMotionListener { public void mousePressed(MouseEvent me) { if ((cX - me.getX()) * (cX - me.getX()) + (cY - me.getY()) * (cY - me.getY()) &lt; r * r) { isCircleClicked = true; } } public void mouseDragged(MouseEvent me) { if (isCircleClicked) { x = me.getX() - dX; y = me.getY() - dY; cX = x + r; cY = y + r; repaint(); } } public void mouseReleased(MouseEvent e) { isCircleClicked = false; } } } </code></pre> http://stackoverflow.com/questions/1878127/how-to-resolve-swing-listener-memory-leaks 2 How to resolve swing listener memory leaks? Clinton 2009-12-10T01:31:41Z 2009-12-10T01:46:53Z <p><strong>Background</strong></p> <p>So I read that often memory leaks within Swing applications originate from the use of various listeners (mouse, key, focus, etc). Essentially, you register an object as a listener and forget to deregister the object, the notifier ends up holding onto the reference of the object, leaking a bit of memory.</p> <p>I knew our application wasn't deregistering listeners and did a bit of research on potential solutions:</p> <p>I found one approach in dealing with the problem was the use of a WeakReference, full details on the approach with swing listeners can be found <a href="http://www.javalobby.org/java/forums/t19468.html" rel="nofollow">here</a>.</p> <p>I then became curious about how the <a href="http://netbeans.org/" rel="nofollow">NetBeans</a> form editor was generating code to clean up after listeners added to the form and discovered that NetBeans was registering listeners via a wrapping object i.e.</p> <pre><code>argTypeComboBox.addItemListener(new java.awt.event.ItemListener() { public void itemStateChanged(java.awt.event.ItemEvent evt) { argTypeComboBoxItemStateChanged(evt); } }); </code></pre> <p>But the generated code did not seem to ever clean up by calling removeItemListener.</p> <p><strong>Questions</strong></p> <p>Is the wrapping object acting like a weak reference? To me it looks like it could leak a tiny amount of memory (the size of the wrapping object)?</p> <p>Do you have alternative approaches when dealing with listeners to ensure that they are always garbage collected when you are finished with them?</p> http://stackoverflow.com/questions/1870677/setlookandfeel-and-nullpointerexception 2 setLookAndFeel and NullPointerException konr 2009-12-08T23:43:18Z 2009-12-09T12:55:43Z <p>Hi!</p> <p>Has anyone ever tried to change swing's look and feel? This code, taken from an example, simply yields a null pointer exception, and I wonder what might be wrong: </p> <pre>(javax.swing.UIManager/setLookAndFeel (javax.swing.UIManager/getSystemLookAndFeelClassName))</pre> <p>Thanks!</p> http://stackoverflow.com/questions/1872564/how-can-i-excute-notepad-by-java-code 1 How can I excute Notepad by Java code Chan Pye 2009-12-09T09:14:58Z 2009-12-09T09:54:53Z <p>I want to excute Notepad program in MS Windows by Java code to open my text file.</p> <p>Pls help me to do that.</p> http://stackoverflow.com/questions/1864765/when-creating-a-custom-toolkit-why-does-createframe-fail-on-osx 0 When creating a custom Toolkit, why does createFrame fail on OSX? Clinton 2009-12-08T05:15:14Z 2009-12-09T01:43:15Z <p>We are trying to extend the <a href="http://www.uispec4j.org/" rel="nofollow">UISpec4j</a> testing framework to display the user interface when running tests. So we have a custom toolkit that wraps around the native toolkit for the relevant platform. We managed to get everything working well on windows XP, however when testing our changes on OSX, our extension of createFrame appears to behave oddly:</p> <pre><code> public FramePeer createFrame(Frame target) { FramePeer resultc = new UISpecFramePeer(target); //super.createFrame(target); return resultc; } </code></pre> <p>Essentially with the above, we want to create a UISpecFramePeer as an interception class... So that UISpec4j can interrogate what is happening within the UI. But in our changes, we also want to display the UI. So we attempt this by creating a frame using the native toolkit and wrapping it in the UISpecFramePeer (not shown in the code above).</p> <p>When we run the above code, the tests run (as we expect) but obviously nothing is displayed. However, when we include super.createFrame(target). We get the following exception:</p> <pre><code>SEVERE: Application class org.openshapa.OpenSHAPA failed to launch java.lang.ClassCastException: org.uispec4j.interception.toolkit.UISpecFramePeer at apple.awt.CWindow$8.convertJComponentToTarget(CWindow.java:236) at apple.awt.CWindow$8.convertJComponentToTarget(CWindow.java:233) at apple.awt.ClientPropertyApplicator.attachAndApplyClientProperties(ClientPropertyApplicator.java:24) at apple.awt.CWindow$1.propertyChange(CWindow.java:190) at java.beans.PropertyChangeSupport.firePropertyChange(PropertyChangeSupport.java:333) at java.beans.PropertyChangeSupport.firePropertyChange(PropertyChangeSupport.java:341) at java.beans.PropertyChangeSupport.firePropertyChange(PropertyChangeSupport.java:270) at java.awt.Component.firePropertyChange(Component.java:7277) at javax.swing.JComponent.addNotify(JComponent.java:4479) at javax.swing.JRootPane.addNotify(JRootPane.java:680) at java.awt.Container.addNotify(Container.java:2544) at java.awt.Window.addNotify(Window.java:467) at java.awt.Frame.addNotify(Frame.java:501) at java.awt.Window.pack(Window.java:485) at org.jdesktop.application.SingleFrameApplication.initRootPaneContainer(SingleFrameApplication.java:216) at org.jdesktop.application.SingleFrameApplication.show(SingleFrameApplication.java:463) at org.openshapa.OpenSHAPA.startup(OpenSHAPA.java:444) at org.jdesktop.application.Application$1.run(Application.java:171) at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209) at java.awt.EventQueue.dispatchEvent(EventQueue.java:461) at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:269) at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:190) at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:184) at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:176) at java.awt.EventDispatchThread.run(EventDispatchThread.java:110) Exception in thread "AWT-EventQueue-2" java.lang.Error: Application class org.openshapa.OpenSHAPA failed to launch at org.jdesktop.application.Application$1.run(Application.java:177) at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209) at java.awt.EventQueue.dispatchEvent(EventQueue.java:461) at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:269) at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:190) at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:184) at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:176) at java.awt.EventDispatchThread.run(EventDispatchThread.java:110) Caused by: java.lang.ClassCastException: org.uispec4j.interception.toolkit.UISpecFramePeer at apple.awt.CWindow$8.convertJComponentToTarget(CWindow.java:236) at apple.awt.CWindow$8.convertJComponentToTarget(CWindow.java:233) at apple.awt.ClientPropertyApplicator.attachAndApplyClientProperties(ClientPropertyApplicator.java:24) at apple.awt.CWindow$1.propertyChange(CWindow.java:190) at java.beans.PropertyChangeSupport.firePropertyChange(PropertyChangeSupport.java:333) at java.beans.PropertyChangeSupport.firePropertyChange(PropertyChangeSupport.java:341) at java.beans.PropertyChangeSupport.firePropertyChange(PropertyChangeSupport.java:270) at java.awt.Component.firePropertyChange(Component.java:7277) at javax.swing.JComponent.addNotify(JComponent.java:4479) at javax.swing.JRootPane.addNotify(JRootPane.java:680) at java.awt.Container.addNotify(Container.java:2544) at java.awt.Window.addNotify(Window.java:467) at java.awt.Frame.addNotify(Frame.java:501) at java.awt.Window.pack(Window.java:485) at org.jdesktop.application.SingleFrameApplication.initRootPaneContainer(SingleFrameApplication.java:216) at org.jdesktop.application.SingleFrameApplication.show(SingleFrameApplication.java:463) at org.openshapa.OpenSHAPA.startup(OpenSHAPA.java:444) at org.jdesktop.application.Application$1.run(Application.java:171) ... 7 more </code></pre> <p>Why would simply using the native toolkit to create a frame (but not return it) create an exception, when it would otherwise behaves as normal when the super.createFrame is commented?</p> http://stackoverflow.com/questions/1870630/java-jtextarea-adding-a-newline 0 Java JTextArea - Adding a newline Pandemic21 2009-12-08T23:31:11Z 2009-12-09T01:31:12Z <p>So I'm stumped. I, for some reason, seem to remember that Java does weird things when you try to add new lines to stuff... so I think that may be the problem here. </p> <p>This code is not working how you'd expect it to:</p> <pre><code>public void displayText(KeyEvent k){ txt = inputArea.getText(); outputArea.setText(txt); if(k.getKeyCode() == 10) //return outputArea.setText(txt + "\n"); } </code></pre> <p>You can double-check to see if I have the getKeyCode() set to the right number, but I'm almost positive that that part is correct.</p> <p>EDIT: Thanks; I forgot about those constants...</p> <p>And unfortunately, it works - but not really. <code>if(k.getKeyCode() == k.VK_ENTER)</code> returns true (this is a fact), but "\n" does not create the newline. </p> <p>EDIT (take two): Full code:</p> <pre><code>import java.awt.*; import java.awt.event.*; import javax.swing.*; public class GUI extends JFrame implements KeyListener{ private JFrame frame; private JTextField inputArea; private JTextArea outputArea; private String txt; public GUI(){ frame = new JFrame("My Frame"); inputArea = new JTextField(1); outputArea = new JTextArea(5,10); inputArea.addKeyListener(this); outputArea.setLineWrap(true); txt = ""; frame.setLayout(new GridLayout(2,10)); frame.add(inputArea); frame.add(outputArea); frame.setVisible(true); frame.pack(); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); } public void keyPressed(KeyEvent k){} public void keyTyped(KeyEvent k){} public void keyReleased(KeyEvent k) { displayText(k); } public void displayText(KeyEvent k){ txt = inputArea.getText(); outputArea.setText(txt); if(k.getKeyCode() == KeyEvent.VK_ENTER) outputArea.append("\n"); //outputArea.setText(txt + "\n"); } } </code></pre> <p>Then another class with the main:</p> <pre><code>public class Driver { public static void main(String[] args){ GUI gui = new GUI(); } } </code></pre> <p>EDIT: Basically, I'm trying to emulate Google Wave's ability to send text before the user presses Enter.</p> http://stackoverflow.com/questions/1869509/preventing-the-selection-of-next-cell-in-jtable-while-using-autocomplete 0 Preventing the selection of next cell in JTable while using AutoComplete Azlam 2009-12-08T20:09:05Z 2009-12-08T20:20:03Z <p>Hi,</p> <p>I am using GlazedList's autoComplete support in a JTable using the below code</p> <pre><code>itemColumn.setCellEditor(AutoCompleteSupport.createTableCellEditor(itemList)); </code></pre> <p>How do I prevent the selection or editing the next cell, if the user hasn't selected any value in the CellEditor.</p> http://stackoverflow.com/questions/1863727/creating-a-squircle 2 Creating a Squircle Will 2009-12-07T23:58:01Z 2009-12-08T13:55:44Z <p>Hello there. I'm a first year programmer. I'm trying to create a squircle. (square with round corners). </p> <p>So far i have managed to get. I have been given the constants of a,b and r. If anyone could help i would be really thankful. I'm a total noob to this. So be nice :)</p> <pre><code>package squircle; import java.awt.*; import javax.swing.*; import java.lang.Math; public class Main extends javax.swing.JApplet { public void paint(Graphics g){ // (x-a)^4 + (y-b)^4 = r^4 // y = quadroot( r^4 - (x-a)^4 + b) // x values must fall within a-r &lt; x &lt; a+r int[] xPoints = new int[200]; int[] yPoints = new int[200]; int[] mypoints = new int[200]; for(int c = 0; c &lt;200; c++){ int a = 100; int r = 100; int b = 100; double x = c ; double temp = (r*r*r*r); double temp2 = x-a; double temp3 = ((temp2)*(temp2)*(temp2)*(temp2)); double temp6 = Math.sqrt(temp-temp3); double y = (Math.sqrt(temp6) + b ); double z = (y*-1)+300; mypoints[c]=(int)z; // if (c&gt;100){ // y = y*1; // } // else if(c&lt;100){ // y = y*1; // } xPoints[c]=(int)x; yPoints[c]=(int)y; // change the equation to find x co-ordinates // change it to find y co-ordinates. // r is the minor radius // (a,b) is the location of the centre // a = 100 // b = 100 // r = 100 // x value must fall within 0 or 200 } g.drawPolygon(xPoints, yPoints, xPoints.length); g.drawPolygon(xPoints, (mypoints), xPoints.length); } } </code></pre> http://stackoverflow.com/questions/1865990/swing-application-framework-for-multilanguage-application 1 Swing application framework for multilanguage application Fortega 2009-12-08T10:11:20Z 2009-12-08T10:38:17Z <p>Can the swing application framework be used to implement multilanguage swing applications? If so, how should it be done? Should I use multiple .properties files, one for each language? How can I let the system know which properties file to use then? Does anybody know a good tutorial for this?</p> http://stackoverflow.com/questions/1862776/capturing-the-close-tab-event-of-a-jtabbedpanel-in-java-swing 0 Capturing the close tab event of a JTabbedPanel in Java Swing Sudar 2009-12-07T20:45:43Z 2009-12-07T23:44:03Z <p>Is it possible to capture the close tab event for a JTabbedPanel in Java Swing.</p> <p>I want to check for some conditions and if they are not met, then I have to prevent the user from closing it.</p> <p>Thanks!</p> <p>Update: I created a custom event, based on this <a href="http://www.exampledepot.com/egs/java.util/CustEvent.html" rel="nofollow">code</a> and it solved my problem.</p> http://stackoverflow.com/questions/1862245/threading-issues-with-java-swing-and-web-start 0 threading issues with java swing and web start Casey 2009-12-07T19:17:45Z 2009-12-07T22:55:40Z <p>EDIT: After fixing a few issues, the bigger issue that I am having is being caused by Apache POI which I am using. I am working on figuring that out now. Apparently it is being restricted by the Sandbox.</p> <p>I'm very new to Swing, and created a small Swing app that I now need to have run via web start. I'm trying to use the FileOpenService and update a Text display. I think I am running into threading issues, because the FileOpenService dialog never appears, and my text display is not getting updated. </p> <p>I can't really find any examples where they are doing anything different than I am right now.</p> <p>Ideas?</p> <p>Thanks!</p> <p>Edit: I now have the FileOpenService dialog appearing. I changed my main to this:</p> <pre><code>public static void main(String[] args) throws Exception { javax.swing.SwingUtilities.invokeLater(new Runnable() { public void run() { new MainFrame(); } }); } </code></pre> <p>However, I still can't get my display to update. This is where I am doing the update:</p> <pre><code> Runnable r = new Runnable() { public void run() { for (final String s : Logger.getMessages()) append(s + "\n"); } }; try { if (SwingUtilities.isEventDispatchThread()) r.run(); else SwingUtilities.invokeAndWait(r); } </code></pre> <p>and my append method:</p> <pre><code>private void append(Color c, String s) {// throws Exception { StyleContext sc = StyleContext.getDefaultStyleContext(); AttributeSet aset = sc.addAttribute(SimpleAttributeSet.EMPTY, StyleConstants.Foreground, c); int len = _textPaneLog.getDocument().getLength(); try { _textPaneLog.getDocument().insertString(len, s, aset); } catch (BadLocationException e) { e.printStackTrace(); } } </code></pre> http://stackoverflow.com/questions/1861921/auto-complete-textbox-in-java-swing 1 Auto complete textbox in Java Swing Sudar 2009-12-07T18:25:17Z 2009-12-07T21:59:05Z <p>Is there any good ready made Java Swing component that can be used to implement auto complete textbox?</p> http://stackoverflow.com/questions/1862511/adding-a-clickable-action-firing-jmenuitem-directly-to-a-jmenubar 0 Adding a clickable, action-firing JMenuItem directly to a JMenuBar? thedude19 2009-12-07T20:02:05Z 2009-12-07T21:00:06Z <p>Is there a way to add a JMenuItem (or similar button-type object) to a JMenuBar?</p> <p>Adding a JMenuItem doesn't play well with the layout of a JMenuBar, and buttons look too button-like.</p> <p>Should we be tweaking the button to look like a JMenuItem or tweaking the JMenuBar to display the JMenuItem correctly? Or something else altogether?</p> http://stackoverflow.com/questions/1857695/java-architecture-question-about-conventions 1 Java Architecture - Question about conventions macneil 2009-12-07T03:48:40Z 2009-12-07T20:18:52Z <p>I am making a user interface which shows graphs and manipulates graphs. The class extends JFrame implements ActionListener. The ActionListener then calls different classes to manipulate graphs depending on the action. This worked while the class had few ActionListeners; however, now the class is becoming unmanageable.</p> <p>I know that in the interest of encapsulation, it would be best to have the ActionListener within the user interface class because it needs to access non-static components of the interface. However, it seems like there is a conflict between encapsulation and readability.</p> <p>What I am proposing is breaking the class into one class for the interface and a second for the ActionListener and accessing the interface components statically. What I want to know is does this follow basic design conventions? And, if this is an acceptable approach would you place the main class in the user-interface class or the ActionListener class?</p> http://stackoverflow.com/questions/1861123/delay-between-drawing-of-two-icons-in-java 0 Delay between drawing of two icons in Java tsv 2009-12-07T16:30:44Z 2009-12-07T18:04:38Z <p>I have a piece of code in Java which draws 2 icons to the screen. I want to enforce a delay between them, and am unsure of the best way.</p> <p>At the moment I have;</p> <pre><code>cell.setIcon(image1); Thread.sleep(500); // Ignored try() for brevity cell2.setIcon(image2); </code></pre> <p>But this seems to cause the delay before <em>either</em> are drawn. Why is this, and how can I fix it?</p> http://stackoverflow.com/questions/1859686/getting-raw-text-from-jtextpane 0 Getting raw text from JTextPane romaintaz 2009-12-07T12:27:09Z 2009-12-07T16:59:24Z <p>In my application, I use a <code>JTextPane</code> to display some log information. As I want to hightlight some specific lines in this text (for example the error messages), I set the <code>contentType</code> as "<code>text/html</code>". This way, I can format my text.</p> <p>Now, I create a JButton that copies the content of this <code>JTextPane</code> into the clipboard. That part is easy, but my problem is that when I call <code>myTextPane.getText()</code>, I get the HTML code, such as :</p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;/head&gt; &lt;body&gt; blabla&lt;br&gt; &lt;font color="#FFCC66"&gt;&lt;b&gt;foobar&lt;/b&gt;&lt;/font&gt;&lt;br&gt; blabla &lt;/body&gt; &lt;/html&gt; </code></pre> <p>instead of getting only the raw content:</p> <pre><code>blabla foobar blabla </code></pre> <p>Is there a way to get only the content of my <code>JTextPane</code> in plain text? Or do I need to transform the HTML into raw text by myself?</p> http://stackoverflow.com/questions/1858564/only-jlabel-not-showing-up 0 only JLabel not showing up... steeldusk 2009-12-07T08:13:26Z 2009-12-07T15:18:06Z <p>I am writting a simple application which has a button that opens a new window then display a simple GUI/Text to acccept inputs from a user. but for some reason, I can get JLabel to be displayed on the new window. The application has following structure:</p> <p>+mainFrame - JFrame <br> +newFrame - JFrame <br> -+newPanel - JPanel <br> ----title - JLabel <br> ----submitButton -JButton<br> ...</p> <p>Buttons and textfields all display fine, but Jlabels won't show up at all. I have tried using different layouts and all but I still can't get it shown. JLabels inside mainFrame tree, works fine.. so it seems like the problem is due to newFrame declaration or something, but then button should not be displayed either. Well, I am kindda lost and can someone suggest me what I should check?</p> <p>Thanks : )</p>