diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2008-04-15 12:10:39 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2008-04-15 12:10:39 +0000 |
commit | 000c8b037a0f4430ece53bcb124ed2354026bfd2 (patch) | |
tree | ab8805fac69eed291cd11b28f3118189c246cd12 | |
parent | c9e87e58dd438386b6c7ee8ffb91416a820be0a7 (diff) |
INTEGRATION: CWS aqua11y01 (1.1.2); FILE ADDED
2008/04/15 07:58:34 rt 1.1.2.2: Update license header to LGPL 3.
2008/02/21 10:46:25 obr 1.1.2.1: keep a reference on the currently focused object (needed for transient object like table cells)
-rw-r--r-- | vcl/aqua/source/a11y/aqua11yfocuslistener.hxx | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/vcl/aqua/source/a11y/aqua11yfocuslistener.hxx b/vcl/aqua/source/a11y/aqua11yfocuslistener.hxx new file mode 100644 index 000000000000..ce420820b0f5 --- /dev/null +++ b/vcl/aqua/source/a11y/aqua11yfocuslistener.hxx @@ -0,0 +1,66 @@ +/************************************************************************* + * + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * Copyright 2008 by Sun Microsystems, Inc. + * + * OpenOffice.org - a multi-platform office productivity suite + * + * $RCSfile: aqua11yfocuslistener.hxx,v $ + * + * $Revision: 1.2 $ + * + * This file is part of OpenOffice.org. + * + * 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. + * + * 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). + * + * 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. + * + ************************************************************************/ + +#ifndef _AQUA11YFOCUSLISTENER_HXX_ +#define _AQUA11YFOCUSLISTENER_HXX_ + +#include <salhelper/refobj.hxx> + +#include "keyboardfocuslistener.hxx" +#include "aquavcltypes.h" + +// #include <com/sun/star/accessibility/XAccessibleContext.hpp> + +class AquaA11yFocusListener : + public KeyboardFocusListener, + public salhelper::ReferenceObject +{ + id m_focusedObject; + + static rtl::Reference< AquaA11yFocusListener > theListener; + + AquaA11yFocusListener::AquaA11yFocusListener(); + virtual AquaA11yFocusListener::~AquaA11yFocusListener() {}; +public: + + static rtl::Reference< AquaA11yFocusListener > get(); + + id getFocusedUIElement(); + + // KeyboardFocusListener + virtual void SAL_CALL focusedObjectChanged(const ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible >& xAccessible); + + // rtl::IReference + virtual oslInterlockedCount SAL_CALL acquire() SAL_THROW(()); + virtual oslInterlockedCount SAL_CALL release() SAL_THROW(()); +}; + +#endif // _AQUA11YFOCUSLISTENER_HXX_
\ No newline at end of file |