efb4ad9071
Drop `AccObject::SetName` et al. taking a string param with the new a11y name to set in favor of using `AccObject::UpdateName` et al. that updates the a11y name by querying the current value from the underlying `XAccessible`. This makes it unnecessary to pass the new value around when a `AccessibleEventId::NAME_CHANGED` event is received, and the new name has to already be set on the a11y object at the point in time that the event is received. Change-Id: I1510bde22ef6d1271f6aeaffe245441cd9e11f19 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/172145 Reviewed-by: Michael Weghorn <m.weghorn@posteo.de> Tested-by: Jenkins
78 lines
2.8 KiB
C++
78 lines
2.8 KiB
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 .
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <com/sun/star/accessibility/XAccessibleEventListener.hpp>
|
|
#include <com/sun/star/accessibility/XAccessible.hpp>
|
|
|
|
#include <cppuhelper/implbase.hxx>
|
|
|
|
class AccObjectWinManager;
|
|
|
|
/**
|
|
* AccEventListener is the general event listener for all controls. It defines the
|
|
* procedure of all the event handling and provides the basic support for some simple
|
|
* methods.
|
|
*/
|
|
class AccEventListener : public ::cppu::WeakImplHelper<css::accessibility::XAccessibleEventListener>
|
|
{
|
|
protected:
|
|
//accessible owner's pointer
|
|
css::uno::Reference<css::accessibility::XAccessible> m_xAccessible;
|
|
// reference to object's manager
|
|
AccObjectWinManager& m_rObjManager;
|
|
|
|
public:
|
|
AccEventListener(css::accessibility::XAccessible* pAcc, AccObjectWinManager& rManager);
|
|
virtual ~AccEventListener() override;
|
|
|
|
// XEventListener
|
|
virtual void SAL_CALL disposing(const css::lang::EventObject& Source) override;
|
|
|
|
// XAccessibleEventListener
|
|
virtual void SAL_CALL
|
|
notifyEvent(const css::accessibility::AccessibleEventObject& aEvent) override;
|
|
|
|
virtual void HandleNameChangedEvent();
|
|
|
|
virtual void HandleChildChangedEvent(css::uno::Any oldValue, css::uno::Any newValue);
|
|
virtual void HandleDescriptionChangedEvent();
|
|
|
|
//for state changed event
|
|
virtual void HandleStateChangedEvent(css::uno::Any oldValue, css::uno::Any newValue);
|
|
virtual void SetComponentState(sal_Int64 state, bool enable);
|
|
virtual void FireStatePropertyChange(sal_Int64 state, bool set);
|
|
virtual void FireStateFocusedChange(bool enable);
|
|
|
|
//for bound rect changed event
|
|
virtual void HandleBoundrectChangedEvent();
|
|
|
|
//for visible data changed event
|
|
virtual void HandleVisibleDataChangedEvent();
|
|
|
|
// get the accessible role of m_xAccessible
|
|
virtual short GetRole();
|
|
//get the accessible parent's role
|
|
virtual short GetParentRole();
|
|
|
|
void RemoveMeFromBroadcaster(bool isNotifyDestroy);
|
|
};
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|