Re: FlowLayout and lightweight IDEs
bH wrote:
Hi All,
This Q is about using a FlowLayout. The lineup of labels and
textfields should be made in two horizontal rows by the size given in
the program. I tested this with 3 lightweight IDE's All use the same
jdk1.5.0_12.
With two of them, on a initial run, show no labels and textfields
items but the frame is in the correct size. If I open the screen to
the full width using the icon , all items are visible. If I then
click the icon to diminished size, using top of the frame menu bar,
all the items are there and in the intended line up. The third IDE
opens the program and right away everything is there in the correct
size and placement. Is the problem in the IDE's? Can the two that show
nothing on the initial run have a line of code added to make it appear
correct without resizing the screen manually from the app menu frame?
TIA
bH
Here's the program:
import java.awt.*;
import java.awt.event.*;
import java.awt.image.*;
import java.text.SimpleDateFormat;
import java.net.*;
import java.io.*;
import java.util.*;
import javax.swing.*;
import javax.imageio.*;
public class GoogleDrawImage
{
public static void main(String[] args)
{
JFrame frame = new ImageFrame();
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
}
}
class ImageFrame extends JFrame implements ActionListener {
BufferedImage image;
JTextField
addressField,appendFieldcht,appendFieldchs,appendFieldchd,
appendFieldchm,appendFieldchf;
JLabel lbleGoogleInstr,lbleFieldcht,lbleFieldchs,lbleFieldchd,
lbleFieldchm, lbleFieldchf;
JButton btnGetGoogleApis,btnClose;
boolean isOneDone = false;
public ImageFrame()
{
super("Image from Developer's Guide - Google Chart API - Google");
super.setSize(800, 600);
Container con = getContentPane();
con.setLayout(new FlowLayout());
addressField = new JTextField(20);
addressField.setText("http://chart.apis.google.com/chart?");
appendFieldcht = new JTextField(8);
appendFieldcht.setText("r");
appendFieldchs = new JTextField(8);
appendFieldchs.setText("400x400");
appendFieldchd = new JTextField(8);
appendFieldchd.setText("t:70,70,70,70,70,70");
appendFieldchm = new JTextField(8);
appendFieldchm.setText("B,FF0000,0,0,5");
appendFieldchf = new JTextField(8);
appendFieldchf.setText("c,s,000000");
lbleGoogleInstr = new JLabel("Complete These to Get Drawing:");
lbleFieldcht = new JLabel("cht is: ");
lbleFieldchs = new JLabel("chs is: ");
lbleFieldchd = new JLabel("chd is: ");
lbleFieldchm = new JLabel("chm is: ");
lbleFieldchf = new JLabel("chf is: ");
btnGetGoogleApis = new JButton("GetGoogleApis");
btnGetGoogleApis.setActionCommand("GrabItAll");
btnGetGoogleApis.addActionListener(this);
btnClose = new JButton("Close Application");
btnClose.setActionCommand("close");
btnClose.addActionListener(this);
//Add Components to this container, using the default FlowLayout.
add (lbleGoogleInstr);
add(lbleFieldcht);
add (appendFieldcht);
add (lbleFieldchs);
add(appendFieldchs);
add(lbleFieldchd);
add(appendFieldchd);
add(lbleFieldchm);
add(appendFieldchm);
add(lbleFieldchf);
add(appendFieldchf);
add(btnGetGoogleApis);
add(btnClose);
image = null;
}
public void actionPerformed(ActionEvent e) {
String urlGoogleDrw = addressField.getText()+"cht="+
appendFieldcht.getText().trim()+"&chs=" +
appendFieldchs.getText().trim()+"&chd="+
appendFieldchd.getText().trim()+"&chm="+
appendFieldchm.getText().trim()+"&chf="+
appendFieldchf.getText().trim();
if (e.getActionCommand().equals("GrabItAll")) {
//nothing here so let it fall through and go on
}
else if (e.getActionCommand().equals("close")) {
System.exit(0);
}
try {
// Read from assembled URL
System.out.println(urlGoogleDrw);
URL url = new URL(urlGoogleDrw);
image = ImageIO.read(url);
} catch (IOException et) {
}
try {
Date dNow = new Date();
SimpleDateFormat formatter = new SimpleDateFormat
("yyMMddHHmmssZ");
String df = new String(formatter.format(dNow));
File file = new File("C:/Documents and "+
"Settings/bH/My Documents/BlueJ Projects/Viewer/imageDate "
+ df + " FromGoogle.png");
ImageIO.write(image, "png", file);
}
catch (IOException em) {
}
repaint();
}
public void paint(Graphics g)
{
g.drawImage(image, 50, 110, null);
if (isOneDone = false){
System.out.println("See C:/... " +
"/BlueJ Projects/Viewer/images/imageDate yyMMddHHmmssZ
FromGoogle.png");
isOneDone = true;
}
}
}
I compiled it and it displayed and ran. I don't use an IDE so I can't
help you there. It is possible that your problem is from not creating
the GUI on the EDT. And speaking of the EDT, you block it while
retrieving your image. Any change that would occur to the displayed
components will not happen until the EDT is freed. This may or may not
cause you to lose some of your GUI but the GUI will not be able to
respond until the image gathering code returns.
--
Knute Johnson
email s/nospam/knute2008/
--
Posted via NewsDemon.com - Premium Uncensored Newsgroup Service
------->>>>>>http://www.NewsDemon.com<<<<<<------
Unlimited Access, Anonymous Accounts, Uncensored Broadband Access