diff options
author | Ocke Janssen <oj@openoffice.org> | 2002-02-11 11:51:03 +0000 |
---|---|---|
committer | Ocke Janssen <oj@openoffice.org> | 2002-02-11 11:51:03 +0000 |
commit | 0a1a6db1af099948ff9bcbf7b76d8548a25529df (patch) | |
tree | 82eda6f3c6eeabdda510c21a56dad74c7ec33354 /dbaccess/source/ui | |
parent | dd30e0edc12e37e8e76f0aa730a7d83939b9f753 (diff) |
#97314# changes for accessibilty
Diffstat (limited to 'dbaccess/source/ui')
-rw-r--r-- | dbaccess/source/ui/inc/AccessibleBaseIFace.hxx | 6 | ||||
-rw-r--r-- | dbaccess/source/ui/inc/JAccess.hxx | 6 | ||||
-rw-r--r-- | dbaccess/source/ui/inc/TableConnection.hxx | 6 | ||||
-rw-r--r-- | dbaccess/source/ui/inc/brwview.hxx | 14 | ||||
-rw-r--r-- | dbaccess/source/ui/querydesign/JAccess.cxx | 6 | ||||
-rw-r--r-- | dbaccess/source/ui/querydesign/TableWindowAccess.cxx | 6 |
6 files changed, 26 insertions, 18 deletions
diff --git a/dbaccess/source/ui/inc/AccessibleBaseIFace.hxx b/dbaccess/source/ui/inc/AccessibleBaseIFace.hxx index 385d441be738..925184d686b0 100644 --- a/dbaccess/source/ui/inc/AccessibleBaseIFace.hxx +++ b/dbaccess/source/ui/inc/AccessibleBaseIFace.hxx @@ -2,9 +2,9 @@ * * $RCSfile: AccessibleBaseIFace.hxx,v $ * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: oj $ $Date: 2002-02-08 09:10:00 $ + * last change: $Author: oj $ $Date: 2002-02-11 12:42:09 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -80,7 +80,7 @@ namespace dbaui @param _aOldValue the old value @param _aNewValue the new value */ - virtual void notifyAccesibleEvent( sal_Int16 _nEventId, + virtual void notifyAccessibleEvent( sal_Int16 _nEventId, const ::com::sun::star::uno::Any& _aOldValue, const ::com::sun::star::uno::Any& _aNewValue) = 0; }; diff --git a/dbaccess/source/ui/inc/JAccess.hxx b/dbaccess/source/ui/inc/JAccess.hxx index d663be5db3fe..e799fc095107 100644 --- a/dbaccess/source/ui/inc/JAccess.hxx +++ b/dbaccess/source/ui/inc/JAccess.hxx @@ -2,9 +2,9 @@ * * $RCSfile: JAccess.hxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: oj $ $Date: 2002-02-08 08:56:33 $ + * last change: $Author: oj $ $Date: 2002-02-11 12:42:09 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -93,7 +93,7 @@ namespace dbaui // XAccessibleContext virtual sal_Int32 SAL_CALL getAccessibleChildCount( ) throw (::com::sun::star::uno::RuntimeException); - virtual ::com::sun::star::uno::Reference< ::drafts::com::sun::star::accessibility::XAccessible > SAL_CALL getAccessibleChild( sal_Int32 i ) throw (::com::sun::star::uno::RuntimeException); + virtual ::com::sun::star::uno::Reference< ::drafts::com::sun::star::accessibility::XAccessible > SAL_CALL getAccessibleChild( sal_Int32 i ) throw (::com::sun::star::lang::IndexOutOfBoundsException,::com::sun::star::uno::RuntimeException); virtual sal_Int16 SAL_CALL getAccessibleRole( ) throw (::com::sun::star::uno::RuntimeException); OJoinTableView* getTableView() const { return m_pTableView; } diff --git a/dbaccess/source/ui/inc/TableConnection.hxx b/dbaccess/source/ui/inc/TableConnection.hxx index 892c6ab19247..fe7777091abd 100644 --- a/dbaccess/source/ui/inc/TableConnection.hxx +++ b/dbaccess/source/ui/inc/TableConnection.hxx @@ -2,9 +2,9 @@ * * $RCSfile: TableConnection.hxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: oj $ $Date: 2002-02-06 07:23:39 $ + * last change: $Author: oj $ $Date: 2002-02-11 12:46:04 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -93,7 +93,7 @@ namespace dbaui class OJoinTableView; class OConnectionLine; - DBG_NAMEEX(OTableConnection); + DBG_NAMEEX(OTableConnection) class OTableConnection { ::std::vector<OConnectionLine*> m_vConnLine; diff --git a/dbaccess/source/ui/inc/brwview.hxx b/dbaccess/source/ui/inc/brwview.hxx index 0f23c7fece2c..76be760dc07b 100644 --- a/dbaccess/source/ui/inc/brwview.hxx +++ b/dbaccess/source/ui/inc/brwview.hxx @@ -2,9 +2,9 @@ * * $RCSfile: brwview.hxx,v $ * - * $Revision: 1.7 $ + * $Revision: 1.8 $ * - * last change: $Author: fs $ $Date: 2001-08-23 14:23:57 $ + * last change: $Author: oj $ $Date: 2002-02-11 12:46:43 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -81,6 +81,12 @@ #include "dataview.hxx" #endif +namespace com { namespace sun { namespace star { namespace awt { + class XControl; + class XControlContainer; + class XControlModel; +}}}} + // ========================================================================= class ResMgr; class Splitter; @@ -108,7 +114,9 @@ namespace dbaui SbaGridControl* getVclControl() const { return m_pVclControl; } public: - UnoDataBrowserView(Window* pParent, const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& ); + UnoDataBrowserView( Window* pParent, + IController* _pController, + const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& ); virtual ~UnoDataBrowserView(); /// late construction diff --git a/dbaccess/source/ui/querydesign/JAccess.cxx b/dbaccess/source/ui/querydesign/JAccess.cxx index a91cf5e3af03..642e71e8656e 100644 --- a/dbaccess/source/ui/querydesign/JAccess.cxx +++ b/dbaccess/source/ui/querydesign/JAccess.cxx @@ -2,9 +2,9 @@ * * $RCSfile: JAccess.cxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: oj $ $Date: 2002-02-08 09:09:36 $ + * last change: $Author: oj $ $Date: 2002-02-11 12:51:03 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -119,7 +119,7 @@ namespace dbaui return nChildCount; } // ----------------------------------------------------------------------------- - Reference< XAccessible > SAL_CALL OJoinDesignViewAccess::getAccessibleChild( sal_Int32 i ) throw (RuntimeException) + Reference< XAccessible > SAL_CALL OJoinDesignViewAccess::getAccessibleChild( sal_Int32 i ) throw (IndexOutOfBoundsException,RuntimeException) { Reference< XAccessible > aRet; ::osl::MutexGuard aGuard( m_aMutex ); diff --git a/dbaccess/source/ui/querydesign/TableWindowAccess.cxx b/dbaccess/source/ui/querydesign/TableWindowAccess.cxx index 571f061fcfad..b938fd685512 100644 --- a/dbaccess/source/ui/querydesign/TableWindowAccess.cxx +++ b/dbaccess/source/ui/querydesign/TableWindowAccess.cxx @@ -2,9 +2,9 @@ * * $RCSfile: TableWindowAccess.cxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: oj $ $Date: 2002-02-08 09:09:36 $ + * last change: $Author: oj $ $Date: 2002-02-11 12:51:03 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -181,7 +181,7 @@ namespace dbaui // ----------------------------------------------------------------------------- sal_Int16 SAL_CALL OTableWindowAccess::getAccessibleRole( ) throw (RuntimeException) { - return AccessibleRole::LABEL; // ? or may be an AccessibleRole::WINDOW + return AccessibleRole::PANEL; // ? or may be an AccessibleRole::WINDOW } // ----------------------------------------------------------------------------- Reference< XAccessibleRelationSet > SAL_CALL OTableWindowAccess::getAccessibleRelationSet( ) throw (RuntimeException) |