1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177
|
/*************************************************************************
*
* $RCSfile: SSR.java,v $
*
* $Revision: 1.3 $
*
* last change: $Author: hr $ $Date: 2003/06/30 15:07:37 $
*
* The Contents of this file are made available subject to the terms of
* the BSD license.
*
* Copyright (c) 2003 by Sun Microsystems, Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of Sun Microsystems, Inc. nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
* USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*************************************************************************/
import java.awt.event.ActionListener;
import java.awt.GridBagLayout;
import java.awt.GridBagConstraints;
import javax.swing.*;
/** The simple screen reader (SSR) registers at the toolkit as focus listener
and displays information about the currently focused object.
*/
public class SSR
implements ActionListener
{
/** Just pass the control to the SSR class.
*/
public static void main (String args[])
{
new SSR ();
}
/** Create a new instance of the simple screen reader.
*/
public SSR ()
{
Layout ();
// Create the event handler and tell it where to display information
// about the currently focused accessible object.
maEventHandler = new EventHandler ();
maEventHandler.addObjectDisplay (maTextualDisplay);
maEventHandler.addObjectDisplay (maGraphicalDisplay);
}
/** Setup the GUI. It is divided into three areas. The lower half is
ocupied by a message area that logs all the events received from
accessibility objects. The upper half is shared by two different
displays of the currently focused object. On left there is a textual
representation. On the right there is a graphical view of the
objects's outline.
*/
private void Layout ()
{
GridBagConstraints constraints;
JPanel aPanel = new JPanel (true);
aPanel.setLayout (new GridBagLayout());
aPanel.setOpaque (true);
mFrame = new JFrame ("Simple Screen Reader 0.3");
mFrame.setContentPane(aPanel);
mFrame.setSize (600,400);
addComponent (new JLabel ("Focused Object:"),
0,0, 1,1, 0,0, GridBagConstraints.WEST, GridBagConstraints.NONE);
maTextualDisplay = new TextualDisplay ();
addComponent (maTextualDisplay,
0,1, 1,1, 1,1, GridBagConstraints.CENTER, GridBagConstraints.BOTH);
maGraphicalDisplay = new GraphicalDisplay ();
addComponent (maGraphicalDisplay,
1,0, 1,2, 1,1, GridBagConstraints.CENTER, GridBagConstraints.BOTH);
addComponent (new JLabel ("Messages:"),
0,2, 1,1, 0,0, GridBagConstraints.WEST, GridBagConstraints.NONE);
addComponent (MessageArea.Instance(),
0,3, 2,1, 1,1, GridBagConstraints.CENTER, GridBagConstraints.BOTH);
JButton aButton = new JButton ("Quit SSR");
addComponent (aButton,
0,4, 1,1, 0,0, GridBagConstraints.WEST,GridBagConstraints.NONE);
aButton.addActionListener (this);
mFrame.show();
}
/** Add a GUI element with the given constraints to the main window.
*/
private JComponent addComponent (JComponent aComponent,
int x, int y, int width, int height, double weightx, double weighty,
int anchor, int fill)
{
aComponent.setDoubleBuffered (false);
GridBagConstraints aConstraints = new GridBagConstraints();
aConstraints.gridx = x;
aConstraints.gridy = y;
aConstraints.gridwidth = width;
aConstraints.gridheight = height;
aConstraints.weightx = weightx;
aConstraints.weighty = weighty;
aConstraints.anchor = anchor;
aConstraints.fill = fill;
mFrame.getContentPane().add (aComponent, aConstraints);
return aComponent;
}
/** This call-back handles button presses.
*/
public void actionPerformed (java.awt.event.ActionEvent e)
{
if (e.getActionCommand().equals ("Quit SSR"))
{
maEventHandler.finalize ();
System.exit(0);
}
}
/// The main frame that contains all other GUI elements.
private JFrame mFrame;
/// A textutal representation of the currently focused object.
private TextualDisplay maTextualDisplay;
/// A graphical representation of the currently focused object.
private GraphicalDisplay maGraphicalDisplay;
/// The event handler that reacts to all the accessibility events.
private EventHandler maEventHandler;
}
|