summaryrefslogtreecommitdiff
path: root/include/vcl/ptrstyle.hxx
blob: 996caf5f60782e7fad9c877b0d62a90240c6601f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
 * This file is part of the LibreOffice project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 *
 * This file incorporates work covered by the following license notice:
 *
 *   Licensed to the Apache Software Foundation (ASF) under one or more
 *   contributor license agreements. See the NOTICE file distributed
 *   with this work for additional information regarding copyright
 *   ownership. The ASF licenses this file to you under the Apache
 *   License, Version 2.0 (the "License"); you may not use this file
 *   except in compliance with the License. You may obtain a copy of
 *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
 */

#ifndef INCLUDED_VCL_PTRSTYLE_HXX
#define INCLUDED_VCL_PTRSTYLE_HXX

enum class PointerStyle
{
    Arrow              = 0,
    Null               = 1,
    Wait               = 2,
    Text               = 3,
    Help               = 4,
    Cross              = 5,
    Move               = 6,
    NSize              = 7,
    SSize              = 8,
    WSize              = 9,
    ESize              = 10,
    NWSize             = 11,
    NESize             = 12,
    SWSize             = 13,
    SESize             = 14,
    WindowNSize        = 15,
    WindowSSize        = 16,
    WindowWSize        = 17,
    WindowESize        = 18,
    WindowNWSize       = 19,
    WindowNESize       = 20,
    WindowSWSize       = 21,
    WindowSESize       = 22,
    HSplit             = 23,
    VSplit             = 24,
    HSizeBar           = 25,
    VSizeBar           = 26,
    Hand               = 27,
    RefHand            = 28,
    Pen                = 29,
    Magnify            = 30,
    Fill               = 31,
    Rotate             = 32,
    HShear             = 33,
    VShear             = 34,
    Mirror             = 35,
    Crook              = 36,
    Crop               = 37,
    MovePoint          = 38,
    MoveBezierWeight   = 39,
    MoveData           = 40,
    CopyData           = 41,
    LinkData           = 42,
    MoveDataLink       = 43,
    CopyDataLink       = 44,
    MoveFile           = 45,
    CopyFile           = 46,
    LinkFile           = 47,
    MoveFileLink       = 48,
    CopyFileLink       = 49,
    MoveFiles          = 50,
    CopyFiles          = 51,
    NotAllowed         = 52,
    DrawLine           = 53,
    DrawRect           = 54,
    DrawPolygon        = 55,
    DrawBezier         = 56,
    DrawArc            = 57,
    DrawPie            = 58,
    DrawCircleCut      = 59,
    DrawEllipse        = 60,
    DrawFreehand       = 61,
    DrawConnect        = 62,
    DrawText           = 63,
    DrawCaption        = 64,
    Chart              = 65,
    Detective          = 66,
    PivotCol           = 67,
    PivotRow           = 68,
    PivotField         = 69,
    Chain              = 70,
    ChainNotAllowed    = 71,
    TimeEventMove      = 72,
    TimeEventSize      = 73,
    AutoScrollN        = 74,
    AutoScrollS        = 75,
    AutoScrollW        = 76,
    AutoScrollE        = 77,
    AutoScrollNW       = 78,
    AutoScrollNE       = 79,
    AutoScrollSW       = 80,
    AutoScrollSE       = 81,
    AutoScrollNS       = 82,
    AutoScrollWE       = 83,
    AutoScrollNSWE     = 84,
    Airbrush           = 85,
    TextVertical       = 86,
    PivotDelete        = 87,
    TabSelectS         = 88,
    TabSelectE         = 89,
    TabSelectSE        = 90,
    TabSelectW         = 91,
    TabSelectSW        = 92,
    Paintbrush         = 93,
    HideWhitespace     = 94,
    ShowWhitespace     = 95,
    LAST               = ShowWhitespace,
};

#endif // INCLUDED_VCL_PTRSTYLE_HXX

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */