active questions tagged awt - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T12:55:44Zhttp://stackoverflow.com/feeds/tag/awthttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1812012/java-swing-how-to-wait-for-other-jframes1Java swing. How to wait for other Jframesunknown (google)2009-11-28T08:48:58Z2009-11-28T10:42:13Z
<p>In a JFrame, when I click on 'login', I pop up another Jframe which is the login window.</p>
<p>How do I make my main Jframe wait for my login Jframe to exit, before doing anything else?</p>
http://stackoverflow.com/questions/1811241/cannot-display-image-on-jpanel1Cannot display image on Jpanelunknown (google)2009-11-28T01:26:05Z2009-11-28T05:23:56Z
<p>I'm using the Netbeans GUI builder, but it's a little confusing now. How can I add an image to a panel? I think i'm doing it correct, but it's not showing up. I think it should be in the init() method, but netbeans does not allow me to change that part of the code. This is the code I added for the image:</p>
<pre><code> //these four lines I added to add the image
imageIcon = new ImageIcon("login_icon.png");
image = new JLabel(imageIcon);
image.setToolTipText("SGS Security");
topPanel.add(image);
</code></pre>
<p>My Class starts here:</p>
<pre><code>/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
/*
* Login.java
*
* Created on Oct 27, 2009, 8:34:15 PM
*/
package sgs;
import javax.swing.ImageIcon;
import javax.swing.JLabel;
public class Login extends javax.swing.JFrame {
JLabel image;
ImageIcon imageIcon;
/** Creates new form Login */
public Login() {
initComponents();
//these four lines I added to add the image
imageIcon = new ImageIcon("login_icon.png");
image = new JLabel(imageIcon);
image.setToolTipText("SGS Security");
topPanel.add(image);
}
/** 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")
// <editor-fold defaultstate="collapsed" desc="Generated Code">
private void initComponents() {
topPanel = new javax.swing.JPanel();
userLabel = new javax.swing.JLabel();
passwordLabel = new javax.swing.JLabel();
connectLabel = new javax.swing.JLabel();
forgotPassLabel = new javax.swing.JLabel();
forgotPassCheckBox = new javax.swing.JCheckBox();
cancelButton = new javax.swing.JButton();
okButton = new javax.swing.JButton();
passwordTextField = new javax.swing.JTextField();
userTextField = new javax.swing.JTextField();
setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
setBackground(new java.awt.Color(216, 156, 60));
topPanel.setBackground(new java.awt.Color(28, 90, 198));
javax.swing.GroupLayout topPanelLayout = new javax.swing.GroupLayout(topPanel);
topPanel.setLayout(topPanelLayout);
topPanelLayout.setHorizontalGroup(
topPanelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGap(0, 406, Short.MAX_VALUE)
);
topPanelLayout.setVerticalGroup(
topPanelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGap(0, 71, Short.MAX_VALUE)
);
userLabel.setText("User name:");
passwordLabel.setText("Password:");
connectLabel.setText("Connect to SGS");
forgotPassLabel.setText("Forgot password");
forgotPassCheckBox.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
forgotPassCheckBoxActionPerformed(evt);
}
});
cancelButton.setText("Cancel");
okButton.setText("OK");
okButton.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
okButtonActionPerformed(evt);
}
});
userTextField.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
userTextFieldActionPerformed(evt);
}
});
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
getContentPane().setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addContainerGap()
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING)
.addComponent(connectLabel)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(passwordLabel)
.addComponent(userLabel)))
.addGap(30, 30, 30)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
.addComponent(userTextField)
.addComponent(passwordTextField)
.addGroup(layout.createSequentialGroup()
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(forgotPassCheckBox)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(forgotPassLabel))
.addGroup(layout.createSequentialGroup()
.addGap(32, 32, 32)
.addComponent(okButton, javax.swing.GroupLayout.PREFERRED_SIZE, 101, javax.swing.GroupLayout.PREFERRED_SIZE)
.addGap(28, 28, 28)
.addComponent(cancelButton, javax.swing.GroupLayout.PREFERRED_SIZE, 101, javax.swing.GroupLayout.PREFERRED_SIZE)))
.addContainerGap())
.addComponent(topPanel, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addComponent(topPanel, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
.addGap(27, 27, 27)
.addComponent(connectLabel)
.addGap(34, 34, 34)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(userLabel)
.addComponent(userTextField, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(passwordLabel)
.addComponent(passwordTextField, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING)
.addComponent(forgotPassLabel)
.addComponent(forgotPassCheckBox))
.addGap(23, 23, 23)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(okButton, javax.swing.GroupLayout.PREFERRED_SIZE, 31, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(cancelButton, javax.swing.GroupLayout.DEFAULT_SIZE, 31, Short.MAX_VALUE))
.addContainerGap())
);
pack();
}// </editor-fold>
private void forgotPassCheckBoxActionPerformed(java.awt.event.ActionEvent evt) {
// TODO add your handling code here:
}
private void userTextFieldActionPerformed(java.awt.event.ActionEvent evt) {
// TODO add your handling code here:
}
private void okButtonActionPerformed(java.awt.event.ActionEvent evt) {
// TODO add your handling code here:
}
/**
* @param args the command line arguments
*/
public static void main(String args[]) {
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
new Login().setVisible(true);
}
});
}
// Variables declaration - do not modify
private javax.swing.JButton cancelButton;
private javax.swing.JLabel connectLabel;
private javax.swing.JCheckBox forgotPassCheckBox;
private javax.swing.JLabel forgotPassLabel;
private javax.swing.JButton okButton;
private javax.swing.JLabel passwordLabel;
private javax.swing.JTextField passwordTextField;
private javax.swing.JPanel topPanel;
private javax.swing.JLabel userLabel;
private javax.swing.JTextField userTextField;
// End of variables declaration
}
</code></pre>
http://stackoverflow.com/questions/184491/java-applet-awt-refresh-problem-mac-os-x-10-40Java Applet, AWT Refresh problem Mac OS X 10.4Jason Kealey2008-10-08T19:37:14Z2009-11-27T20:46:06Z
<p>We have a Java Applet built using AWT. This applet lets you select pictures from your hard drive and upload them to a server. The applet includes a scrollable list of pictures, which works fine in Windows, Linux and Mac OS X 10.5. We launch this applet via Java Web Start or within a web page. </p>
<p>Our applet does not behave properly in Mac OS X 10.4, regardless of the version of Java (1.4 or 1.5). You can find a screenshot of the incorrect behaviour, when scrolling, here:</p>
<p><a href="http://www.lavablast.com/tmp/ui_error.png" rel="nofollow">http://www.lavablast.com/tmp/ui_error.png</a></p>
<p>Simply put, sometimes when scrolling the pictures end up overlapping the header or footer of the application. This behaviour does not occur on other platforms. On Mac OS X 10.4, it shows the pictures in the incorrect location when scrolling, which would not be so bad if it refreshed the screen after painting the image at that location. However, it does not appear that the application knows it painted it incorrectly and thus does not refresh.</p>
<p>If the window is minimized, resized or even moved, the application is refreshed and the incorrectly positioned elements vanish and the application resumes normally. I spent quite some time trying to force a refresh of the background image unsuccessfully. (the repaint the image directly, repaint all children of a few panels, etc. ) Thus, I am looking for any tips that would help me resolve this problem under Mac OS X 10.4 or, in the worst case, simply simulate a full applet refresh. </p>
<p>Until recently, everything was compatible with Java 1.1 but this has changed in a few locations which now require 1.4. I don't feel these changes created the issue, I am just providing this as extra information. If you are interested in implementation details of the scroll panel, I will investigate, but I am assuming this is a common platform bug for which workarounds must be known.</p>
<p>To replicate the problem, open the following Java Web Start application:
<a href="http://www.lavablast.com/tmp/opal-webstart.php.jnlp" rel="nofollow">http://www.lavablast.com/tmp/opal-webstart.php.jnlp</a></p>
<p>Select a folder containing lots of images and play with the scrollbar. At some point (fairly quickly), you should get the refresh problem. </p>
<p>Edit: I followed the first suggestion here and replaced all my controls that feature background images with a Swing equivalent and the issue is still there. (Plus, there are numerous other fixes I would need to do to do a complete change). Any other ideas? A simple one line of code that forces a full refresh would be great :)</p>
<p>Edit2: The main thread creates the panels and launches X threads. Using an observer/notifier pattern, the threads complete and notify the main control, which adds a panel to the page. This is done via an EventQueue.invokeLater which, unless I am mistaken, should run on the right thread. The issue is at its most severe when scrolling even if no extra threads are running (as during the loading). </p>
http://stackoverflow.com/questions/1801781/java-2d-graphics-question0Java 2D Graphics QuestionPherricOxide2009-11-26T05:55:08Z2009-11-26T09:07:59Z
<p>I'm attempting to make a Java Applet which will allow me to draw a graph data structure in a canvas by clicking where I want to create nodes, and clicking the nodes to connect them. The problem is I cannot get the paint() method to behave correctly. I add new nodes to the graph (and squares on the canvas) inside the mousePressed(MouseEvent e) method using,</p>
<p>Graphics g = this.getGraphics();</p>
<p>g.setColor(Color.blue);</p>
<p>g.fillRect(e.getX(), e.gety(), 40, 40);</p>
<p>Everything works fine, until I resize the window, and then all the filled rectangles vanish. I overrided the paint method to just an empty method, but the same thing still happens. I can't add the fillRect commands inside paint() because I don't know what rectangles exist until the user interacts with it using the mouse.</p>
<p>How can I use g.fillRect inside the mouse listener methods and make them stick?</p>
http://stackoverflow.com/questions/1787045/why-does-the-java-awt-filedialog-seticonimage-method-fail-to-set-the-icon0Why does the Java AWT FileDialog setIconImage method fail to set the icon?Adam2009-11-24T00:24:34Z2009-11-24T20:36:12Z
<p>I am attempting to use a Java AWT FileDialog, but I want to replace the default Java Dialog icon with something else. In short, the code looks something like this:</p>
<pre><code>Frame frame = new Frame();
Image image = ImageIO.read(new URL("file:/path/to/myfile.jpg"));
FileDialog fileDialog = new FileDialog(frame, "Save As", FileDialog.SAVE);
fileDialog.setIconImage(image);
fileDialog.setDirectory("/path/to/directory");
fileDialog.setFile("filename.txt");
fileDialog.setVisible(true);
</code></pre>
<p>I've tried several variation, including a different method of reading the image, packing the FileDialog, packing the Frame, setting the icon of the Frame, etc. However, regardless of what I try, the FileDialog icon never changes. When I set the icon of the Frame and set the Frame to visible, the frame displayed the correct icon, but it was still a no go for the FileDialog.</p>
<p>Any Thoughts?</p>
http://stackoverflow.com/questions/1779708/java-awt-fitting-text-in-a-box1Java (AWT): fitting text in a box Folkert van Heusden2009-11-22T19:30:23Z2009-11-22T20:54:01Z
<p>I have an application that extends a Frame. Then, it'll display a few lines of text using:</p>
<pre><code>Font f = new Font("Arial", Font.PLAIN, 10);
g.setFont(f);
g.drawString("Test|great Yes ^.", x, y + 10);
</code></pre>
<p>Now what happens is that the text doesn't fit in the box around. E.g. I'm expecting the text to fit in [x,y]-[x+width, y+10] (don't care about the width) but it falls somewhat below the y+10 line. Now for most characters ('T', 'e', etc.) this fits but '|' and 'g' don't! They go below the y+10-line. It seems you can't use: draw at y + characterHeight. But what does work?</p>
<p>To see what I mean, here's some sample code:</p>
<pre><code>import java.awt.*;
public class test extends Frame
{
public test()
{
/* retrieve max window size */
GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
GraphicsDevice[] gs = ge.getScreenDevices();
GraphicsConfiguration [] gc = gs[0].getConfigurations();
Rectangle r = gc[0].getBounds();
setSize(r.width, r.height);
setVisible(true);
}
public void paint(Graphics g)
{
final int windowWidth = getSize().width;
final int windowHeight = getSize().height;
g.setColor(Color.BLUE);
g.fillRect(0, 0, windowWidth, windowHeight);
g.setColor(Color.WHITE);
g.fillRect(0, 100, windowWidth, 110);
int textHeight = 100;
Font f = new Font("Arial", Font.PLAIN, textHeight);
g.setFont(f);
g.setColor(Color.BLACK);
g.drawString("Test|great Yes ^.", 10, 100 + textHeight);
}
public void guiLoop()
{
for(;;) { try { Thread.sleep(1000); } catch(Exception e) { } }
}
public static void main(String [] args)
{
new test().guiLoop();
}
}
</code></pre>
<p>I tried the following code as well:</p>
<pre><code>public void paint(Graphics g)
{
final int windowWidth = getSize().width;
final int windowHeight = getSize().height;
g.setColor(Color.BLUE);
g.fillRect(0, 0, windowWidth, windowHeight);
g.setColor(Color.WHITE);
g.fillRect(0, 100, windowWidth, 110);
int textHeight = 100;
String str = "Test|great Yes ^.";
Font f = new Font("Arial", Font.PLAIN, textHeight);
Rectangle2D boundingRectangle = f.getStringBounds(str, 0, str.length(), new FontRenderContext(null, false, false));
f = f.deriveFont((float)(textHeight * (textHeight / boundingRectangle.getHeight())));
boundingRectangle = f.getStringBounds(str, 0, str.length(), new FontRenderContext(null, false, false));
g.drawString(str, 10, 100 + (int)boundingRectangle.getHeight());
g.setFont(f);
g.setColor(Color.BLACK);
g.drawString(str, 10, 100 + textHeight);
}
</code></pre>
<p>This is somewhat better: the text is smaller so it <em>might</em> fit, but there's still the problem that the y-position is incorrect.</p>
<p>All help is appreciated!</p>
http://stackoverflow.com/questions/1775421/enabling-disabling-an-awt-button1Enabling/disabling an AWT ButtonSebastien2009-11-21T12:58:08Z2009-11-21T19:58:01Z
<p>Dear All,
I wrote the following piece of code, which is supposed to return a panel with one checkbox and one button. The idea is that the button should be enabled only if the checkbox is checked.
It works, meaning that if the checkbox is not checked, and I try to push the button, nothing happens. However, the visual appearance of the button is wrong, it appears as disabled when it should appear as enabled, and vice-versa.
Any idea what's wrong with my code ?
Thanks a lot in advance</p>
<pre><code>public Panel createCalibrationPanel(final ImagePlus imp) {
final Panel panel = new Panel();
panel.setLayout(new BoxLayout(panel, BoxLayout.LINE_AXIS));
panel.add(Box.createHorizontalStrut(20));
final Checkbox checkbox = new Checkbox(
"Use image spatial calibration for q scale", true);
final Button button = new Button("Set scale");
useCalibration = checkbox.getState();
button.setEnabled(checkbox.getState());
panel.add(checkbox);
panel.add(button);
checkbox.addItemListener(new ItemListener() {
public void itemStateChanged(final ItemEvent e) {
boolean state = checkbox.getState();
setUseCalibration(state);
button.setEnabled(state);
}
});
button.addActionListener(new ActionListener() {
public void actionPerformed(final ActionEvent e) {
imp.unlock();
IJ.run(imp, "Set Scale...", "");
imp.lock();
}
});
return panel;
}
</code></pre>
http://stackoverflow.com/questions/1369313/convert-a-list-java-awt-geom-point2d-to-a-java-awt-geom-area2Convert a list java.awt.geom.Point2D to a java.awt.geom.AreaMatt2009-09-02T18:16:16Z2009-11-21T15:00:38Z
<p>I have a set of points that i want to turn into a closed polygon in Java. I'm currently trying to use java.awt.geom.Point2D and java.awt.geom.Area but can't figure out how to turn a group of the points into an Area.</p>
<p>I think I can define a set of Line2Ds based on the points and then add those to the Areas, but that's a lot of work and I'm lazy. So is there an easier way to go.</p>
<p>The problem is I have a list of lat/lon coordinates and want to build up an area that I can use for hit testing.</p>
<p>Non-core Java libraries are a possibility as well.</p>
<p>Update, I looked at using java.awt.Polygon but it only supports ints and I'm operating with doubles for the coordinates.</p>
http://stackoverflow.com/questions/1708011/create-a-imageicon-that-is-the-mirror-of-another-one1Create a ImageIcon that is the mirror of another one.Williwaw2009-11-10T13:36:36Z2009-11-10T15:56:44Z
<p>Hi,</p>
<p>I'll like to know if there is a way to create a ImageIcon that is the mirror of another ImageIcon.</p>
<p>Searching on Google, I found how to do it by using many AWT libraries.</p>
<p>Is there a way to do it with Swing ? If not, I'm still having troubles with the AWT method : </p>
<p>The ImageIcon I want to mirror is a animated gif (with contain a transparent color) and the AWT method returns a non-transparent (the transparent color is changed to opaque black) and non-animated gif.</p>
<p>Any ideas how to keep the animation and the transparent color?</p>
<p>Here is the AWT code I found (rangerStand being the original ImageIcon) :</p>
<pre><code> Image reversed = rangerStand.getImage();
BufferedImage bufferedImage = new BufferedImage(reversed.getWidth(null), reversed.getHeight(null), BufferedImage.TYPE_INT_RGB);
Graphics gb = bufferedImage.getGraphics();
gb.drawImage(reversed, 0, 0, null);
gb.dispose();
AffineTransform tx = AffineTransform.getScaleInstance(-1, 1);
tx.translate(-reversed.getWidth(null), 0);
AffineTransformOp op = new AffineTransformOp(tx, AffineTransformOp.TYPE_NEAREST_NEIGHBOR);
bufferedImage = op.filter(bufferedImage, null);
ImageIcon lol = new ImageIcon(bufferedImage);
this.sprite.setIcon(lol);
</code></pre>
<p>Thanks for reading.</p>
http://stackoverflow.com/questions/1697966/java-awt-swing-get-notified-on-change-of-position-size-of-my-window0Java AWT/Swing: Get notified on change of position/size of my windowAtmocreations2009-11-08T21:25:24Z2009-11-08T21:32:36Z
<p>Hello</p>
<p>I've got a window and I would like to get notified when the position or the size has changed. Which type of listener ist the best to take?</p>
<p><code>WindowListener</code> didn't work for me...</p>
<p>Any way?</p>
<p>Thanks and regards</p>
http://stackoverflow.com/questions/199152/force-a-full-java-applet-refresh-awt0Force a full Java applet refresh (AWT)Jason Kealey2008-10-13T21:53:51Z2009-11-06T16:53:31Z
<p>I have a Java Applet that uses AWT. In some (rare) circumstances, the platform does not refresh the screen properly. I can move or minimize/maximize the window and see that my applet refreshed properly. I am looking for code that will give me the fullest possible applet screen repaint, simulating the behaviour of a minimize/maximize. </p>
<p>I've tried calling various combinations of paint()/repaint()/invalidate()/update() on the parent containers and recursing on various children. However, no combination (that I've found) cleans up the framework bugs that I am encountering. I am looking for techniques to fully refresh the applet, even if they may cause some slight flickering, as I will be invoking this code only on the problematic platform. </p>
<p>In my tests, moving to Swing did not help resolve my problem. </p>
<p>By the way, this is a simplification of my previous (more complicated) post: <a href="http://stackoverflow.com/questions/184491/java-applet-awt-refresh-problem-mac-os-x-104">http://stackoverflow.com/questions/184491/java-applet-awt-refresh-problem-mac-os-x-104</a> </p>
<p>Edit: Investigation in threading did not solve this problem. Marking best answer as the good one. </p>
http://stackoverflow.com/questions/1676187/why-is-paint-paintcomponent-never-called0Why is paint()/paintComponent() never called?oligofren2009-11-04T19:53:35Z2009-11-05T07:04:55Z
<p>For the last two days I have tried to <strong>understand</strong> how Java handles graphics, but have failed miserably at just that. My main problem is understanding exactly how and when paint() (or the newer paintComponent() ) is/should be called.</p>
<p>In the following code I made to see when things are created, the paintComponent() is never called, unless I manually add a call to it myself or calls to JFrame.paintAll()/JFrame.paintComponents().</p>
<p>I renamed the paint() method to paintComponent() in hoping that would fix my problem of it never being called (even at repaint()), but no luck.</p>
<pre><code>package jpanelpaint;
import java.awt.*;
import javax.imageio.*;
import javax.swing.*;
import java.io.*;
import java.util.ArrayList;
public class ImageLoadTest extends JComponent {
ArrayList<Image> list;
public ImageLoadTest() {
list = new ArrayList<Image>();
try { //create the images (a deck of 4 cards)
for(String name : createImageFileNames(4)){
System.err.println(name);
list.add(ImageIO.read(new File(name)));
}
} catch (IOException e) { }
}
protected void paintComponent(Graphics g) {
int yOffset=0;
System.err.println("ImageLoadTest.paintComponent()");
for(Image img : list) {
g.drawImage(img, 0, yOffset, null);
yOffset+=20;
}
}
public static void main(String args[]) throws InterruptedException {
JFrame frame = new JFrame("Empty JFrame");
frame.setSize(new Dimension(1000, 500));
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
Thread.sleep(1000);
frame.setTitle("Loading images");
ImageLoadTest ilt = new ImageLoadTest();
frame.add(ilt);
//update the screen
//DOESN'T WORK. only works if I call frame.paintAll(frame.getGraphics())
ilt.repaint();
frame.repaint();
Thread.sleep(1000);
frame.setTitle("Setting background");
ilt.setBackground(Color.BLACK);
//update the screen - DOESN'T WORK even if I call paintAll ..
ilt.repaint();
frame.repaint();
//have to call one of these to get anything to display
// ilt.paintComponent(frame.getGraphics()); //works
frame.paintComponents(frame.getGraphics()); //works
}
//PRIVATE HELPER FUNCTIONS
private String[] createImageFileNames(int count){
String[] fileNames = new String[count];
for(int i=0; i < count; i++)
fileNames[i] = "Cards" + File.separator + (i+1) + ".bmp";
return fileNames;
}
}
</code></pre>
http://stackoverflow.com/questions/297938/always-on-top-windows-with-java8"Always on Top" Windows with JavaLaplie2008-11-18T05:37:48Z2009-11-03T19:24:03Z
<p>In Java, is there a way to have a window that is "Always on top" regardless if the user switches focus to another application? I've searched the web, and all of the solutions lean to some sort of JNI interface with native bindings. Truly this can't be the only way to do it?.. or is it?</p>
http://stackoverflow.com/questions/1634069/is-it-possible-to-have-2-jpanels-in-a-border-layout-at-the-same-location2Is it possible to have 2 JPanels in a Border layout at the same location?Dan Howard2009-10-27T22:39:29Z2009-10-27T22:42:49Z
<p>Hi All,</p>
<p>I'm writing a game which uses a border layout with a JPanel using BorderLayout.CENTER. What I'd like to be able to do is sometimes hide this panel and replace it with another panel with different information. I added both to the container and set visibility of one of them to false.</p>
<p>Then later I try:</p>
<pre><code>panel1.setVisible(false);
panel2.setVisible(true);
</code></pre>
<p>but this doesn't display the new panel. I just see gray. Any ideas?</p>
<p>TIA</p>
http://stackoverflow.com/questions/1607899/what-does-container-validate-method-do1What does Container.validate() method do?amit.dev2009-10-22T15:08:13Z2009-10-22T15:15:33Z
<p>There seems to be many methods in Java awt <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/awt/Container.html" rel="nofollow">Container</a> class that are related to <em>validate</em>. Apparently they don't do data validation. Is it useful for a Swing developer in any cases? Some of the methods:
validate(), invalidate(), validateTree(), isValid() etc.</p>
http://stackoverflow.com/questions/1589172/listening-to-all-jinternalframe-events-java0Listening to all JInternalFrame events - JavaEd 2009-10-19T14:57:19Z2009-10-19T16:45:44Z
<p>Hi,</p>
<p>I'm trying to internationalise a Java applet and with that, support scripts which are written from right to left. I want to set up component orientations for all java components added to the view automatically.</p>
<p>My solution so far has to listen to all AWTEvent's using the windows mask:</p>
<pre><code>c.getToolkit().addAWTEventListener(listener, AWTEvent.WINDOW_EVENT_MASK);
</code></pre>
<p>...and then setting the c/o on each window added, as well as adding component listeners to set c/o on any components added to the window at a later point.</p>
<p>My issue is that JInternalFrames are not handled by this solution, I want to be able to add another listener for these events, much like I have done for windows. Any ideas?</p>
<p>Or alternatively, are there any better approaches to handling script direction for all components in an applet?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1588753/flicker-free-awt-application1Flicker free AWT applicationizb2009-10-19T13:43:58Z2009-10-19T13:46:49Z
<p>I'm trying to write a silly little app using Java and AWT.</p>
<p>It simply runs and animates some shapes, so as a first step, I created a simple app that clears a canvas with <code>fillRect</code> every 50ms.</p>
<p>The problem is, my app flickers every now and then with the underlying window colour. Google is failing me when it comes to finding simple hello-world type examples of flicker-free animating AWT apps.</p>
<p>What would the skeletal code for something like this look like?</p>
http://stackoverflow.com/questions/1585898/java-awt-applet-with-microsoft-jvm-white-screen0Java awt applet with Microsoft JVM white screenBassel Alkhateeb2009-10-18T20:09:26Z2009-10-19T05:52:41Z
<p>I have a java chat applet that's compatible with JDK1.1 so it works well even with Microsoft JVM.</p>
<p>the thing is, sometimes the chat area within the applet becomes white and messed up.
It can only be fixed back by closing the whole Internet Explorer (all windows and tabs) and restarting it.</p>
<p>this doesn't exist when running the applet on sun's JVM, but we have to use MS's.
it seems like it's related to the instance of JRE that runs with the browser when the first applet starts.</p>
<p>The area that becomes messed up is a panel object used to render users's chat text.
Any ideas?</p>
http://stackoverflow.com/questions/1571120/java-awt-applet-white-screen-when-resizing-window0Java AWT applet white screen when resizing windowBassel Alkhateeb2009-10-15T08:53:10Z2009-10-16T11:27:53Z
<p>I have a java applet built using awt.</p>
<p>I draw some text on a panel object and everything goes fine.
but when resizing the windows all the text disappears.</p>
<p>this behaviour is different among different jvms and platforms.</p>
<p>moving to swing isn't a possible option, because we have to maintain compatiblty with Microsoft JVM.</p>
http://stackoverflow.com/questions/1570443/modality-issue-in-swtawt-bridge0Modality issue in SWT_AWT bridgeSuraj Chandran2009-10-15T05:25:00Z2009-10-15T05:25:00Z
<p>I am using EmbeddedSwingComposite (built on SWT_AWT bridge) which is mentioned in the following article :
<a href="http://www.eclipse.org/articles/article.php?file=Article-Swing-SWT-Integration/index.html" rel="nofollow">http://www.eclipse.org/articles/article.php?file=Article-Swing-SWT-Integration/index.html</a></p>
<p>Though it says that using the above technique modality issues are resolved. But in my case there are still some modality issues left. I guess maybe becuause I am using JDK6 wherein Swing modality was changed.</p>
<p>Anybody with experience or any idea on this. Any further info please post.</p>
<p>Thanks in advance</p>
http://stackoverflow.com/questions/1569463/repaint-frame-when-resized1Repaint frame when resized?joef2009-10-14T22:58:47Z2009-10-14T23:48:08Z
<p>How would I force a Frame to <code>repaint()</code> immediately after it is maximized, or resized?</p>
<p>I can't find what method is called when that specific operation takes place. I have a bunch of graphics that are written with Graphic objects in paint and their orientation depends on the real time feedback from <code>getWidth()</code> and <code>getHeight()</code> but paint isn't called when I maximize, only when those pixels change unfortunately. </p>
http://stackoverflow.com/questions/1541114/awt-libraries-using-java-1-6-on-linux-server-in-a-datacenter0AWT libraries using Java 1.6 on Linux Server in a datacentersammichy2009-10-08T23:35:18Z2009-10-08T23:41:16Z
<p>I need to create and store thumbnails (of images from the web) and store them on the server. Can I use the awt libraries (as listed below) on a linux server running in a datacenter (without a monitor)? I do not know if the server has a graphics card or needs one for these libraries to work...</p>
<pre>
import java.awt.GraphicsConfiguration;
import java.awt.GraphicsDevice;
import java.awt.GraphicsEnvironment;
import java.awt.Graphics2D;
import java.awt.geom.AffineTransform;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import java.io.OutputStream;
import java.io.FileOutputStream;
import java.net.URL;
import javax.imageio.ImageIO;
import org.springframework.stereotype.Service;
import com.sun.image.codec.jpeg.ImageFormatException;
import com.sun.image.codec.jpeg.JPEGCodec;
import com.sun.image.codec.jpeg.JPEGImageEncoder;
import java.awt.Color;
</pre>
http://stackoverflow.com/questions/1514929/obtaining-a-screen-shot-of-an-applet0Obtaining a screen shot of an Applet?knorv2009-10-03T21:43:33Z2009-10-04T02:00:24Z
<p>Given an Applet object, is it possible to programatically obtain a "screen shot" of the applet window (represented as say a BufferedImage)?</p>
<pre><code> JApplet applet = this;
// ... code here ...
BufferedImage screenshotOfApplet = ...;
</code></pre>
http://stackoverflow.com/questions/1515365/isnt-swings-jpanel-pretty-much-like-awts-panel-the-formers-widget-is-not-sho2Isn't Swing's JPanel pretty much like AWT's Panel? The former's widget is not showing upkonr2009-10-04T01:42:15Z2009-10-04T01:59:59Z
<p>I'm changing a program from AWT to Swing, as proposed on the second chapter of Java Swing's book, and the panel just disappears when I do the change from Panel to JPanel. The same doesn't happen when I change from Button to JButton.</p>
<p>It seems to be a bug, since it appears to be trivially simple to do so - just adding an extra J to the name - but I'm not sure where the problem is - with my VM (Sun JDK), with my WM (xmonad) or with the way I'm programming (Clojure's Java Support). Any idea?</p>
<p>As previously stated, I'm writing it in Clojure (a lisp-like language for the JDK). Here is my code:</p>
<pre>
(defn main []
(let [toolbar-frame (Frame. "Toolbar Example (Swing)")
cut-button (JButton. "Cut")
copy-button (JButton. "Copy")
paste-button (JButton. "Paste")
java-button (JButton. "Java")
windows-button (JButton. "Windows")
mac-button (JButton. "Mac")
motif-button (JButton. "Motif")
<b>lnf-panel (JPanel.)</b>
toolbar-panel (Panel.)
print-listener (proxy [ActionListener] []
(actionPerformed [evt]
(.getActionCommand evt)))
]
(.addWindowListener toolbar-frame
(proxy [WindowAdapter] []
(windowClosing [e]
(System/exit 0))))
;(doto windows-button (.addActionListener lnf-listener))
;(doto motif-button (.addActionListener lnf-listener))
;(doto mac-button (.addActionListener lnf-listener))
;(doto java-button (.addActionListener lnf-listener))
(doto cut-button (.addActionListener print-listener))
(doto copy-button (.addActionListener print-listener))
(doto paste-button (.addActionListener print-listener))
(doto lnf-panel
(.add windows-button)
(.add java-button)
(.add mac-button)
(.add motif-button)
(.setLayout (FlowLayout. FlowLayout/LEFT)))
(doto toolbar-panel
(.add cut-button)
(.add copy-button)
(.add paste-button)
(.setLayout (FlowLayout. FlowLayout/LEFT)))
(doto toolbar-frame
(.add toolbar-panel BorderLayout/NORTH)
(.add lnf-panel BorderLayout/SOUTH)
(.setSize 450 250)
(.setVisible true))))
</pre>
<p>Thanks</p>
http://stackoverflow.com/questions/79935/is-there-an-equivalent-to-javas-robot-class-java-awt-robot-for-perl1Is there an equivalent to Java's Robot class (java.awt.Robot) for Perl?whitney2008-09-17T04:20:05Z2009-10-03T18:16:25Z
<p>Is there an equivalent to Java's Robot class (java.awt.Robot) for Perl?</p>
http://stackoverflow.com/questions/880753/how-to-draw-rectangle-on-java-applet-using-mouse-drag-event0how to draw rectangle on java applet using mouse drag eventunknown (yahoo)2009-05-19T02:40:46Z2009-10-01T18:18:10Z
<p>hi,
i am using java.
i want to draw rectangle based on mousedrag event. if user dragging the mouse, then the rectangle on the applet should increase or decrease basing on current mouse coordinates.
i have the following code.</p>
<p>in the following code i am using [b]SelectionArea[/b] class which extends a canvas on which i am performing drawing operation. i am using [b]image[/b] variable in this class for double buffering to reduce flickering and to save the applet's previous state(i.e drawing content of applet)</p>
<p>but the code is working fine if i draw first rectangle. if i start to draw second rectangle the previously drawn rectangle is disappearing. i want the previously drawn rectangle to be on the screen</p>
<p>can any one tell me how to solve this.</p>
<pre><code>import java.awt.*;
import java.applet.Applet;
import java.awt.event.*;
/*
* This displays a framed area. When the user drags within
* the area, this program displays a rectangle extending from
* where the user first pressed the mouse button to the current
* cursor location.
*/
public class RectangleDemo extends Applet {
SelectionArea drawingPanel;
Label label;
public void init() {
GridBagLayout gridBag = new GridBagLayout();
GridBagConstraints c = new GridBagConstraints();
setLayout(gridBag);
drawingPanel = new SelectionArea(this);
c.fill = GridBagConstraints.BOTH;
c.weighty = 1.0;
c.gridwidth = GridBagConstraints.REMAINDER; //end row
gridBag.setConstraints(drawingPanel, c);
add(drawingPanel);
label = new Label("Drag within the framed area.");
c.fill = GridBagConstraints.HORIZONTAL;
c.weightx = 1.0;
c.weighty = 0.0;
gridBag.setConstraints(label, c);
add(label);
drawingPanel.setVisible(true);
validate();
}
public void paint(Graphics g){
drawingPanel.repaint();
}
public void update(Graphics g){
paint(g);
}
</code></pre>
<p>}</p>
<pre><code>class SelectionArea extends Canvas implements ActionListener, MouseListener, MouseMotionListener{
Rectangle currentRect;
RectangleDemo controller;
//for double buffering
Image image;
Graphics offscreen;
public SelectionArea(RectangleDemo controller) {
super();
this.controller = controller;
addMouseListener(this);
addMouseMotionListener(this);
}
public void actionPerformed(ActionEvent ae){
repaintoffscreen();
}
public void repaintoffscreen(){
image = createImage(this.getWidth(), this.getHeight());
offscreen = image.getGraphics();
Dimension d = getSize();
if(currentRect != null){
Rectangle box = getDrawableRect(currentRect, d);
//Draw the box outline.
offscreen.drawRect(box.x, box.y, box.width - 1, box.height - 1);
//repaint();
}
}
public void mouseEntered(MouseEvent me) {}
public void mouseExited(MouseEvent me){ }
public void mouseClicked(MouseEvent me){}
public void mouseMoved(MouseEvent me){}
public void mousePressed(MouseEvent me) {
currentRect = new Rectangle(me.getX(), me.getY(), 0, 0);
repaintoffscreen();
}
public void mouseDragged(MouseEvent me) {
System.out.println("here in dragged()");
currentRect.setSize(me.getX() - currentRect.x, me.getY() - currentRect.y);
repaintoffscreen();
repaint();
}
public void mouseReleased(MouseEvent me) {
currentRect.setSize(me.getX() - currentRect.x, me.getY() - currentRect.y);
repaintoffscreen();
repaint();
}
public void update(Graphics g){
paint(g);
}
public void paint(Graphics g) {
g.drawImage(image, 0, 0, this);
}
Rectangle getDrawableRect(Rectangle originalRect, Dimension drawingArea) {
int x = originalRect.x;
int y = originalRect.y;
int width = originalRect.width;
int height = originalRect.height;
//Make sure rectangle width and height are positive.
if (width < 0) {
width = 0 - width;
x = x - width + 1;
if (x < 0) {
width += x;
x = 0;
}
}
if (height < 0) {
height = 0 - height;
y = y - height + 1;
if (y < 0) {
height += y;
y = 0;
}
}
//The rectangle shouldn't extend past the drawing area.
if ((x + width) > drawingArea.width) {
width = drawingArea.width - x;
}
if ((y + height) > drawingArea.height) {
height = drawingArea.height - y;
}
return new Rectangle(x, y, width, height);
}
</code></pre>
<p>}</p>
<p>also if i run this code on full screen mode then i am seeing that the rectangle is appering on screen only after i released the mouse. but i want the rectangle to be on the screen while dragging the mouse and it should change it's dimension according to the current mouse coordinates.
can any one help me pls.</p>
http://stackoverflow.com/questions/1500529/editing-a-java-bean0editing a java bean ?Lionel2009-09-30T20:39:17Z2009-09-30T20:39:17Z
<p>Hello,</p>
<p>I'm searching for he source of a graphical bean editor... a (very basic) beanbox if you prefer...</p>
<p>Here is what I would like to achieve :
I have an application which uses some customizable objects that more or less honor the java bean spec...
What I mean by that is that they have getters and setters for most properties...</p>
<p>The swing/awt GUI in my application provides a set of classes, panels, etc to graphically edit those properties, but I do not use the reflection API... They provide for cutomization of some of these properties but most things are hardcoded and I modify the editor everytime I add a new customizable stuff... I hate this design...</p>
<p>While I could of course use a better design pattern (and I eventually will), I have been wondering if I could turn my 'customizable' objects into more elaborate beans like those that would be loaded in beanbox for exemple. They could provide editors for their properties, etc...</p>
<p>There are A LOT of tutorials to teach you how to create a bean and load and test it in beanbox. However, I haven't been able to find some source code that actually does what beanbox do : get an bean instance and EDIT it !!!</p>
<p>Which approach do you gurus think is the best : change the design and do-it-myself or keep searching for a swing/AWT based bean editor source code ??</p>
<p>thanx for your comments !</p>
http://stackoverflow.com/questions/1470958/ctrl-delete-in-jtextfield1Ctrl-Delete in JTextFieldcolinjameswebb2009-09-24T10:57:45Z2009-09-24T15:11:52Z
<p>How can I get JTextFields to allow Ctrl-Delete and Ctrl-Backspace when editing text?</p>
<p>In various other programs, these key combinations can delete an entire word in one go.</p>
<p>From what I can tell, the default behaviour of a JTextField allows the user to use CTRL to jump over an entire word when using left and right keys, and to select an entire word when SHIFT is used too. However, deleting just doesn't work.</p>
http://stackoverflow.com/questions/227143/java-what-is-java-awt-component-getname-and-setname-used-for5Java: What is java.awt.Component.getName() and setName() used for?JohnnyLambada2008-10-22T19:06:05Z2009-09-24T00:43:18Z
<p>What is <a href="http://java.sun.com/javase/6/docs/api/java/awt/Component.html#getName()" rel="nofollow">java.awt.Component.getName()</a> used for? It always seems to be null in the applications I build with netbeans. I'm thinking of storing some help text per component in it -- I don't want to use the tooltip, I have another panel where I'll show the help text.</p>
http://stackoverflow.com/questions/1451745/repaint-and-setcolor-in-awt0repaint and setColor in AWTAdam2009-09-20T19:04:57Z2009-09-21T09:53:08Z
<p>Why does the <code>setColor</code> of a <code>Graphics</code> object reset when I use the <code>repaint</code> method?</p>