1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 .
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
>
34 class CMouseEvent final
35 : public CMouseEvent_Base
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
,
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: */