LibreOffice Module unoxml (master) 1
mutationevent.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
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/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
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 .
18 */
19
20#pragma once
21
22#include <sal/types.h>
23
24#include <com/sun/star/uno/Reference.h>
25
26#include <com/sun/star/xml/dom/events/PhaseType.hpp>
27#include <com/sun/star/xml/dom/events/AttrChangeType.hpp>
28#include <com/sun/star/xml/dom/events/XMutationEvent.hpp>
29
31
32#include "event.hxx"
33
34namespace DOM::events {
35
36typedef ::cppu::ImplInheritanceHelper< CEvent, css::xml::dom::events::XMutationEvent >
38
39class CMutationEvent final
40 : public CMutationEvent_Base
41{
42 css::uno::Reference< css::xml::dom::XNode > m_relatedNode;
43 OUString m_prevValue;
44 OUString m_newValue;
45 OUString m_attrName;
46 css::xml::dom::events::AttrChangeType m_attrChangeType;
47
48public:
49 explicit CMutationEvent();
50
51 virtual ~CMutationEvent() override;
52
53 virtual css::uno::Reference< css::xml::dom::XNode > SAL_CALL getRelatedNode() override;
54 virtual OUString SAL_CALL getPrevValue() override;
55 virtual OUString SAL_CALL getNewValue() override;
56 virtual OUString SAL_CALL getAttrName() override;
57 virtual css::xml::dom::events::AttrChangeType SAL_CALL getAttrChange() override;
58 virtual void SAL_CALL initMutationEvent(
59 const OUString& typeArg,
60 sal_Bool canBubbleArg,
61 sal_Bool cancelableArg,
62 const css::uno::Reference< css::xml::dom::XNode >& relatedNodeArg,
63 const OUString& prevValueArg,
64 const OUString& newValueArg,
65 const OUString& attrNameArg,
66 css::xml::dom::events::AttrChangeType attrChangeArg) override;
67
68 // delegate to CEvent, since we are inheriting from CEvent and XEvent
69 virtual OUString SAL_CALL getType() override;
70 virtual css::uno::Reference< css::xml::dom::events::XEventTarget > SAL_CALL getTarget() override;
71 virtual css::uno::Reference< css::xml::dom::events::XEventTarget > SAL_CALL getCurrentTarget() override;
72 virtual css::xml::dom::events::PhaseType SAL_CALL getEventPhase() override;
73 virtual sal_Bool SAL_CALL getBubbles() override;
74 virtual sal_Bool SAL_CALL getCancelable() override;
75 virtual css::util::Time SAL_CALL getTimeStamp() override;
76 virtual void SAL_CALL stopPropagation() override;
77 virtual void SAL_CALL preventDefault() override;
78 virtual void SAL_CALL initEvent(
79 const OUString& eventTypeArg,
80 sal_Bool canBubbleArg,
81 sal_Bool cancelableArg) override;
82};
83}
84
85/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
virtual css::xml::dom::events::AttrChangeType SAL_CALL getAttrChange() override
virtual void SAL_CALL initMutationEvent(const OUString &typeArg, sal_Bool canBubbleArg, sal_Bool cancelableArg, const css::uno::Reference< css::xml::dom::XNode > &relatedNodeArg, const OUString &prevValueArg, const OUString &newValueArg, const OUString &attrNameArg, css::xml::dom::events::AttrChangeType attrChangeArg) override
virtual css::uno::Reference< css::xml::dom::events::XEventTarget > SAL_CALL getCurrentTarget() override
virtual css::uno::Reference< css::xml::dom::XNode > SAL_CALL getRelatedNode() override
virtual OUString SAL_CALL getPrevValue() override
virtual void SAL_CALL stopPropagation() override
virtual css::util::Time SAL_CALL getTimeStamp() override
virtual void SAL_CALL preventDefault() override
css::xml::dom::events::AttrChangeType m_attrChangeType
virtual sal_Bool SAL_CALL getBubbles() override
virtual css::xml::dom::events::PhaseType SAL_CALL getEventPhase() override
virtual css::uno::Reference< css::xml::dom::events::XEventTarget > SAL_CALL getTarget() override
virtual sal_Bool SAL_CALL getCancelable() override
virtual OUString SAL_CALL getNewValue() override
virtual OUString SAL_CALL getAttrName() override
virtual void SAL_CALL initEvent(const OUString &eventTypeArg, sal_Bool canBubbleArg, sal_Bool cancelableArg) override
virtual OUString SAL_CALL getType() override
css::uno::Reference< css::xml::dom::XNode > m_relatedNode
virtual ~CMutationEvent() override
::cppu::ImplInheritanceHelper< CEvent, css::xml::dom::events::XMutationEvent > CMutationEvent_Base
unsigned char sal_Bool