bump product version to 4.1.6.2
[LibreOffice.git] / unoxml / source / events / event.hxx
blob61721872755fc3e220308baecd7d2285f0a6ae24
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 EVENT_EVENT_HXX
21 #define EVENT_EVENT_HXX
23 #include <sal/types.h>
25 #include <com/sun/star/uno/Reference.h>
26 #include <com/sun/star/xml/dom/events/XEvent.hpp>
27 #include <com/sun/star/xml/dom/events/XEventTarget.hpp>
28 #include <com/sun/star/util/Time.hpp>
30 #include <cppuhelper/implbase1.hxx>
32 #include "../dom/node.hxx"
35 using namespace com::sun::star::uno;
36 using namespace com::sun::star::xml::dom;
37 using namespace com::sun::star::xml::dom::events;
40 namespace DOM {namespace events
42 class CEvent : public cppu::WeakImplHelper1< XEvent >
44 friend class CEventDispatcher;
46 protected:
47 ::osl::Mutex m_Mutex;
48 sal_Bool m_canceled;
49 OUString m_eventType;
50 Reference< XEventTarget > m_target;
51 Reference< XEventTarget > m_currentTarget;
52 PhaseType m_phase;
53 sal_Bool m_bubbles;
54 sal_Bool m_cancelable;
55 com::sun::star::util::Time m_time;
57 public:
59 explicit CEvent();
61 virtual ~CEvent();
62 virtual OUString SAL_CALL getType() throw (RuntimeException);
63 virtual Reference< XEventTarget > SAL_CALL getTarget() throw (RuntimeException);
64 virtual Reference< XEventTarget > SAL_CALL getCurrentTarget() throw (RuntimeException);
65 virtual PhaseType SAL_CALL getEventPhase() throw (RuntimeException);
66 virtual sal_Bool SAL_CALL getBubbles() throw (RuntimeException);
67 virtual sal_Bool SAL_CALL getCancelable() throw (RuntimeException);
68 virtual com::sun::star::util::Time SAL_CALL getTimeStamp() throw (RuntimeException);
69 virtual void SAL_CALL stopPropagation() throw (RuntimeException);
70 virtual void SAL_CALL preventDefault() throw (RuntimeException);
71 virtual void SAL_CALL initEvent(
72 const OUString& eventTypeArg,
73 sal_Bool canBubbleArg,
74 sal_Bool cancelableArg) throw (RuntimeException);
77 #endif
79 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */