2002-04-09 06:03:15 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-11 00:28:13 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2002-04-09 06:03:15 +00:00
|
|
|
*
|
2008-04-11 00:28:13 +00:00
|
|
|
* Copyright 2008 by Sun Microsystems, Inc.
|
2002-04-09 06:03:15 +00:00
|
|
|
*
|
2008-04-11 00:28:13 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2002-04-09 06:03:15 +00:00
|
|
|
*
|
2008-04-11 00:28:13 +00:00
|
|
|
* $RCSfile: GraphCtlAccessibleContext.hxx,v $
|
|
|
|
* $Revision: 1.14 $
|
2002-04-09 06:03:15 +00:00
|
|
|
*
|
2008-04-11 00:28:13 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2002-04-09 06:03:15 +00:00
|
|
|
*
|
2008-04-11 00:28:13 +00:00
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
2002-04-09 06:03:15 +00:00
|
|
|
*
|
2008-04-11 00:28:13 +00:00
|
|
|
* OpenOffice.org is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Lesser General Public License version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
2002-04-09 06:03:15 +00:00
|
|
|
*
|
2008-04-11 00:28:13 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
2002-04-09 06:03:15 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef _SVXGRAPHACCESSIBLECONTEXT_HXX
|
|
|
|
#define _SVXGRAPHACCESSIBLECONTEXT_HXX
|
|
|
|
|
2002-04-18 10:41:38 +00:00
|
|
|
#ifndef _CPPUHELPER_IMPLBASE7_HXX_
|
|
|
|
#include <cppuhelper/compbase7.hxx>
|
2002-04-09 06:03:15 +00:00
|
|
|
#endif
|
|
|
|
#include <com/sun/star/uno/Reference.hxx>
|
2003-04-24 15:58:44 +00:00
|
|
|
#include <com/sun/star/accessibility/XAccessible.hpp>
|
|
|
|
#include <com/sun/star/accessibility/XAccessibleComponent.hpp>
|
|
|
|
#include <com/sun/star/accessibility/XAccessibleContext.hpp>
|
|
|
|
#include <com/sun/star/accessibility/XAccessibleEventBroadcaster.hpp>
|
|
|
|
#ifndef _COM_SUN_STAR_ACCESSIBILITY_IllegalAccessibleComponentStateException_HPP_
|
|
|
|
#include <com/sun/star/accessibility/IllegalAccessibleComponentStateException.hpp>
|
2002-04-09 06:03:15 +00:00
|
|
|
#endif
|
2003-04-24 15:58:44 +00:00
|
|
|
#include <com/sun/star/accessibility/XAccessibleSelection.hpp>
|
2002-04-09 06:03:15 +00:00
|
|
|
#include <com/sun/star/beans/XPropertyChangeListener.hpp>
|
|
|
|
#include <cppuhelper/weak.hxx>
|
|
|
|
#include <com/sun/star/lang/XServiceInfo.hpp>
|
|
|
|
#include <com/sun/star/lang/XTypeProvider.hpp>
|
|
|
|
#include <com/sun/star/lang/XServiceName.hpp>
|
|
|
|
#include <com/sun/star/lang/IndexOutOfBoundsException.hpp>
|
|
|
|
#include <vos/mutex.hxx>
|
|
|
|
#include <comphelper/broadcasthelper.hxx>
|
|
|
|
#include <svtools/lstner.hxx>
|
|
|
|
|
|
|
|
#include <set>
|
|
|
|
#include <map>
|
|
|
|
|
|
|
|
#include <unotools/servicehelper.hxx>
|
2007-06-27 17:21:20 +00:00
|
|
|
#include <svx/rectenum.hxx>
|
|
|
|
#include <svx/AccessibleShapeTreeInfo.hxx>
|
|
|
|
#include <svx/IAccessibleViewForwarder.hxx>
|
|
|
|
#include <svx/AccessibleShape.hxx>
|
2002-04-09 06:03:15 +00:00
|
|
|
|
|
|
|
namespace com { namespace sun { namespace star { namespace awt {
|
|
|
|
struct Point;
|
|
|
|
struct Rectangle;
|
|
|
|
struct Size;
|
|
|
|
class XFocusListener;
|
2006-06-19 15:03:50 +00:00
|
|
|
} } } }
|
2002-04-09 06:03:15 +00:00
|
|
|
|
|
|
|
class Rectangle;
|
|
|
|
class GraphCtrl;
|
|
|
|
class Window;
|
|
|
|
class SdrObject;
|
|
|
|
class SdrModel;
|
|
|
|
class SdrPage;
|
|
|
|
class SdrView;
|
|
|
|
|
|
|
|
/** @descr
|
|
|
|
This base class provides an implementation of the
|
|
|
|
<code>AccessibleContext</code> service.
|
|
|
|
*/
|
|
|
|
|
2002-04-18 10:41:38 +00:00
|
|
|
typedef ::cppu::WeakAggComponentImplHelper7<
|
2003-04-24 15:58:44 +00:00
|
|
|
::com::sun::star::accessibility::XAccessible,
|
|
|
|
::com::sun::star::accessibility::XAccessibleComponent,
|
|
|
|
::com::sun::star::accessibility::XAccessibleContext,
|
|
|
|
::com::sun::star::accessibility::XAccessibleEventBroadcaster,
|
|
|
|
::com::sun::star::accessibility::XAccessibleSelection,
|
2002-04-09 06:03:15 +00:00
|
|
|
::com::sun::star::lang::XServiceInfo,
|
|
|
|
::com::sun::star::lang::XServiceName >
|
|
|
|
SvxGraphCtrlAccessibleContext_Base;
|
|
|
|
|
2002-04-18 10:41:38 +00:00
|
|
|
class SvxGraphCtrlAccessibleContext : public SvxGraphCtrlAccessibleContext_Base, ::comphelper::OBaseMutex, SfxListener, ::accessibility::IAccessibleViewForwarder
|
2002-04-09 06:03:15 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
friend class GraphCtrl;
|
|
|
|
|
|
|
|
//===== internal ========================================================
|
|
|
|
SvxGraphCtrlAccessibleContext(
|
2003-04-24 15:58:44 +00:00
|
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible>& rxParent,
|
2002-04-09 06:03:15 +00:00
|
|
|
GraphCtrl& rRepresentation,
|
|
|
|
const ::rtl::OUString* pName = NULL,
|
|
|
|
const ::rtl::OUString* pDescription = NULL );
|
|
|
|
|
|
|
|
void Notify( SfxBroadcaster& aBC, const SfxHint& aHint );
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual ~SvxGraphCtrlAccessibleContext();
|
|
|
|
public:
|
|
|
|
//===== XAccessible =====================================================
|
|
|
|
|
|
|
|
/// Return the XAccessibleContext.
|
2003-04-24 15:58:44 +00:00
|
|
|
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleContext> SAL_CALL
|
2002-04-09 06:03:15 +00:00
|
|
|
getAccessibleContext (void) throw (::com::sun::star::uno::RuntimeException);
|
|
|
|
|
|
|
|
//===== XAccessibleComponent ============================================
|
|
|
|
|
2003-04-24 15:58:44 +00:00
|
|
|
virtual sal_Bool SAL_CALL containsPoint( const ::com::sun::star::awt::Point& rPoint ) throw (::com::sun::star::uno::RuntimeException);
|
|
|
|
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > SAL_CALL getAccessibleAtPoint( const ::com::sun::star::awt::Point& rPoint ) throw (::com::sun::star::uno::RuntimeException);
|
2002-04-18 10:41:38 +00:00
|
|
|
virtual ::com::sun::star::awt::Rectangle SAL_CALL getBounds() throw (::com::sun::star::uno::RuntimeException);
|
|
|
|
virtual ::com::sun::star::awt::Point SAL_CALL getLocation() throw (::com::sun::star::uno::RuntimeException);
|
|
|
|
virtual ::com::sun::star::awt::Point SAL_CALL getLocationOnScreen() throw (::com::sun::star::uno::RuntimeException);
|
|
|
|
virtual ::com::sun::star::awt::Size SAL_CALL getSize() throw (::com::sun::star::uno::RuntimeException);
|
|
|
|
virtual void SAL_CALL addFocusListener( const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XFocusListener >& xListener ) throw (::com::sun::star::uno::RuntimeException);
|
|
|
|
virtual void SAL_CALL removeFocusListener( const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XFocusListener >& xListener ) throw (::com::sun::star::uno::RuntimeException);
|
|
|
|
virtual void SAL_CALL grabFocus() throw (::com::sun::star::uno::RuntimeException);
|
|
|
|
virtual ::com::sun::star::uno::Any SAL_CALL getAccessibleKeyBinding() throw (::com::sun::star::uno::RuntimeException);
|
2002-04-09 06:03:15 +00:00
|
|
|
|
2002-10-23 08:48:39 +00:00
|
|
|
virtual sal_Int32 SAL_CALL getForeground (void)
|
|
|
|
throw (::com::sun::star::uno::RuntimeException);
|
|
|
|
|
|
|
|
virtual sal_Int32 SAL_CALL getBackground (void)
|
|
|
|
throw (::com::sun::star::uno::RuntimeException);
|
|
|
|
|
|
|
|
|
2002-04-09 06:03:15 +00:00
|
|
|
//===== XAccessibleContext ==============================================
|
|
|
|
|
2006-04-19 12:50:25 +00:00
|
|
|
virtual sal_Int32 SAL_CALL getAccessibleChildCount (void) throw (::com::sun::star::uno::RuntimeException);
|
|
|
|
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible> SAL_CALL getAccessibleChild (sal_Int32 nIndex) throw (::com::sun::star::uno::RuntimeException, ::com::sun::star::lang::IndexOutOfBoundsException);
|
2003-04-24 15:58:44 +00:00
|
|
|
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible> SAL_CALL getAccessibleParent (void) throw (::com::sun::star::uno::RuntimeException);
|
2002-04-18 10:41:38 +00:00
|
|
|
virtual sal_Int32 SAL_CALL getAccessibleIndexInParent (void) throw (::com::sun::star::uno::RuntimeException);
|
|
|
|
virtual sal_Int16 SAL_CALL getAccessibleRole (void) throw (::com::sun::star::uno::RuntimeException);
|
|
|
|
virtual ::rtl::OUString SAL_CALL getAccessibleDescription (void) throw (::com::sun::star::uno::RuntimeException);
|
|
|
|
virtual ::rtl::OUString SAL_CALL getAccessibleName (void) throw (::com::sun::star::uno::RuntimeException);
|
2003-04-24 15:58:44 +00:00
|
|
|
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleRelationSet> SAL_CALL getAccessibleRelationSet (void) throw (::com::sun::star::uno::RuntimeException);
|
|
|
|
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleStateSet> SAL_CALL getAccessibleStateSet (void) throw (::com::sun::star::uno::RuntimeException);
|
|
|
|
virtual ::com::sun::star::lang::Locale SAL_CALL getLocale (void) throw (::com::sun::star::uno::RuntimeException, ::com::sun::star::accessibility::IllegalAccessibleComponentStateException);
|
2006-06-19 15:03:50 +00:00
|
|
|
// virtual void SAL_CALL addPropertyChangeListener( const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertyChangeListener >& xListener ) throw (::com::sun::star::uno::RuntimeException) {}
|
|
|
|
// virtual void SAL_CALL removePropertyChangeListener( const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertyChangeListener >& xListener ) throw (::com::sun::star::uno::RuntimeException) {}
|
|
|
|
|
|
|
|
//===== XComponent ========================================================
|
|
|
|
|
|
|
|
using ::cppu::WeakAggComponentImplHelperBase::addEventListener;
|
|
|
|
using ::cppu::WeakAggComponentImplHelperBase::removeEventListener;
|
2002-04-09 06:03:15 +00:00
|
|
|
|
|
|
|
//===== XAccessibleEventBroadcaster =====================================
|
|
|
|
|
2003-04-24 15:58:44 +00:00
|
|
|
virtual void SAL_CALL addEventListener( const ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleEventListener>& xListener) throw (com::sun::star::uno::RuntimeException);
|
|
|
|
virtual void SAL_CALL removeEventListener( const ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleEventListener>& xListener) throw (com::sun::star::uno::RuntimeException);
|
2002-04-09 06:03:15 +00:00
|
|
|
|
|
|
|
//===== XServiceInfo ====================================================
|
|
|
|
|
2002-04-18 10:41:38 +00:00
|
|
|
virtual ::rtl::OUString SAL_CALL getImplementationName (void) throw (::com::sun::star::uno::RuntimeException);
|
|
|
|
virtual sal_Bool SAL_CALL supportsService (const ::rtl::OUString& sServiceName) throw (::com::sun::star::uno::RuntimeException);
|
|
|
|
virtual ::com::sun::star::uno::Sequence< ::rtl::OUString> SAL_CALL getSupportedServiceNames (void) throw (::com::sun::star::uno::RuntimeException);
|
2002-04-09 06:03:15 +00:00
|
|
|
|
|
|
|
//===== XTypeProvider ===================================================
|
|
|
|
|
2002-04-18 10:41:38 +00:00
|
|
|
virtual ::com::sun::star::uno::Sequence<sal_Int8> SAL_CALL getImplementationId (void) throw (::com::sun::star::uno::RuntimeException);
|
2002-04-09 06:03:15 +00:00
|
|
|
|
|
|
|
//===== XServiceName ====================================================
|
|
|
|
|
2002-04-18 10:41:38 +00:00
|
|
|
virtual ::rtl::OUString SAL_CALL getServiceName (void) throw (::com::sun::star::uno::RuntimeException);
|
2002-04-09 06:03:15 +00:00
|
|
|
|
|
|
|
//===== XAccessibleSelection =============================================
|
|
|
|
|
|
|
|
virtual void SAL_CALL selectAccessibleChild( sal_Int32 nChildIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException );
|
|
|
|
virtual sal_Bool SAL_CALL isAccessibleChildSelected( sal_Int32 nChildIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException );
|
|
|
|
virtual void SAL_CALL clearAccessibleSelection() throw (::com::sun::star::uno::RuntimeException );
|
2003-05-22 11:55:09 +00:00
|
|
|
virtual void SAL_CALL selectAllAccessibleChildren() throw (::com::sun::star::uno::RuntimeException );
|
2002-04-09 06:03:15 +00:00
|
|
|
virtual sal_Int32 SAL_CALL getSelectedAccessibleChildCount() throw (::com::sun::star::uno::RuntimeException );
|
2003-04-24 15:58:44 +00:00
|
|
|
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > SAL_CALL getSelectedAccessibleChild( sal_Int32 nSelectedChildIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException );
|
|
|
|
virtual void SAL_CALL deselectAccessibleChild( sal_Int32 nSelectedChildIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException );
|
2002-04-09 06:03:15 +00:00
|
|
|
|
2002-04-18 10:41:38 +00:00
|
|
|
//===== IAccessibleViewforwarder ========================================
|
|
|
|
|
|
|
|
virtual BOOL IsValid (void) const;
|
|
|
|
virtual Rectangle GetVisibleArea() const;
|
|
|
|
virtual Point LogicToPixel (const Point& rPoint) const;
|
|
|
|
virtual Size LogicToPixel (const Size& rSize) const;
|
|
|
|
virtual Point PixelToLogic (const Point& rPoint) const;
|
|
|
|
virtual Size PixelToLogic (const Size& rSize) const;
|
|
|
|
|
2002-04-09 06:03:15 +00:00
|
|
|
protected:
|
|
|
|
//===== internals ========================================================
|
|
|
|
|
|
|
|
void checkChildIndex( long nIndexOfChild ) throw (::com::sun::star::lang::IndexOutOfBoundsException );
|
|
|
|
void checkChildIndexOnSelection( long nIndexOfChild ) throw (::com::sun::star::lang::IndexOutOfBoundsException );
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
/// Sets the name
|
|
|
|
void setName( const ::rtl::OUString& rName );
|
|
|
|
|
|
|
|
/// Sets the description
|
|
|
|
void setDescription( const ::rtl::OUString& rDescr );
|
2003-06-26 10:10:37 +00:00
|
|
|
|
|
|
|
/** This method is used by the graph control to tell the
|
|
|
|
accessibility object about a new model and view.
|
|
|
|
*/
|
|
|
|
void setModelAndView (SdrModel* pModel, SdrView* pView);
|
|
|
|
|
2002-04-09 06:03:15 +00:00
|
|
|
private:
|
|
|
|
static ::com::sun::star::uno::Sequence< sal_Int8 > getUniqueId( void );
|
|
|
|
protected:
|
|
|
|
|
2002-09-12 08:43:17 +00:00
|
|
|
/** Return the object's current bounding box relative to the desktop,
|
|
|
|
i.e in absolute pixel coordinates.
|
|
|
|
@return
|
|
|
|
The returned rectangle is a bounding box of the object given in
|
|
|
|
absolute screen coordinates.
|
|
|
|
@raise DisposedException
|
|
|
|
When the object is already disposed then a
|
|
|
|
<type>DisposedException</type> is thrown.
|
|
|
|
*/
|
2002-04-18 10:41:38 +00:00
|
|
|
virtual Rectangle GetBoundingBoxOnScreen(void) throw (::com::sun::star::uno::RuntimeException);
|
2002-04-09 06:03:15 +00:00
|
|
|
|
|
|
|
/// Return the object's current bounding box relative to the parent object.
|
2002-04-18 10:41:38 +00:00
|
|
|
virtual Rectangle GetBoundingBox(void) throw (::com::sun::star::uno::RuntimeException);
|
2002-04-09 06:03:15 +00:00
|
|
|
|
|
|
|
virtual void SAL_CALL disposing();
|
|
|
|
|
|
|
|
private:
|
|
|
|
SdrObject* getSdrObject( sal_Int32 nIndex )
|
|
|
|
throw( ::com::sun::star::uno::RuntimeException, ::com::sun::star::lang::IndexOutOfBoundsException );
|
|
|
|
|
2002-04-18 10:41:38 +00:00
|
|
|
void CommitChange (sal_Int16 aEventId, const ::com::sun::star::uno::Any& rNewValue, const ::com::sun::star::uno::Any& rOldValue);
|
2003-04-24 15:58:44 +00:00
|
|
|
void FireEvent (const ::com::sun::star::accessibility::AccessibleEventObject& aEvent);
|
2002-04-09 06:03:15 +00:00
|
|
|
|
2003-04-24 15:58:44 +00:00
|
|
|
::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > SAL_CALL getAccessible( const SdrObject* pObj );
|
2002-04-09 06:03:15 +00:00
|
|
|
|
|
|
|
accessibility::AccessibleShapeTreeInfo maTreeInfo;
|
|
|
|
|
|
|
|
/// Reference to the parent object.
|
|
|
|
::com::sun::star::uno::Reference<
|
2003-04-24 15:58:44 +00:00
|
|
|
::com::sun::star::accessibility::XAccessible> mxParent;
|
2002-04-09 06:03:15 +00:00
|
|
|
|
|
|
|
/** Description of this object. This is not a constant because it can
|
|
|
|
be set from the outside.
|
|
|
|
*/
|
|
|
|
::rtl::OUString msDescription;
|
|
|
|
|
|
|
|
/** Name of this object.
|
|
|
|
*/
|
|
|
|
::rtl::OUString msName;
|
|
|
|
|
|
|
|
/// map of accessible shapes
|
|
|
|
struct SdrObjectCompareLess
|
|
|
|
{
|
|
|
|
bool operator()(const SdrObject* p1, const SdrObject* p2) const
|
|
|
|
{
|
|
|
|
return p1 < p2;
|
|
|
|
}
|
|
|
|
};
|
2002-04-18 10:41:38 +00:00
|
|
|
typedef ::std::map< const SdrObject*, ::accessibility::AccessibleShape*, SdrObjectCompareLess > ShapesMapType;
|
2002-04-09 06:03:15 +00:00
|
|
|
ShapesMapType mxShapes;
|
|
|
|
|
|
|
|
GraphCtrl* mpControl;
|
|
|
|
|
|
|
|
SdrModel* mpModel;
|
|
|
|
SdrPage* mpPage;
|
|
|
|
SdrView* mpView;
|
|
|
|
|
2003-03-27 14:06:05 +00:00
|
|
|
/// client id in the AccessibleEventNotifier queue
|
|
|
|
sal_uInt32 mnClientId;
|
|
|
|
|
2002-04-09 06:03:15 +00:00
|
|
|
sal_Bool mbDisposed;
|
|
|
|
};
|
|
|
|
|
2002-04-10 08:45:49 +00:00
|
|
|
#endif
|
|
|
|
|