Version 6.1.4.1, tag libreoffice-6.1.4.1
[LibreOffice.git] / forms / source / xforms / xformsevent.hxx
blobd9d03d385a8a1b366c0dd44b0aeb1886ba679bce
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 .
19 #ifndef INCLUDED_FORMS_SOURCE_XFORMS_XFORMSEVENT_HXX
20 #define INCLUDED_FORMS_SOURCE_XFORMS_XFORMSEVENT_HXX
22 #include <sal/types.h>
23 #include <cppuhelper/implbase.hxx>
24 #include <com/sun/star/uno/Reference.h>
25 #include <com/sun/star/xforms/XFormsEvent.hpp>
26 #include <com/sun/star/xml/dom/events/XEventTarget.hpp>
28 namespace com {
29 namespace sun {
30 namespace star {
31 namespace xforms {
33 class XFormsEventConcrete : public cppu::WeakImplHelper< XFormsEvent > {
35 public:
37 XFormsEventConcrete()
38 : m_bubbles(false)
39 , m_cancelable(false)
43 virtual OUString SAL_CALL getType() override;
44 virtual css::uno::Reference< css::xml::dom::events::XEventTarget > SAL_CALL getTarget() override;
45 virtual css::uno::Reference< css::xml::dom::events::XEventTarget > SAL_CALL getCurrentTarget() override;
46 virtual css::xml::dom::events::PhaseType SAL_CALL getEventPhase() override;
47 virtual sal_Bool SAL_CALL getBubbles() override;
48 virtual sal_Bool SAL_CALL getCancelable() override;
49 virtual css::util::Time SAL_CALL getTimeStamp() override;
50 virtual void SAL_CALL stopPropagation() override;
51 virtual void SAL_CALL preventDefault() override;
53 virtual void SAL_CALL initXFormsEvent(
54 const OUString& typeArg,
55 sal_Bool canBubbleArg,
56 sal_Bool cancelableArg ) override;
58 virtual void SAL_CALL initEvent(
59 const OUString& eventTypeArg,
60 sal_Bool canBubbleArg,
61 sal_Bool cancelableArg) override;
63 protected:
65 OUString m_eventType;
66 bool m_bubbles;
67 bool m_cancelable;
70 } } } }
72 #endif
74 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */