summaryrefslogtreecommitdiff
path: root/include/vcl/ptrstyle.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-02-08 10:40:28 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-02-08 12:42:52 +0000
commit65b7b6322b662785bf032e66c76abc36c9a2bb0e (patch)
tree762d3c233ac4a1d73dc67dd32183f1f4be9b2258 /include/vcl/ptrstyle.hxx
parent20915bcbf45b4b0b4bc8c68c7df9eb6b13abbe06 (diff)
loplugin:unusedenumconstants read-only constants in vcl
Change-Id: I8c81444cbecdc103cc47d9a4133b0b4d9010e0c2 Reviewed-on: https://gerrit.libreoffice.org/34018 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/vcl/ptrstyle.hxx')
-rw-r--r--include/vcl/ptrstyle.hxx177
1 files changed, 81 insertions, 96 deletions
diff --git a/include/vcl/ptrstyle.hxx b/include/vcl/ptrstyle.hxx
index 996caf5f6078..7eb50c10fc62 100644
--- a/include/vcl/ptrstyle.hxx
+++ b/include/vcl/ptrstyle.hxx
@@ -22,102 +22,87 @@
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,
+ Arrow,
+ Null,
+ Wait,
+ Text,
+ Help,
+ Cross,
+ Move,
+ NSize,
+ SSize,
+ WSize,
+ ESize,
+ NWSize,
+ NESize,
+ SWSize,
+ SESize,
+ WindowNSize,
+ WindowSSize,
+ WindowWSize,
+ WindowESize,
+ WindowNWSize,
+ WindowNESize,
+ WindowSWSize,
+ WindowSESize,
+ HSplit,
+ VSplit,
+ HSizeBar,
+ VSizeBar,
+ Hand,
+ RefHand,
+ Magnify,
+ Fill,
+ Rotate,
+ HShear,
+ VShear,
+ Mirror,
+ Crook,
+ Crop,
+ MovePoint,
+ MoveBezierWeight,
+ CopyData,
+ LinkData,
+ MoveDataLink,
+ NotAllowed,
+ DrawLine,
+ DrawRect,
+ DrawPolygon,
+ DrawBezier,
+ DrawArc,
+ DrawPie,
+ DrawCircleCut,
+ DrawEllipse,
+ DrawFreehand,
+ DrawConnect,
+ DrawText,
+ DrawCaption,
+ Detective,
+ PivotCol,
+ PivotRow,
+ PivotField,
+ Chain,
+ ChainNotAllowed,
+ AutoScrollN,
+ AutoScrollS,
+ AutoScrollW,
+ AutoScrollE,
+ AutoScrollNW,
+ AutoScrollNE,
+ AutoScrollSW,
+ AutoScrollSE,
+ AutoScrollNS,
+ AutoScrollWE,
+ AutoScrollNSWE,
+ TextVertical,
+ PivotDelete,
+ TabSelectS,
+ TabSelectE,
+ TabSelectSE,
+ TabSelectW,
+ TabSelectSW,
+ HideWhitespace,
+ ShowWhitespace,
LAST = ShowWhitespace,
};