Line data Source code
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 : #ifndef INCLUDED_UNOXML_SOURCE_EVENTS_UIEVENT_HXX
21 : #define INCLUDED_UNOXML_SOURCE_EVENTS_UIEVENT_HXX
22 :
23 : #include <sal/types.h>
24 :
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>
28 :
29 : #include <cppuhelper/implbase1.hxx>
30 :
31 : #include "event.hxx"
32 :
33 :
34 : using namespace com::sun::star::xml::dom::views;
35 :
36 : namespace DOM { namespace events {
37 :
38 : typedef ::cppu::ImplInheritanceHelper1< CEvent, XUIEvent > CUIEvent_Base;
39 :
40 0 : class CUIEvent
41 : : public CUIEvent_Base
42 : {
43 : protected:
44 : sal_Int32 m_detail;
45 : Reference< XAbstractView > m_view;
46 :
47 : public:
48 : explicit CUIEvent();
49 :
50 : virtual Reference< XAbstractView > SAL_CALL getView() throw(RuntimeException, std::exception) SAL_OVERRIDE;
51 : virtual sal_Int32 SAL_CALL getDetail() throw(RuntimeException, std::exception) SAL_OVERRIDE;
52 : virtual void SAL_CALL initUIEvent(const OUString& typeArg,
53 : sal_Bool canBubbleArg,
54 : sal_Bool cancelableArg,
55 : const Reference< XAbstractView >& viewArg,
56 : sal_Int32 detailArg) throw(RuntimeException, std::exception) SAL_OVERRIDE;
57 :
58 : // delegate to CEvent, since we are inheriting from CEvent and XEvent
59 : virtual OUString SAL_CALL getType() throw (RuntimeException, std::exception) SAL_OVERRIDE;
60 : virtual Reference< XEventTarget > SAL_CALL getTarget() throw (RuntimeException, std::exception) SAL_OVERRIDE;
61 : virtual Reference< XEventTarget > SAL_CALL getCurrentTarget() throw (RuntimeException, std::exception) SAL_OVERRIDE;
62 : virtual PhaseType SAL_CALL getEventPhase() throw (RuntimeException, std::exception) SAL_OVERRIDE;
63 : virtual sal_Bool SAL_CALL getBubbles() throw (RuntimeException, std::exception) SAL_OVERRIDE;
64 : virtual sal_Bool SAL_CALL getCancelable() throw (RuntimeException, std::exception) SAL_OVERRIDE;
65 : virtual com::sun::star::util::Time SAL_CALL getTimeStamp() throw (RuntimeException, std::exception) SAL_OVERRIDE;
66 : virtual void SAL_CALL stopPropagation() throw (RuntimeException, std::exception) SAL_OVERRIDE;
67 : virtual void SAL_CALL preventDefault() throw (RuntimeException, std::exception) SAL_OVERRIDE;
68 : virtual void SAL_CALL initEvent(
69 : const OUString& eventTypeArg,
70 : sal_Bool canBubbleArg,
71 : sal_Bool cancelableArg)
72 : throw (RuntimeException, std::exception) SAL_OVERRIDE;
73 : };
74 : }}
75 : #endif
76 :
77 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|