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 <sal/types.h>
24 #include <com/sun/star/uno/Reference.h>
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>
30 #include <cppuhelper/implbase.hxx>
34 namespace DOM::events
{
36 typedef ::cppu::ImplInheritanceHelper
< CEvent
, css::xml::dom::events::XMutationEvent
>
39 class CMutationEvent final
40 : public CMutationEvent_Base
42 css::uno::Reference
< css::xml::dom::XNode
> m_relatedNode
;
46 css::xml::dom::events::AttrChangeType m_attrChangeType
;
49 explicit CMutationEvent();
51 virtual ~CMutationEvent() override
;
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
;
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
;
85 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */