fix disable qrcodegen option
[LibreOffice.git] / unoxml / inc / mouseevent.hxx
blob3f6788e89f13b1bfac07c938fe5f2abe9ea79f27
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_MOUSEEVENT_HXX
21 #define INCLUDED_UNOXML_INC_MOUSEEVENT_HXX
23 #include <com/sun/star/xml/dom/events/PhaseType.hpp>
24 #include <com/sun/star/xml/dom/events/XMouseEvent.hpp>
26 #include <cppuhelper/implbase.hxx>
28 #include "uievent.hxx"
30 namespace DOM { namespace events {
32 typedef ::cppu::ImplInheritanceHelper< CUIEvent, css::xml::dom::events::XMouseEvent >
33 CMouseEvent_Base;
35 class CMouseEvent
36 : public CMouseEvent_Base
38 sal_Int32 m_screenX;
39 sal_Int32 m_screenY;
40 sal_Int32 m_clientX;
41 sal_Int32 m_clientY;
42 bool m_ctrlKey;
43 bool m_shiftKey;
44 bool m_altKey;
45 bool m_metaKey;
46 sal_Int16 m_button;
48 public:
49 explicit CMouseEvent();
51 virtual sal_Int32 SAL_CALL getScreenX() override;
52 virtual sal_Int32 SAL_CALL getScreenY() override;
53 virtual sal_Int32 SAL_CALL getClientX() override;
54 virtual sal_Int32 SAL_CALL getClientY() override;
55 virtual sal_Bool SAL_CALL getCtrlKey() override;
56 virtual sal_Bool SAL_CALL getShiftKey() override;
57 virtual sal_Bool SAL_CALL getAltKey() override;
58 virtual sal_Bool SAL_CALL getMetaKey() override;
59 virtual sal_Int16 SAL_CALL getButton() override;
60 virtual css::uno::Reference< css::xml::dom::events::XEventTarget > SAL_CALL getRelatedTarget() override;
62 virtual void SAL_CALL initMouseEvent(
63 const OUString& typeArg,
64 sal_Bool canBubbleArg,
65 sal_Bool cancelableArg,
66 const css::uno::Reference< css::xml::dom::views::XAbstractView >& viewArg,
67 sal_Int32 detailArg,
68 sal_Int32 screenXArg,
69 sal_Int32 screenYArg,
70 sal_Int32 clientXArg,
71 sal_Int32 clientYArg,
72 sal_Bool ctrlKeyArg,
73 sal_Bool altKeyArg,
74 sal_Bool shiftKeyArg,
75 sal_Bool metaKeyArg,
76 sal_Int16 buttonArg,
77 const css::uno::Reference< css::xml::dom::events::XEventTarget >& relatedTargetArg) override;
79 // delegate to CUIevent
80 virtual css::uno::Reference< css::xml::dom::views::XAbstractView > SAL_CALL getView() override;
81 virtual sal_Int32 SAL_CALL getDetail() override;
82 virtual void SAL_CALL initUIEvent(const OUString& typeArg,
83 sal_Bool canBubbleArg,
84 sal_Bool cancelableArg,
85 const css::uno::Reference< css::xml::dom::views::XAbstractView >& viewArg,
86 sal_Int32 detailArg) override;
87 virtual OUString SAL_CALL getType() override;
88 virtual css::uno::Reference< css::xml::dom::events::XEventTarget > SAL_CALL getTarget() override;
89 virtual css::uno::Reference< css::xml::dom::events::XEventTarget > SAL_CALL getCurrentTarget() override;
90 virtual css::xml::dom::events::PhaseType SAL_CALL getEventPhase() override;
91 virtual sal_Bool SAL_CALL getBubbles() override;
92 virtual sal_Bool SAL_CALL getCancelable() override;
93 virtual css::util::Time SAL_CALL getTimeStamp() override;
94 virtual void SAL_CALL stopPropagation() override;
95 virtual void SAL_CALL preventDefault() override;
96 virtual void SAL_CALL initEvent(
97 const OUString& eventTypeArg,
98 sal_Bool canBubbleArg,
99 sal_Bool cancelableArg) override;
102 #endif
104 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */