summaryrefslogtreecommitdiff
path: root/toolkit/test/accessibility/ov/StateSetView.java
diff options
context:
space:
mode:
Diffstat (limited to 'toolkit/test/accessibility/ov/StateSetView.java')
-rw-r--r--toolkit/test/accessibility/ov/StateSetView.java263
1 files changed, 0 insertions, 263 deletions
diff --git a/toolkit/test/accessibility/ov/StateSetView.java b/toolkit/test/accessibility/ov/StateSetView.java
deleted file mode 100644
index f3e4ddfd9307..000000000000
--- a/toolkit/test/accessibility/ov/StateSetView.java
+++ /dev/null
@@ -1,263 +0,0 @@
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed
- * with this work for additional information regarding copyright
- * ownership. The ASF licenses this file to you under the Apache
- * License, Version 2.0 (the "License"); you may not use this file
- * except in compliance with the License. You may obtain a copy of
- * the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-
-package ov;
-
-import java.awt.Color;
-import java.awt.Dimension;
-import java.awt.Graphics;
-import java.awt.Graphics2D;
-import java.awt.Insets;
-import java.awt.Rectangle;
-import java.awt.RenderingHints;
-import java.awt.event.MouseListener;
-import java.awt.event.MouseEvent;
-
-import java.awt.geom.AffineTransform;
-
-
-import javax.swing.JLabel;
-import com.sun.star.accessibility.AccessibleEventObject;
-import com.sun.star.accessibility.AccessibleEventId;
-import com.sun.star.accessibility.AccessibleStateType;
-import com.sun.star.accessibility.XAccessibleContext;
-import com.sun.star.accessibility.XAccessibleStateSet;
-
-import tools.NameProvider;
-
-public class StateSetView
- extends ListeningObjectView
- implements MouseListener
-{
- /** Create a FocusView when the given object supports the
- XAccessibleComponent interface.
- */
- static public ObjectView Create (
- ObjectViewContainer aContainer,
- XAccessibleContext xContext)
- {
- ObjectView aView = null;
- if (xContext != null)
- if (mnViewMode == SHOW_ALL_STATES)
- aView = StateSetAllView.Create (aContainer, xContext);
- else
- aView = StateSetSetView.Create (aContainer, xContext);
- return aView;
- }
-
- private StateSetView (ObjectViewContainer aContainer)
- {
- super (aContainer);
-
- addMouseListener (this);
- }
-
- private void SetViewMode (int nViewMode)
- {
- mnViewMode = nViewMode;
- switch (mnViewMode)
- {
- case SHOW_SET_STATES :
- maContainer.ReplaceView (
- getClass(),
- StateSetSetView.class);
- break;
- case SHOW_ALL_STATES :
- maContainer.ReplaceView (
- getClass(),
- StateSetAllView.class);
- break;
- }
- maContainer.SetObject (mxContext);
- }
-
-
-
- @Override
- public String GetTitle ()
- {
- return ("StateSet");
- }
-
- @Override
- public void notifyEvent (AccessibleEventObject aEvent)
- {
- if (aEvent.EventId == AccessibleEventId.STATE_CHANGED)
- Update();
- }
-
- public void mouseClicked(MouseEvent e)
- {
- switch (mnViewMode)
- {
- case SHOW_SET_STATES :
- SetViewMode (SHOW_ALL_STATES);
- break;
- case SHOW_ALL_STATES :
- SetViewMode (SHOW_SET_STATES);
- break;
- }
- }
- public void mouseEntered (MouseEvent e) {}
- public void mouseExited (MouseEvent e) {}
- public void mousePressed (MouseEvent e) {}
- public void mouseReleased(MouseEvent e) {}
-
- private final static int SHOW_SET_STATES = 0;
- private final static int SHOW_ALL_STATES = 1;
- private static int mnViewMode = SHOW_ALL_STATES;
-
-
-
-private static class StateSetAllView
- extends StateSetView
-{
- /** Create a FocusView when the given object supports the
- XAccessibleComponent interface.
- */
- static public ObjectView Create (
- ObjectViewContainer aContainer,
- XAccessibleContext xContext)
- {
- if (xContext != null)
- return new StateSetAllView (aContainer);
- else
- return null;
- }
-
- private StateSetAllView (ObjectViewContainer aContainer)
- {
- super (aContainer);
-
- setPreferredSize (new Dimension(300,90));
- setMinimumSize (new Dimension(200,80));
- }
-
- @Override
- public void paintChildren (Graphics g)
- {
- synchronized (g)
- {
- super.paintChildren (g);
-
- // Calculcate the are inside the border.
- Insets aInsets = getInsets ();
- Dimension aSize = getSize();
- Rectangle aWidgetArea = new Rectangle (
- aInsets.left,
- aInsets.top,
- aSize.width-aInsets.left-aInsets.right,
- aSize.height-aInsets.top-aInsets.bottom);
-
- PaintAllStates ((Graphics2D)g, aWidgetArea);
- }
- }
-
- private void PaintAllStates (Graphics2D g, Rectangle aWidgetArea)
- {
- Color aTextColor = g.getColor();
-
- g.setRenderingHint (
- RenderingHints.KEY_ANTIALIASING,
- RenderingHints.VALUE_ANTIALIAS_ON);
-
- XAccessibleStateSet xStateSet = mxContext.getAccessibleStateSet();
- if (xStateSet != null)
- {
- final int nMaxStateIndex = AccessibleStateType.MANAGES_DESCENDANTS;
- int nStateWidth = (aWidgetArea.width-12) / (nMaxStateIndex+1);
- AffineTransform aTransform = g.getTransform ();
- g.setColor (aTextColor);
- int y = aWidgetArea.y+aWidgetArea.height - 12;
- double nTextRotation = -0.9;//-Math.PI/2;
- double nScale = 0.6;
-
- // Create a shape for the boxes.
- int nBoxWidth = nStateWidth-2;
- if (nBoxWidth > 8)
- nBoxWidth = 8;
- Rectangle aCheckBox = new Rectangle (-nBoxWidth/2,0,nBoxWidth,nBoxWidth);
-
- for (short i=0; i<=nMaxStateIndex; i++)
- {
- int x = nStateWidth + i * nStateWidth;
- String sStateName = NameProvider.getStateName (i);
- boolean bStateSet = xStateSet.contains (i);
- g.setTransform (aTransform);
- g.translate (x,y);
- if (bStateSet)
- {
- g.setColor (Color.GREEN);
- g.fill (aCheckBox);
- g.setColor (aTextColor);
- }
- g.draw (aCheckBox);
- g.rotate (nTextRotation);
- g.scale (nScale, nScale);
- g.translate (2,-2);
- g.drawString (sStateName, 0,0);
- }
- }
- }
-}
-
-
-private static class StateSetSetView
- extends StateSetView
-{
- static public ObjectView Create (
- ObjectViewContainer aContainer,
- XAccessibleContext xContext)
- {
- if (xContext != null)
- return new StateSetSetView (aContainer);
- else
- return null;
- }
-
- private StateSetSetView (ObjectViewContainer aContainer)
- {
- super (aContainer);
-
- maStates = null;
- setPreferredSize (new Dimension(300,90));
- }
-
-
- @Override
- synchronized public void Update ()
- {
- XAccessibleStateSet xStateSet = mxContext.getAccessibleStateSet();
- if (xStateSet != null)
- {
- String sStates = "";
- short aStates[] = xStateSet.getStates();
- for (int i=0; i<aStates.length; i++)
- {
- if (i > 0)
- sStates = sStates + ", ";
- sStates = sStates + NameProvider.getStateName(aStates[i]);
- }
- maStates.setText (sStates);
- }
- }
-
- private final JLabel maStates;
-}
-
-}