1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
22 #include "AccessibleCellBase.hxx"
26 namespace accessibility
28 class AccessibleTextHelper
;
31 class ScAccessiblePreviewCell
: public ScAccessibleCellBase
34 //===== internal ========================================================
35 ScAccessiblePreviewCell(
36 const css::uno::Reference
<css::accessibility::XAccessible
>& rxParent
,
37 ScPreviewShell
* pViewShell
, const ScAddress
& rCellAddress
, sal_Int32 nIndex
);
40 virtual ~ScAccessiblePreviewCell() override
;
42 using ScAccessibleCellBase::IsDefunc
;
45 using ScAccessibleCellBase::disposing
;
46 virtual void SAL_CALL
disposing() override
;
48 ///===== SfxListener =====================================================
50 virtual void Notify( SfxBroadcaster
& rBC
, const SfxHint
& rHint
) override
;
52 //===== XAccessibleComponent ============================================
54 virtual css::uno::Reference
< css::accessibility::XAccessible
> SAL_CALL
55 getAccessibleAtPoint( const css::awt::Point
& aPoint
) override
;
56 virtual void SAL_CALL
grabFocus() override
;
58 //===== XAccessibleContext ==============================================
60 // override to calculate this on demand
61 virtual sal_Int64 SAL_CALL
getAccessibleChildCount() override
;
62 virtual css::uno::Reference
< css::accessibility::XAccessible
> SAL_CALL
63 getAccessibleChild( sal_Int64 i
) override
;
65 virtual sal_Int64 SAL_CALL
getAccessibleStateSet() override
;
67 //===== XServiceInfo ====================================================
69 virtual OUString SAL_CALL
getImplementationName() override
;
70 virtual css::uno::Sequence
< OUString
> SAL_CALL
getSupportedServiceNames() override
;
72 ///===== XTypeProvider ===================================================
74 /** Returns an implementation id.
76 virtual css::uno::Sequence
<sal_Int8
> SAL_CALL
77 getImplementationId() override
;
80 virtual AbsoluteScreenPixelRectangle
GetBoundingBoxOnScreen() const override
;
81 virtual tools::Rectangle
GetBoundingBox() const override
;
84 ScPreviewShell
* mpViewShell
;
86 std::unique_ptr
<accessibility::AccessibleTextHelper
> mpTextHelper
;
88 bool IsDefunc(sal_Int64 nParentStates
);
89 virtual bool IsEditable(sal_Int64 nParentStates
) override
;
90 bool IsOpaque() const;
92 void CreateTextHelper();
96 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */