LibreOffice Module unoxml (master) 1
uievent.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
20#pragma once
21
22#include <sal/types.h>
23
24#include <com/sun/star/xml/dom/events/PhaseType.hpp>
25#include <com/sun/star/xml/dom/events/XUIEvent.hpp>
26#include <com/sun/star/xml/dom/views/XAbstractView.hpp>
27
29
30#include "event.hxx"
31
32namespace DOM::events {
33
34typedef ::cppu::ImplInheritanceHelper< CEvent, css::xml::dom::events::XUIEvent > CUIEvent_Base;
35
37 : public CUIEvent_Base
38{
39 sal_Int32 m_detail;
40 css::uno::Reference< css::xml::dom::views::XAbstractView > m_view;
41
42public:
43 explicit CUIEvent();
44
45 virtual css::uno::Reference< css::xml::dom::views::XAbstractView > SAL_CALL getView() override;
46 virtual sal_Int32 SAL_CALL getDetail() override;
47 virtual void SAL_CALL initUIEvent(const OUString& typeArg,
48 sal_Bool canBubbleArg,
49 sal_Bool cancelableArg,
50 const css::uno::Reference< css::xml::dom::views::XAbstractView >& viewArg,
51 sal_Int32 detailArg) override;
52
53 // delegate to CEvent, since we are inheriting from CEvent and XEvent
54 virtual OUString SAL_CALL getType() override;
55 virtual css::uno::Reference< css::xml::dom::events::XEventTarget > SAL_CALL getTarget() override;
56 virtual css::uno::Reference< css::xml::dom::events::XEventTarget > SAL_CALL getCurrentTarget() override;
57 virtual css::xml::dom::events::PhaseType SAL_CALL getEventPhase() override;
58 virtual sal_Bool SAL_CALL getBubbles() override;
59 virtual sal_Bool SAL_CALL getCancelable() override;
60 virtual css::util::Time SAL_CALL getTimeStamp() override;
61 virtual void SAL_CALL stopPropagation() override;
62 virtual void SAL_CALL preventDefault() override;
63 virtual void SAL_CALL initEvent(
64 const OUString& eventTypeArg,
65 sal_Bool canBubbleArg,
66 sal_Bool cancelableArg) override;
67};
68}
69
70/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
virtual void SAL_CALL initEvent(const OUString &eventTypeArg, sal_Bool canBubbleArg, sal_Bool cancelableArg) override
Definition: uievent.cxx:105
virtual sal_Int32 SAL_CALL getDetail() override
Definition: uievent.cxx:40
virtual css::xml::dom::events::PhaseType SAL_CALL getEventPhase() override
Definition: uievent.cxx:75
virtual css::uno::Reference< css::xml::dom::events::XEventTarget > SAL_CALL getTarget() override
Definition: uievent.cxx:65
sal_Int32 m_detail
Definition: uievent.hxx:39
virtual css::uno::Reference< css::xml::dom::events::XEventTarget > SAL_CALL getCurrentTarget() override
Definition: uievent.cxx:70
virtual void SAL_CALL preventDefault() override
Definition: uievent.cxx:100
virtual sal_Bool SAL_CALL getBubbles() override
Definition: uievent.cxx:80
virtual css::util::Time SAL_CALL getTimeStamp() override
Definition: uievent.cxx:91
virtual sal_Bool SAL_CALL getCancelable() override
Definition: uievent.cxx:85
virtual void SAL_CALL stopPropagation() override
Definition: uievent.cxx:96
virtual void SAL_CALL initUIEvent(const OUString &typeArg, sal_Bool canBubbleArg, sal_Bool cancelableArg, const css::uno::Reference< css::xml::dom::views::XAbstractView > &viewArg, sal_Int32 detailArg) override
Definition: uievent.cxx:46
virtual css::uno::Reference< css::xml::dom::views::XAbstractView > SAL_CALL getView() override
Definition: uievent.cxx:34
virtual OUString SAL_CALL getType() override
Definition: uievent.cxx:60
css::uno::Reference< css::xml::dom::views::XAbstractView > m_view
Definition: uievent.hxx:40
::cppu::ImplInheritanceHelper< CEvent, css::xml::dom::events::XUIEvent > CUIEvent_Base
Definition: uievent.hxx:34
unsigned char sal_Bool