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_MOUSEEVENT_HXX
21 : #define INCLUDED_UNOXML_SOURCE_EVENTS_MOUSEEVENT_HXX
22 :
23 : #include <com/sun/star/xml/dom/events/PhaseType.hpp>
24 : #include <com/sun/star/xml/dom/events/XMouseEvent.hpp>
25 :
26 : #include <cppuhelper/implbase1.hxx>
27 :
28 : #include "uievent.hxx"
29 :
30 : namespace DOM { namespace events {
31 :
32 : typedef ::cppu::ImplInheritanceHelper1< CUIEvent, XMouseEvent >
33 : CMouseEvent_Base;
34 :
35 0 : class CMouseEvent
36 : : public CMouseEvent_Base
37 : {
38 : protected:
39 : sal_Int32 m_screenX;
40 : sal_Int32 m_screenY;
41 : sal_Int32 m_clientX;
42 : sal_Int32 m_clientY;
43 : sal_Bool m_ctrlKey;
44 : sal_Bool m_shiftKey;
45 : sal_Bool m_altKey;
46 : sal_Bool m_metaKey;
47 : sal_Int16 m_button;
48 : Reference< XEventTarget > m_relatedTarget;
49 :
50 : public:
51 : explicit CMouseEvent();
52 :
53 : virtual sal_Int32 SAL_CALL getScreenX() throw (RuntimeException, std::exception) SAL_OVERRIDE;
54 : virtual sal_Int32 SAL_CALL getScreenY() throw (RuntimeException, std::exception) SAL_OVERRIDE;
55 : virtual sal_Int32 SAL_CALL getClientX() throw (RuntimeException, std::exception) SAL_OVERRIDE;
56 : virtual sal_Int32 SAL_CALL getClientY() throw (RuntimeException, std::exception) SAL_OVERRIDE;
57 : virtual sal_Bool SAL_CALL getCtrlKey() throw (RuntimeException, std::exception) SAL_OVERRIDE;
58 : virtual sal_Bool SAL_CALL getShiftKey() throw (RuntimeException, std::exception) SAL_OVERRIDE;
59 : virtual sal_Bool SAL_CALL getAltKey() throw (RuntimeException, std::exception) SAL_OVERRIDE;
60 : virtual sal_Bool SAL_CALL getMetaKey() throw (RuntimeException, std::exception) SAL_OVERRIDE;
61 : virtual sal_Int16 SAL_CALL getButton() throw (RuntimeException, std::exception) SAL_OVERRIDE;
62 : virtual Reference< XEventTarget > SAL_CALL getRelatedTarget() throw(RuntimeException, std::exception) SAL_OVERRIDE;
63 :
64 : virtual void SAL_CALL initMouseEvent(
65 : const OUString& typeArg,
66 : sal_Bool canBubbleArg,
67 : sal_Bool cancelableArg,
68 : const Reference< XAbstractView >& viewArg,
69 : sal_Int32 detailArg,
70 : sal_Int32 screenXArg,
71 : sal_Int32 screenYArg,
72 : sal_Int32 clientXArg,
73 : sal_Int32 clientYArg,
74 : sal_Bool ctrlKeyArg,
75 : sal_Bool altKeyArg,
76 : sal_Bool shiftKeyArg,
77 : sal_Bool metaKeyArg,
78 : sal_Int16 buttonArg,
79 : const Reference< XEventTarget >& relatedTargetArg)
80 : throw(RuntimeException, std::exception) SAL_OVERRIDE;
81 :
82 : // delegate to CUIevent
83 : virtual Reference< XAbstractView > SAL_CALL getView() throw (RuntimeException, std::exception) SAL_OVERRIDE;
84 : virtual sal_Int32 SAL_CALL getDetail() throw (RuntimeException, std::exception) SAL_OVERRIDE;
85 : virtual void SAL_CALL initUIEvent(const OUString& typeArg,
86 : sal_Bool canBubbleArg,
87 : sal_Bool cancelableArg,
88 : const Reference< XAbstractView >& viewArg,
89 : sal_Int32 detailArg) throw (RuntimeException, std::exception) SAL_OVERRIDE;
90 : virtual OUString SAL_CALL getType() throw (RuntimeException, std::exception) SAL_OVERRIDE;
91 : virtual Reference< XEventTarget > SAL_CALL getTarget() throw (RuntimeException, std::exception) SAL_OVERRIDE;
92 : virtual Reference< XEventTarget > SAL_CALL getCurrentTarget() throw (RuntimeException, std::exception) SAL_OVERRIDE;
93 : virtual PhaseType SAL_CALL getEventPhase() throw (RuntimeException, std::exception) SAL_OVERRIDE;
94 : virtual sal_Bool SAL_CALL getBubbles() throw (RuntimeException, std::exception) SAL_OVERRIDE;
95 : virtual sal_Bool SAL_CALL getCancelable() throw (RuntimeException, std::exception) SAL_OVERRIDE;
96 : virtual com::sun::star::util::Time SAL_CALL getTimeStamp() throw (RuntimeException, std::exception) SAL_OVERRIDE;
97 : virtual void SAL_CALL stopPropagation() throw (RuntimeException, std::exception) SAL_OVERRIDE;
98 : virtual void SAL_CALL preventDefault() throw (RuntimeException, std::exception) SAL_OVERRIDE;
99 : virtual void SAL_CALL initEvent(
100 : const OUString& eventTypeArg,
101 : sal_Bool canBubbleArg,
102 : sal_Bool cancelableArg)
103 : throw (RuntimeException, std::exception) SAL_OVERRIDE;
104 : };
105 : }}
106 : #endif
107 :
108 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|