LibreOffice Module forms (master) 1
xformsevent.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#pragma once
20
21#include <sal/types.h>
23#include <com/sun/star/uno/Reference.h>
24#include <com/sun/star/xforms/XFormsEvent.hpp>
25#include <com/sun/star/xml/dom/events/XEventTarget.hpp>
26
27namespace com::sun::star::xforms {
28
29class XFormsEventConcrete : public cppu::WeakImplHelper< XFormsEvent > {
30
31 public:
32
34 : m_bubbles(false)
35 , m_cancelable(false)
36 {
37 }
38
39 virtual OUString SAL_CALL getType() override;
40 virtual css::uno::Reference< css::xml::dom::events::XEventTarget > SAL_CALL getTarget() override;
41 virtual css::uno::Reference< css::xml::dom::events::XEventTarget > SAL_CALL getCurrentTarget() override;
42 virtual css::xml::dom::events::PhaseType SAL_CALL getEventPhase() override;
43 virtual sal_Bool SAL_CALL getBubbles() override;
44 virtual sal_Bool SAL_CALL getCancelable() override;
45 virtual css::util::Time SAL_CALL getTimeStamp() override;
46 virtual void SAL_CALL stopPropagation() override;
47 virtual void SAL_CALL preventDefault() override;
48
49 virtual void SAL_CALL initXFormsEvent(
50 const OUString& typeArg,
51 sal_Bool canBubbleArg,
52 sal_Bool cancelableArg ) override;
53
54 virtual void SAL_CALL initEvent(
55 const OUString& eventTypeArg,
56 sal_Bool canBubbleArg,
57 sal_Bool cancelableArg) override;
58
59 private:
60
61 OUString m_eventType;
64};
65
66}
67
68/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
virtual css::util::Time SAL_CALL getTimeStamp() override
Definition: xformsevent.cxx:61
virtual void SAL_CALL initEvent(const OUString &eventTypeArg, sal_Bool canBubbleArg, sal_Bool cancelableArg) override
Definition: xformsevent.cxx:73
virtual OUString SAL_CALL getType() override
Definition: xformsevent.cxx:31
virtual void SAL_CALL initXFormsEvent(const OUString &typeArg, sal_Bool canBubbleArg, sal_Bool cancelableArg) override
Definition: xformsevent.cxx:25
virtual css::uno::Reference< css::xml::dom::events::XEventTarget > SAL_CALL getCurrentTarget() override
Definition: xformsevent.cxx:41
virtual css::uno::Reference< css::xml::dom::events::XEventTarget > SAL_CALL getTarget() override
Definition: xformsevent.cxx:36
virtual sal_Bool SAL_CALL getCancelable() override
Definition: xformsevent.cxx:56
virtual void SAL_CALL preventDefault() override
Definition: xformsevent.cxx:69
virtual css::xml::dom::events::PhaseType SAL_CALL getEventPhase() override
Definition: xformsevent.cxx:46
virtual sal_Bool SAL_CALL getBubbles() override
Definition: xformsevent.cxx:51
virtual void SAL_CALL stopPropagation() override
Definition: xformsevent.cxx:66
unsigned char sal_Bool