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