AccessibleSpreadsheet.hxx (4b4244d8) | AccessibleSpreadsheet.hxx (4937ceef) |
---|---|
1/************************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance --- 14 unchanged lines hidden (view full) --- 23 24 25#ifndef _SC_ACCESSIBLESPREADSHEET_HXX 26#define _SC_ACCESSIBLESPREADSHEET_HXX 27 28#include "AccessibleTableBase.hxx" 29#include "viewdata.hxx" 30 | 1/************************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance --- 14 unchanged lines hidden (view full) --- 23 24 25#ifndef _SC_ACCESSIBLESPREADSHEET_HXX 26#define _SC_ACCESSIBLESPREADSHEET_HXX 27 28#include "AccessibleTableBase.hxx" 29#include "viewdata.hxx" 30 |
31#include <com/sun/star/ucb/CommandFailedException.hpp> 32#include <com/sun/star/ucb/ContentCreationException.hpp> 33 | |
34#include <vector> 35 36#include "rangelst.hxx" 37#include <map> 38class ScMyAddress : public ScAddress 39{ 40public: 41 ScMyAddress() : ScAddress() {} --- 199 unchanged lines hidden (view full) --- 241 */ 242 virtual void SAL_CALL 243 addEventListener( 244 const ::com::sun::star::uno::Reference< 245 ::com::sun::star::accessibility::XAccessibleEventListener>& xListener) 246 throw (com::sun::star::uno::RuntimeException); 247 //===== XAccessibleTableSelection ============================================ 248 virtual sal_Bool SAL_CALL selectRow( sal_Int32 row ) | 31#include <vector> 32 33#include "rangelst.hxx" 34#include <map> 35class ScMyAddress : public ScAddress 36{ 37public: 38 ScMyAddress() : ScAddress() {} --- 199 unchanged lines hidden (view full) --- 238 */ 239 virtual void SAL_CALL 240 addEventListener( 241 const ::com::sun::star::uno::Reference< 242 ::com::sun::star::accessibility::XAccessibleEventListener>& xListener) 243 throw (com::sun::star::uno::RuntimeException); 244 //===== XAccessibleTableSelection ============================================ 245 virtual sal_Bool SAL_CALL selectRow( sal_Int32 row ) |
249 throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException, ::com::sun::star::ucb::CommandFailedException, com::sun::star::ucb::ContentCreationException) ; | 246 throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException) ; |
250 virtual sal_Bool SAL_CALL selectColumn( sal_Int32 column ) | 247 virtual sal_Bool SAL_CALL selectColumn( sal_Int32 column ) |
251 throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException, ::com::sun::star::ucb::CommandFailedException, com::sun::star::ucb::ContentCreationException) ; | 248 throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException) ; |
252 virtual sal_Bool SAL_CALL unselectRow( sal_Int32 row ) | 249 virtual sal_Bool SAL_CALL unselectRow( sal_Int32 row ) |
253 throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException, ::com::sun::star::ucb::CommandFailedException, com::sun::star::ucb::ContentCreationException) ; | 250 throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException) ; |
254 virtual sal_Bool SAL_CALL unselectColumn( sal_Int32 column ) | 251 virtual sal_Bool SAL_CALL unselectColumn( sal_Int32 column ) |
255 throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException, ::com::sun::star::ucb::CommandFailedException, com::sun::star::ucb::ContentCreationException) ; | 252 throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException) ; |
256 257protected: 258 /// Return the object's current bounding box relative to the desktop. 259 virtual Rectangle GetBoundingBoxOnScreen(void) const 260 throw (::com::sun::star::uno::RuntimeException); 261 262 /// Return the object's current bounding box relative to the parent object. 263 virtual Rectangle GetBoundingBox(void) const --- 83 unchanged lines hidden --- | 253 254protected: 255 /// Return the object's current bounding box relative to the desktop. 256 virtual Rectangle GetBoundingBoxOnScreen(void) const 257 throw (::com::sun::star::uno::RuntimeException); 258 259 /// Return the object's current bounding box relative to the parent object. 260 virtual Rectangle GetBoundingBox(void) const --- 83 unchanged lines hidden --- |