Message Dialog demo : Dialog « Swing JFC « Java

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Class
8. Collections Data Structure
9. Data Type
10. Database SQL JDBC
11. Design Pattern
12. Development Class
13. EJB3
14. Email
15. Event
16. File Input Output
17. Game
18. Generics
19. GWT
20. Hibernate
21. I18N
22. J2EE
23. J2ME
24. JDK 6
25. JNDI LDAP
26. JPA
27. JSP
28. JSTL
29. Language Basics
30. Network Protocol
31. PDF RTF
32. Reflection
33. Regular Expressions
34. Scripting
35. Security
36. Servlets
37. Spring
38. Swing Components
39. Swing JFC
40. SWT JFace Eclipse
41. Threads
42. Tiny Application
43. Velocity
44. Web Services SOA
45. XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java » Swing JFC » DialogScreenshots 
Message Dialog demo
Message Dialog demo
  
/*
Definitive Guide to Swing for Java 2, Second Edition
By John Zukowski     
ISBN: 1-893115-78-X
Publisher: APress
*/

import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Component;
import java.awt.Container;
import java.awt.Graphics;
import java.awt.Polygon;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.Icon;
import javax.swing.JButton;
import javax.swing.JDialog;
import javax.swing.JFrame;
import javax.swing.JOptionPane;
import javax.swing.JSlider;
import javax.swing.event.ChangeEvent;
import javax.swing.event.ChangeListener;

public class MessagePopup {
  public static void main(String args[]) {

    JFrame frame = new JFrame("Message Popup");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    JButton button = new JButton("Pop it");
    ActionListener actionListener = new ActionListener() {
      public void actionPerformed(ActionEvent actionEvent) {
        Component source = (ComponentactionEvent.getSource();

        /*
         * // String msg = "this is a really long message this is a
         * really long message this is a really long message this is a
         * really long message this is a really long message this is a
         * really long message this is a really long message"; String
         * msg = " <html>this is a really long message <br> this is a
         * really long message this is a really long message this is a
         * really long message this is a really long message this is a
         * really long message this is a really long message";
         * JOptionPane.showMessageDialog(source, msg); JOptionPane
         * optionPane = OptionPaneUtils.getNarrowOptionPane(72);
         * optionPane.setMessage(msg);
         * optionPane.setMessageType(JOptionPane.INFORMATION_MESSAGE);
         * JDialog dialog = optionPane.createDialog(source, "Width 72");
         * dialog.show(); int selection =
         * OptionPaneUtils.getSelection(optionPane);
         * JOptionPane.showMessageDialog(source, msg); String
         * multiLineMsg[] = {"Hello", "World"};
         * JOptionPane.showMessageDialog(source, multiLineMsg);
         
         * Object complexMsg[] = {"Above Message", new
         * DiamondIcon(Color.red), new JButton ("Hello"), new JSlider(),
         * new DiamondIcon(Color.blue), "Below Message"};
         * JOptionPane.showInputDialog(source, complexMsg); JOptionPane
         * optionPane = new JOptionPane(); JSlider slider =
         * OptionPaneUtils.getSlider(optionPane);
         * optionPane.setMessage(new Object[] {"Select a value: " ,
         * slider});
         * optionPane.setMessageType(JOptionPane.QUESTION_MESSAGE);
         * optionPane.setOptionType(JOptionPane.OK_CANCEL_OPTION);
         * JDialog dialog = optionPane.createDialog(source, "My
         * Slider"); dialog.show(); System.out.println ("Input: " +
         * optionPane.getInputValue());
         */
        JOptionPane optionPane = new JOptionPane();
        optionPane.setMessage("I got an icon and a text label");
        optionPane.setMessageType(JOptionPane.INFORMATION_MESSAGE);
        Icon icon = new DiamondIcon(Color.blue);
        JButton jButton = OptionPaneUtils.getButton(optionPane, "OK",
            icon);
        optionPane.setOptions(new Object[] { jButton });
        JDialog dialog = optionPane.createDialog(source,
            "Icon/Text Button");
        dialog.show();
      }
    };
    button.addActionListener(actionListener);
    Container contentPane = frame.getContentPane();
    contentPane.add(button, BorderLayout.SOUTH);
    frame.setSize(300200);
    frame.setVisible(true);
  }
}

class DiamondIcon implements Icon {
  private Color color;

  private boolean selected;

  private int width;

  private int height;

  private Polygon poly;

  private static final int DEFAULT_WIDTH = 10;

  private static final int DEFAULT_HEIGHT = 10;

  public DiamondIcon(Color color) {
    this(color, true, DEFAULT_WIDTH, DEFAULT_HEIGHT);
  }

  public DiamondIcon(Color color, boolean selected) {
    this(color, selected, DEFAULT_WIDTH, DEFAULT_HEIGHT);
  }

