Version 6.1.4.1, tag libreoffice-6.1.4.1
[LibreOffice.git] / unoxml / inc / mutationevent.hxx
blob5499b5a93633fa32533ccaacd60f41394eafc9fd
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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 .
20 #ifndef INCLUDED_UNOXML_INC_MUTATIONEVENT_HXX
21 #define INCLUDED_UNOXML_INC_MUTATIONEVENT_HXX
23 #include <sal/types.h>
25 #include <com/sun/star/uno/Reference.h>
27 #include <com/sun/star/xml/dom/events/PhaseType.hpp>
28 #include <com/sun/star/xml/dom/events/AttrChangeType.hpp>
29 #include <com/sun/star/xml/dom/events/XMutationEvent.hpp>
31 #include <cppuhelper/implbase.hxx>
33 #include "event.hxx"
35 namespace DOM { namespace events {
37 typedef ::cppu::ImplInheritanceHelper< CEvent, css::xml::dom::events::XMutationEvent >
38 CMutationEvent_Base;
40 class CMutationEvent
41 : public CMutationEvent_Base
43 css::uno::Reference< css::xml::dom::XNode > m_relatedNode;
44 OUString m_prevValue;
45 OUString m_newValue;
46 OUString m_attrName;
47 css::xml::dom::events::AttrChangeType m_attrChangeType;
49 public:
50 explicit CMutationEvent();
52 virtual ~CMutationEvent() override;
54 virtual css::uno::Reference< css::xml::dom::XNode > SAL_CALL getRelatedNode() override;
55 virtual OUString SAL_CALL getPrevValue() override;
56 virtual OUString SAL_CALL getNewValue() override;
57 virtual OUString SAL_CALL getAttrName() override;
58 virtual css::xml::dom::events::AttrChangeType SAL_CALL getAttrChange() override;
59 virtual void SAL_CALL initMutationEvent(
60 const OUString& typeArg,
61 sal_Bool canBubbleArg,
62 sal_Bool cancelableArg,
63 const css::uno::Reference< css::xml::dom::XNode >& relatedNodeArg,
64 const OUString& prevValueArg,
65 const OUString& newValueArg,
66 const OUString& attrNameArg,
67 css::xml::dom::events::AttrChangeType attrChangeArg) override;
69 // delegate to CEvent, since we are inheriting from CEvent and XEvent
70 virtual OUString SAL_CALL getType() override;
71 virtual css::uno::Reference< css::xml::dom::events::XEventTarget > SAL_CALL getTarget() override;
72 virtual css::uno::Reference< css::xml::dom::events::XEventTarget > SAL_CALL getCurrentTarget() override;
73 virtual css::xml::dom::events::PhaseType SAL_CALL getEventPhase() override;
74 virtual sal_Bool SAL_CALL getBubbles() override;
75 virtual sal_Bool SAL_CALL getCancelable() override;
76 virtual css::util::Time SAL_CALL getTimeStamp() override;
77 virtual void SAL_CALL stopPropagation() override;
78 virtual void SAL_CALL preventDefault() override;
79 virtual void SAL_CALL initEvent(
80 const OUString& eventTypeArg,
81 sal_Bool canBubbleArg,
82 sal_Bool cancelableArg) override;
85 #endif
87 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */