idea_rt -> community/java/java-runtime

This commit is contained in:
Dmitry Jemerov
2009-09-01 18:15:25 +04:00
parent 2e33285a98
commit 104f4cc309
38 changed files with 21 additions and 9 deletions
@@ -0,0 +1,98 @@
import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.text.MessageFormat;
import java.util.ResourceBundle;
public class FormPreviewFrame {
private JComponent myComponent;
private static final ResourceBundle ourBundle = ResourceBundle.getBundle("RuntimeBundle");
// Note: this class should not be obfuscated
public static void main(String[] args) {
FormPreviewFrame f = new FormPreviewFrame();
JFrame frame = new JFrame(ourBundle.getString("form.preview.title"));
frame.setContentPane(f.myComponent);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
// Add menu bar
final JMenuBar menuBar = new JMenuBar();
frame.setJMenuBar(menuBar);
final JMenu menuFile = new JMenu(ourBundle.getString("form.menu.preview"));
menuFile.setMnemonic(ourBundle.getString("form.menu.preview.mnemonic").charAt(0));
menuFile.add(new JMenuItem(new MyPackAction(frame)));
menuFile.add(new JMenuItem(new MyExitAction()));
menuBar.add(menuFile);
final JMenu viewMenu = new JMenu(ourBundle.getString("form.menu.laf"));
viewMenu.setMnemonic(ourBundle.getString("form.menu.laf.mnemonic").charAt(0));
menuBar.add(viewMenu);
final UIManager.LookAndFeelInfo[] lafs = UIManager.getInstalledLookAndFeels();
for(int i = 0; i < lafs.length; i++){
viewMenu.add(new MySetLafAction(frame, lafs[i]));
}
frame.pack();
Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
frame.setLocation((screenSize.width - frame.getWidth())/2, (screenSize.height - frame.getHeight())/2);
frame.setVisible(true);
}
private static final class MyExitAction extends AbstractAction{
public MyExitAction() {
super(ourBundle.getString("form.menu.file.exit"));
}
public void actionPerformed(final ActionEvent e) {
System.exit(0);
}
}
private static final class MyPackAction extends AbstractAction{
private final JFrame myFrame;
public MyPackAction(final JFrame frame) {
super(ourBundle.getString("form.menu.view.pack"));
myFrame = frame;
}
public void actionPerformed(final ActionEvent e) {
myFrame.pack();
}
}
private static final class MySetLafAction extends AbstractAction{
private final JFrame myFrame;
private final UIManager.LookAndFeelInfo myInfo;
public MySetLafAction(final JFrame frame, final UIManager.LookAndFeelInfo info) {
super(info.getName());
myFrame = frame;
myInfo = info;
}
public void actionPerformed(ActionEvent e) {
try{
UIManager.setLookAndFeel(myInfo.getClassName());
SwingUtilities.updateComponentTreeUI(myFrame);
Dimension prefSize = myFrame.getPreferredSize();
if(prefSize.width > myFrame.getWidth() || prefSize.height > myFrame.getHeight()){
myFrame.pack();
}
}
catch(Exception exc){
JOptionPane.showMessageDialog(
myFrame,
MessageFormat.format(ourBundle.getString("error.cannot.change.look.feel"), new Object[] {exc.getMessage()}),
ourBundle.getString("error.title"),
JOptionPane.ERROR_MESSAGE
);
}
}
}
}