Impressum AccessibleEditableTextPara.hxx
Sprache: C
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
class SvxViewForwarder; class MapMode; class SvxAccessibleTextAdapter; class SvxAccessibleTextEditViewAdapter; namespace accessibility { class AccessibleImageBullet; }
namespace accessibility
{
class AccessibleParaManager;
/** This class implements the actual text paragraphs for the EditEngine/Outliner UAA
*/ class UNLESS_MERGELIBS(EDITENG_DLLPUBLIC) AccessibleEditableTextPara final
: public cppu::ImplInheritanceHelper<
comphelper::OAccessibleComponentHelper, css::accessibility::XAccessible,
css::accessibility::XAccessibleEditableText,
css::accessibility::XAccessibleTextAttributes, css::accessibility::XAccessibleHypertext,
css::accessibility::XAccessibleMultiLineText, css::lang::XServiceInfo>, private ::comphelper::OCommonAccessibleText
{
public: /// Create accessible object for given parent // #i27138# // - add parameter <_pParaManager> (default value NULL) // This has to be the instance of <AccessibleParaManager>, which // created and manages this accessible paragraph.
AccessibleEditableTextPara ( css::uno::Reference< css::accessibility::XAccessible > xParent, const AccessibleParaManager* _pParaManager = nullptr );
/** Set the current index in the accessibility parent
@attention This method does not lock the SolarMutex, leaving that to the calling code. This is because only there potential deadlock situations can be resolved. Thus, make sure SolarMutex is locked when calling this.
*/ void SetIndexInParent( sal_Int32 nIndex );
/** Get the current index in the accessibility parent
@attention This method does not lock the SolarMutex, leaving that to the calling code. This is because only there potential deadlock situations can be resolved. Thus, make sure SolarMutex is locked when calling this.
*/
sal_Int32 GetIndexInParent() const { return mnIndexInParent; }
/** Set the current paragraph number
@attention This method does not lock the SolarMutex, leaving that to the calling code. This is because only there potential deadlock situations can be resolved. Thus, make sure SolarMutex is locked when calling this.
*/ void SetParagraphIndex( sal_Int32 nIndex );
/** Query the current paragraph number (0 - nParas-1)
@attention This method does not lock the SolarMutex, leaving that to the calling code. This is because only there potential deadlock situations can be resolved. Thus, make sure SolarMutex is locked when calling this.
*/
sal_Int32 GetParagraphIndex() const { return mnParagraphIndex; }
/** Set the edit engine offset
@attention This method does not lock the SolarMutex, leaving that to the calling code. This is because only there potential deadlock situations can be resolved. Thus, make sure SolarMutex is locked when calling this.
*/ void SetEEOffset( const Point& rOffset );
/** Set the EditEngine offset
@attention This method does not lock the SolarMutex, leaving that to the calling code. This is because only there potential deadlock situations can be resolved. Thus, make sure SolarMutex is locked when calling this.
*/ void SetEditSource( SvxEditSourceAdapter* pEditSource );
void SAL_CALL dispose() override;
/// Calls all Listener objects to tell them the change. Don't hold locks when calling this! void FireEvent(const sal_Int16 nEventId, const css::uno::Any& rNewValue = css::uno::Any(), const css::uno::Any& rOldValue = css::uno::Any());
/// Sets the given state on the internal state set and fires STATE_CHANGE event. Don't hold locks when calling this! void SetState( const sal_Int64 nStateId ); /// Unsets the given state on the internal state set and fires STATE_CHANGE event. Don't hold locks when calling this! void UnSetState( const sal_Int64 nStateId );
/** Query the SvxTextForwarder for EditEngine access.
@attention This method does not lock the SolarMutex, leaving that to the calling code. This is because only there potential deadlock situations can be resolved. Thus, make sure SolarMutex is locked when calling this.
*/
SvxAccessibleTextAdapter& GetTextForwarder() const;
/** Query the SvxViewForwarder for EditEngine access.
@attention This method does not lock the SolarMutex, leaving that to the calling code. This is because only there potential deadlock situations can be resolved. Thus, make sure SolarMutex is locked when calling this.
*/
SvxViewForwarder& GetViewForwarder() const;
/** Query whether a GetEditViewForwarder( sal_False ) will return a forwarder
@attention This method does not lock the SolarMutex, leaving that to the calling code. This is because only there potential deadlock situations can be resolved. Thus, make sure SolarMutex is locked when calling this.
*/ bool HaveEditView() const;
/** Query the SvxEditViewForwarder for EditEngine access.
@attention This method does not lock the SolarMutex, leaving that to the calling code. This is because only there potential deadlock situations can be resolved. Thus, make sure SolarMutex is locked when calling this.
*/
SvxAccessibleTextEditViewAdapter& GetEditViewForwarder( bool bCreate = false ) const;
/** Send a TEXT_CHANGED event for this paragraph
This method internally caters for calculating text differences, and sends the appropriate Anys in the Accessibility::TEXT_CHANGED event
*/ void TextChanged();
/** Calculate character range of similar attributes
@param nStartIndex Therein, the start of the character range with the same attributes is returned
@param nEndIndex Therein, the end (exclusively) of the character range with the same attributes is returned
@param nIndex The character index at where to look for similar character attributes
@return false, if the method was not able to determine the range
*/ bool GetAttributeRun( sal_Int32& nStartIndex, sal_Int32& nEndIndex, sal_Int32 nIndex );
/// Do we have children? This is the case for image bullets bool HaveChildren();
/// If there is a bullet, return it's text length, otherwise return 0
sal_Int32 GetBulletTextLength() const;
void _correctValues( css::uno::Sequence< css::beans::PropertyValue >& rValues );
sal_Int32 SkipField(sal_Int32 nIndex, bool bForward); // get overlapped field, extend return string. Only extend forward for now void ExtendByField( css::accessibility::TextSegment& Segment );
OUString GetFieldTypeNameAtIndex(sal_Int32 nIndex); // the paragraph index in the edit engine (guarded by solar mutex)
sal_Int32 mnParagraphIndex;
// our current index in the parent (guarded by solar mutex)
sal_Int32 mnIndexInParent;
// the current edit source (guarded by solar mutex)
SvxEditSourceAdapter* mpEditSource;
// the possible child (for image bullets, guarded by solar mutex)
unotools::WeakReference<AccessibleImageBullet> maImageBullet;
// the last string used for an Accessibility::TEXT_CHANGED event (guarded by solar mutex)
OUString maLastTextString;
// the offset of the underlying EditEngine from the shape/cell (guarded by solar mutex)
Point maEEOffset;
// the current state set (updated from SetState/UnSetState and guarded by solar mutex)
sal_Int64 mnStateSet;
/// The shape we're the accessible for (unguarded)
css::uno::Reference< css::accessibility::XAccessible > mxParent;
private: // Text paragraphs should provide FLOWS_TO and FLOWS_FROM relations (#i27138#) // the paragraph manager, which created this instance - is NULL, if // instance isn't created by AccessibleParaManager. // Needed for method <getAccessibleRelationSet()> to retrieve predecessor // paragraph and the successor paragraph. const AccessibleParaManager* mpParaManager;
};
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.