A GUI to show accessible information coming from the components in an : Accessible « 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 » AccessibleScreenshots 
A GUI to show accessible information coming from the components in an
 
/*
Java Swing, 2nd Edition
By Marc Loy, Robert Eckstein, Dave Wood, James Elliott, Brian Cole
ISBN: 0-596-00408-7
Publisher: O'Reilly 
*/

// AssistiveExample.java
//A GUI to show accessible information coming from the components in an
//application. See BigExample.java for example of how to use this class.
//

import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.border.*;
import javax.accessibility.*;
import javax.accessibility.util.*;

public class BigExample extends JFrame {

  public BigExample() {
    super("Big Accessibility Example");
    setSize(700,500);
    setDefaultCloseOperation(EXIT_ON_CLOSE);

    JMenuBar jmb = new JMenuBar();
    JMenu fileMenu = new JMenu("File");
    JMenuItem openItem = new JMenuItem("Open");
    JMenuItem saveItem = new JMenuItem("Save");
    JMenuItem exitItem = new JMenuItem("Exit");
    exitItem.addActionListener(new ActionListener() {
      public void actionPerformed(ActionEvent ae) {
        System.exit(0);
      }
    });

    fileMenu.add(openItem);
    fileMenu.add(saveItem);
    fileMenu.add(new JSeparator());
    fileMenu.add(exitItem);
    jmb.add(fileMenu);
    setJMenuBar(jmb);

    JTextArea jta = new JTextArea("[Notes]\n");
    JScrollPane sp1 = new JScrollPane(jta);
    sp1.setMinimumSize(new Dimension(200,200));
    sp1.setPreferredSize(new Dimension(200,200));

    String[] titles = "Name""Start Date""Job Title" };
    String[][] data = {
      {"Jordan""2001""Director"},
      {"Naveen""1999""Programmer"},
      {"Jia""2000""Analyst"},
      {"Brooks""1998""Evangelist"}
    };
    JTable table = new JTable(data, titles);
    table.getAccessibleContext().setAccessibleDescription("Employee Statistics");
    JPanel rightPane = new JPanel(new BorderLayout());
    rightPane.add(new JScrollPane(table), BorderLayout.CENTER);
    rightPane.add(new JLabel(new ImageIcon("logo.gif")), BorderLayout.SOUTH);

    JSplitPane jsp = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT, sp1, rightPane);

    getContentPane().add(jsp, BorderLayout.CENTER);

    JPanel bPane = new JPanel();
    JButton okButton = new JButton("Ok");
    JButton applyButton = new JButton("Apply");
    JButton clearButton = new JButton("Clear");
    bPane.add(okButton);
    bPane.add(applyButton);
    bPane.add(clearButton);

    getContentPane().add(bPane, BorderLayout.SOUTH);

    setVisible(true);
  }

  public static void main(String args[]) {
    new BigExample();
    new AssistiveExample();
  }
}


class AssistiveExample extends JPanel implements MouseMotionListener,
    ActionListener, GUIInitializedListener {

  Timer timer;

  static JFrame frame;

  JLabel nameLabel = new JLabel();

  JLabel descriptionLabel = new JLabel();

  JLabel tableLabel = new JLabel();

  JCheckBox selectionCheckBox = new JCheckBox("Selection"false);

  JCheckBox textCheckBox = new JCheckBox("Text"false);

  JCheckBox valueCheckBox = new JCheckBox("Value"false);

  JCheckBox componentCheckBox = new JCheckBox("Component"false);

  JCheckBox actionCheckBox = new JCheckBox("Action"false);

  JCheckBox hypertextCheckBox = new JCheckBox("Hypertext"false);

  JCheckBox iconCheckBox = new JCheckBox("Icon"false);

  JCheckBox tableCheckBox = new JCheckBox("Table"false);

  JCheckBox editableTextCheckBox = new JCheckBox("EditableText"false);

  JLabel classLabel = new JLabel();

  JLabel parentLabel = new JLabel();

  JLabel relationLabel = new JLabel();

  JButton performAction = new JButton("Perform Action");

  public AssistiveExample() {
    frame = new JFrame("Assistive Example");
    // Insert the appropriate labels and check boxes
    setLayout(new GridLayout(01))// just make as many rows as we need

    add(nameLabel);
    add(descriptionLabel);
    add(tableLabel);
    add(new JSeparator());
    add(actionCheckBox);
    add(componentCheckBox);
    add(editableTextCheckBox);
    add(hypertextCheckBox);
    add(iconCheckBox);
    add(selectionCheckBox);
    add(tableCheckBox);
    add(textCheckBox);
    add(valueCheckBox);
    add(classLabel);
    add(parentLabel);
    add(relationLabel);
    add(performAction);

    setBorder(new TitledBorder("Accessible Component"));

    performAction.addActionListener(this);

    frame.getContentPane().add(this, BorderLayout.CENTER);
    frame.setBounds(100100500600);
    frame.setVisible(true);

    //  Check to see if the GUI subsystem is initialized
    //  correctly. (This is needed in JDK 1.2 and higher).
    //  If it isn't ready, then we have to wait.
    if (EventQueueMonitor.isGUIInitialized()) {
      createGUI();
    else {
      EventQueueMonitor.addGUIInitializedListener(this);
    }

    performAction.grabFocus();
  }

  public void guiInitialized() {
    createGUI();
  }

  public void createGUI() {
    //  We want to track the mouse motions, so notify the
    //  Swing event monitor of this.
    SwingEventMonitor.addMouseMotionListener(this);

    //  Start a Timer object to measure how long the mouse stays
    //  over a particular area.
    timer = new Timer(500this);
  }

  public void mouseMoved(MouseEvent e) {
    //  If the mouse moves, restart the timer.
    timer.restart();
  }

  public void mouseDragged(MouseEvent e) {
    //  If the mouse is dragged, restart the timer.
    timer.restart();
  }

  public void actionPerformed(ActionEvent e) {
    //Find the component currently under the mouse.
    Point currentPosition = EventQueueMonitor.getCurrentMousePosition();
    Accessible comp = EventQueueMonitor.getAccessibleAt(currentPosition);

    //If the user pressed the button, and the component
    //has an accessible action, then execute it.
    if (e.getActionCommand() == "Perform Action") {
      AccessibleContext context = comp.getAccessibleContext();
      AccessibleAction action = context.getAccessibleAction();

      if (action != null)
        action.doAccessibleAction(0);
      else
        System.out.println("No accessible action present!");
      return;
    }

    //  Otherwise, the timer has fired. Stop it and update the window.
    timer.stop();
    updateWindow(comp);
  }

  private void updateWindow(Accessible component) {
    if (component == null) {
      return;
    }

    // Reset the check boxes
    actionCheckBox.setSelected(false);
    selectionCheckBox.setSelected(false);
    textCheckBox.setSelected(false);
    componentCheckBox.setSelected(false);
    valueCheckBox.setSelected(false);
    hypertextCheckBox.setSelected(false);
    iconCheckBox.setSelected(false);
    tableCheckBox.setSelected(false);
    editableTextCheckBox.setSelected(false);

    // Get the accessibile context of the component in question
    AccessibleContext context = component.getAccessibleContext();
    AccessibleRelationSet ars = context.getAccessibleRelationSet();

    nameLabel.setText("Name: " + context.getAccessibleName());
    descriptionLabel.setText("Desc: " + context.getAccessibleDescription());
    relationLabel.setText("Relation: " + ars);

    // Check the context for each of the accessibility types
    if (context.getAccessibleAction() != null)
      actionCheckBox.setSelected(true);
    if (context.getAccessibleSelection() != null)
      selectionCheckBox.setSelected(true);
    if (context.getAccessibleText() != null) {
      textCheckBox.setSelected(true);
      if (context.getAccessibleText() instanceof AccessibleHypertext)
        hypertextCheckBox.setSelected(true);
    }
    if (context.getAccessibleComponent() != null) {
      componentCheckBox.setSelected(true);
      classLabel.setText("Class: " + context.getAccessibleComponent());
      parentLabel.setText("Parent: " + context.getAccessibleParent());
    }
    if (context.getAccessibleValue() != null)
      valueCheckBox.setSelected(true);
    if (context.getAccessibleIcon() != null)
      iconCheckBox.setSelected(true);
    if ((context.getAccessibleTable() != null)
        || (context.getAccessibleParent() instanceof JTable)) {
      tableCheckBox.setSelected(true);
      tableLabel.setText("Table Desc: "
          + context.getAccessibleParent().getAccessibleContext()
              .getAccessibleDescription());
    else {
      tableLabel.setText("");
    }
    // On 1.4+ systems, you can check for editable text with these two
    // lines.
    // Note that because of the 1.4 restriction, these lines will not
    // compile
    // on a Mac system as of the time of this writing. You can comment out
    // these lines and still compile/run the example, though.
    //if (context.getAccessibleEditableText() != null)
    //  editableTextCheckBox.setSelected(true);
    repaint();
  }
}

           
         
  
Related examples in the same category
1. implement Accessible to make your object accessible
2. Setting an Accessible Name for an Image Button
3. Setting a Description for Image Icons
4. Setting a Mnemonic for Buttons for Accessible
5. Setting a Mnemonic for a Menu for Accessible
6. Associating a Label with a Component
7. Setting a Keyboard Accelerator for a Menu Item
8. An example of getting the Accessible information from a Button objectAn example of getting the Accessible information from a Button object
9. Has Displayed Name
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.