  public DiamondIcon(Color color, boolean selected, int width, int height) {
    this.color = color;
    this.selected = selected;
    this.width = width;
    this.height = height;
    initPolygon();
  }

  private void initPolygon() {
    poly = new Polygon();
    int halfWidth = width / 2;
    int halfHeight = height / 2;
    poly.addPoint(0, halfHeight);
    poly.addPoint(halfWidth, 0);
    poly.addPoint(width, halfHeight);
    poly.addPoint(halfWidth, height);
  }

  public int getIconHeight() {
    return height;
  }

  public int getIconWidth() {
    return width;
  }

  public void paintIcon(Component c, Graphics g, int x, int y) {
    g.setColor(color);
    g.translate(x, y);
    if (selected) {
      g.fillPolygon(poly);
    else {
      g.drawPolygon(poly);
    }
    g.translate(-x, -y);
  }
}

final class OptionPaneUtils {

  private OptionPaneUtils() {
  }

  public static JOptionPane getNarrowOptionPane(int maxCharactersPerLineCount) {
    // Our inner class definition
    class NarrowOptionPane extends JOptionPane {
      int maxCharactersPerLineCount;

      NarrowOptionPane(int maxCharactersPerLineCount) {
        this.maxCharactersPerLineCount = maxCharactersPerLineCount;
      }

      public int getMaxCharactersPerLineCount() {
        return maxCharactersPerLineCount;
      }
    }

    return new NarrowOptionPane(maxCharactersPerLineCount);
  }

  public static JButton getButton(final JOptionPane optionPane, String text,
      Icon icon) {
    final JButton button = new JButton(text, icon);
    ActionListener actionListener = new ActionListener() {
      public void actionPerformed(ActionEvent actionEvent) {
        // Return current text label, instead of argument to method
        optionPane.setValue(button.getText());
      }
    };
    button.addActionListener(actionListener);
    return button;
  }

  public static JSlider getSlider(final JOptionPane optionPane) {
    JSlider slider = new JSlider();
    slider.setMajorTickSpacing(10);
    slider.setPaintTicks(true);
    slider.setPaintLabels(true);
    ChangeListener changeListener = new ChangeListener() {
      public void stateChanged(ChangeEvent changeEvent) {
        JSlider theSlider = (JSliderchangeEvent.getSource();
        if (!theSlider.getValueIsAdjusting()) {
          optionPane.setInputValue(new Integer(theSlider.getValue()));
        }
      }
    };
    slider.addChangeListener(changeListener);
    return slider;
  }

  public static int getSelection(JOptionPane optionPane) {
    // Default return value, signals nothing selected
    int returnValue = JOptionPane.CLOSED_OPTION;

    // Get selected Value
    Object selectedValue = optionPane.getValue();
    System.out.println(selectedValue);

    // If none, then nothing selected
    if (selectedValue != null) {
      Object options[] = optionPane.getOptions();
      if (options == null) {
        // default buttons, no array specified
        if (selectedValue instanceof Integer) {
          returnValue = ((IntegerselectedValue).intValue();
        }
      else {
        // Array of option buttons specified
        for (int i = 0, n = options.length; i < n; i++) {
          if (options[i].equals(selectedValue)) {
            returnValue = i;
            break// out of for loop
          }
        }
      }
    }
    return returnValue;
  }
}

           
         
    
  
Related examples in the same category
1. Creating and using Dialog BoxesCreating and using Dialog Boxes
2. Dialog boxes and creating your own componentsDialog boxes and creating your own components
3. A frame that can easily support internal frame dialogsA frame that can easily support internal frame dialogs
4. An example of using the JOptionPane with a custom list of options in anAn example of using the JOptionPane with a custom list of options in an
5. See the differences between various types of option panesSee the differences between various types of option panes
6. Vote DialogVote Dialog
7. Create simple about dialogCreate simple about dialog
8. Dialog separatorDialog separator
9. Message dialogMessage dialog
10. Error message dialogError message dialog
11. Information dialog with customized logoInformation dialog with customized logo
12. Input dialog with user-defined logoInput dialog with user-defined logo
13. Confirmation dialogConfirmation dialog
14. Default button for dialog: press Enter to activateDefault button for dialog: press Enter to activate
15. Simple dialog for asking a yes no questionSimple dialog for asking a yes no question
16. Class to Prompt the User for an ID and Password
17. Simple Save Dialog demoSimple Save Dialog demo
18. Demonstrate JOptionPaneDemonstrate JOptionPane
19. Create Color Sample PopupCreate Color Sample Popup
20. Simple Input DialogSimple Input Dialog
21. No button dialogNo button dialog
22. Escape Key close Dialog
23. Dialog can be closed by pressing the escape key
24. Dialog which displays indeterminate progress
25. Dialog with Escape KeyDialog with Escape Key
26. Modal Message Dialog
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.