bump product version to 6.3.0.0.beta1
[LibreOffice.git] / include / vcl / GestureEvent.hxx
blob2070fc76d39a99e15d43e8a53456123d42eb8c28
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 */
11 #ifndef INCLUDED_VCL_GESTUREEVENT_HXX
12 #define INCLUDED_VCL_GESTUREEVENT_HXX
14 #include <vcl/dllapi.h>
16 enum class GestureEventType
18 PanningBegin,
19 PanningUpdate,
20 PanningEnd
23 enum class PanningOrientation
25 Horizontal,
26 Vertical
29 class VCL_DLLPUBLIC GestureEvent
31 public:
32 sal_Int32 mnX;
33 sal_Int32 mnY;
34 GestureEventType meEventType;
36 sal_Int32 mnOffset;
37 PanningOrientation meOrientation;
40 #endif // INCLUDED_VCL_GESTUREEVENT_HXX
42 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */