LOK: custom widgets: check size of API structures
[LibreOffice.git] / unoxml / inc / uievent.hxx
blob7f7d4397a218936e17aed68942e9dca4c05014b5
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_UIEVENT_HXX
21 #define INCLUDED_UNOXML_INC_UIEVENT_HXX
23 #include <sal/types.h>
25 #include <com/sun/star/xml/dom/events/PhaseType.hpp>
26 #include <com/sun/star/xml/dom/events/XUIEvent.hpp>
27 #include <com/sun/star/xml/dom/views/XAbstractView.hpp>
29 #include <cppuhelper/implbase.hxx>
31 #include "event.hxx"
33 namespace DOM { namespace events {
35 typedef ::cppu::ImplInheritanceHelper< CEvent, css::xml::dom::events::XUIEvent > CUIEvent_Base;
37 class CUIEvent
38 : public CUIEvent_Base
40 protected:
41 sal_Int32 m_detail;
42 css::uno::Reference< css::xml::dom::views::XAbstractView > m_view;
44 public:
45 explicit CUIEvent();
47 virtual css::uno::Reference< css::xml::dom::views::XAbstractView > SAL_CALL getView() override;
48 virtual sal_Int32 SAL_CALL getDetail() override;
49 virtual void SAL_CALL initUIEvent(const OUString& typeArg,
50 sal_Bool canBubbleArg,
51 sal_Bool cancelableArg,
52 const css::uno::Reference< css::xml::dom::views::XAbstractView >& viewArg,
53 sal_Int32 detailArg) override;
55 // delegate to CEvent, since we are inheriting from CEvent and XEvent
56 virtual OUString SAL_CALL getType() override;
57 virtual css::uno::Reference< css::xml::dom::events::XEventTarget > SAL_CALL getTarget() override;
58 virtual css::uno::Reference< css::xml::dom::events::XEventTarget > SAL_CALL getCurrentTarget() override;
59 virtual css::xml::dom::events::PhaseType SAL_CALL getEventPhase() override;
60 virtual sal_Bool SAL_CALL getBubbles() override;
61 virtual sal_Bool SAL_CALL getCancelable() override;
62 virtual css::util::Time SAL_CALL getTimeStamp() override;
63 virtual void SAL_CALL stopPropagation() override;
64 virtual void SAL_CALL preventDefault() override;
65 virtual void SAL_CALL initEvent(
66 const OUString& eventTypeArg,
67 sal_Bool canBubbleArg,
68 sal_Bool cancelableArg) override;
71 #endif
73 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */