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/.
13 #include <vcl/dllapi.h>
15 enum class GestureEventPanType
22 enum class PanningOrientation
28 class VCL_DLLPUBLIC GestureEventPan
33 GestureEventPanType meEventType
;
36 PanningOrientation meOrientation
;
41 , meEventType(GestureEventPanType::Begin
)
43 , meOrientation(PanningOrientation::Horizontal
)
47 GestureEventPan(sal_Int32 nX
, sal_Int32 nY
, GestureEventPanType eEventType
, sal_Int32 nOffset
,
48 PanningOrientation eOrientation
)
51 , meEventType(eEventType
)
53 , meOrientation(eOrientation
)
58 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */