summaryrefslogtreecommitdiff
path: root/accessibility/workben/org/openoffice/accessibility/awb/view/ObjectViewContainerWindow.java
blob: 8db9af4f46ca26b8231021c2728fe60623933d08 (plain)
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
package org.openoffice.accessibility.awb.view;

import java.awt.BorderLayout;
import javax.swing.JFrame;
import com.sun.star.accessibility.XAccessibleContext;


/** Top level window that creates a single object view container.  This
    container shows information about a specific accessible object and is
    not affected by the selection of the accessbility tree widget.
*/
public class ObjectViewContainerWindow
    extends JFrame
{
    public ObjectViewContainerWindow (XAccessibleContext xContext)
    {
        setSize (new java.awt.Dimension (300,600));

        maContainer = new ObjectViewContainer ();
        maContainer.SetObject (xContext);
        getContentPane().add (maContainer, BorderLayout.CENTER);

        pack ();
        setVisible (true);
    }

    /** Set the object that is displayed in this window.
    */
    public void SetObject (XAccessibleContext xContext)
    {
        maContainer.SetObject (xContext);
    }

    private ObjectViewContainer maContainer;
}