tdf#130857 qt weld: Implement QtInstanceWidget::strip_mnemonic
[LibreOffice.git] / xmloff / inc / EnhancedCustomShapeToken.hxx
blob2e4eed275e6685a714fbc433c3da8ab58cd5aa5e
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 * 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 .
20 #pragma once
22 #include <rtl/ustring.hxx>
24 namespace xmloff::EnhancedCustomShapeToken {
26 enum EnhancedCustomShapeTokenEnum
28 EAS_type,
29 EAS_name,
30 EAS_mirror_horizontal,
31 EAS_mirror_vertical,
32 EAS_viewBox,
33 EAS_text_rotate_angle,
34 EAS_extrusion_allowed,
35 EAS_text_path_allowed,
36 EAS_concentric_gradient_fill_allowed,
37 EAS_extrusion,
38 EAS_extrusion_brightness,
39 EAS_extrusion_depth,
40 EAS_extrusion_diffusion,
41 EAS_extrusion_number_of_line_segments,
42 EAS_extrusion_light_face,
43 EAS_extrusion_first_light_harsh,
44 EAS_extrusion_second_light_harsh,
45 EAS_extrusion_first_light_level,
46 EAS_extrusion_second_light_level,
47 EAS_extrusion_first_light_direction,
48 EAS_extrusion_second_light_direction,
49 EAS_extrusion_metal,
50 EAS_extrusion_metal_type,
51 EAS_shade_mode,
52 EAS_extrusion_rotation_angle,
53 EAS_extrusion_rotation_center,
54 EAS_extrusion_shininess,
55 EAS_extrusion_skew,
56 EAS_extrusion_specularity,
57 EAS_extrusion_specularity_loext,
58 EAS_projection,
59 EAS_extrusion_viewpoint,
60 EAS_extrusion_origin,
61 EAS_extrusion_color,
62 EAS_enhanced_path,
63 EAS_path_stretchpoint_x,
64 EAS_path_stretchpoint_y,
65 EAS_text_areas,
66 EAS_glue_points,
67 EAS_glue_point_type,
68 EAS_glue_point_leaving_directions,
69 EAS_text_path,
70 EAS_text_path_mode,
71 EAS_text_path_scale,
72 EAS_text_path_same_letter_heights,
73 EAS_modifiers,
74 EAS_equation,
75 EAS_formula,
76 EAS_handle,
77 EAS_handle_mirror_horizontal,
78 EAS_handle_mirror_vertical,
79 EAS_handle_switched,
80 EAS_handle_position,
81 EAS_handle_position_x,
82 EAS_handle_position_y,
83 EAS_handle_range_x_minimum,
84 EAS_handle_range_x_maximum,
85 EAS_handle_range_y_minimum,
86 EAS_handle_range_y_maximum,
87 EAS_handle_polar,
88 EAS_handle_polar_angle,
89 EAS_handle_polar_radius,
90 EAS_handle_polar_pole_x,
91 EAS_handle_polar_pole_y,
92 EAS_handle_radius_range_minimum,
93 EAS_handle_radius_range_maximum,
94 EAS_sub_view_size,
96 EAS_CustomShapeEngine,
97 EAS_CustomShapeData,
98 EAS_Type,
99 EAS_MirroredX,
100 EAS_MirroredY,
101 EAS_ViewBox,
102 EAS_TextRotateAngle,
103 EAS_TextPreRotateAngle,
104 EAS_ExtrusionAllowed,
105 EAS_ConcentricGradientFillAllowed,
106 EAS_TextPathAllowed,
107 EAS_Extrusion,
108 EAS_Equations,
109 EAS_Equation,
110 EAS_Path,
111 EAS_TextPath,
112 EAS_Handles,
113 EAS_Handle,
114 EAS_Brightness,
115 EAS_Depth,
116 EAS_Diffusion,
117 EAS_NumberOfLineSegments,
118 EAS_LightFace,
119 EAS_FirstLightHarsh,
120 EAS_SecondLightHarsh,
121 EAS_FirstLightLevel,
122 EAS_SecondLightLevel,
123 EAS_FirstLightDirection,
124 EAS_SecondLightDirection,
125 EAS_Metal,
126 EAS_MetalType,
127 EAS_ShadeMode,
128 EAS_RotateAngle,
129 EAS_RotationCenter,
130 EAS_Shininess,
131 EAS_Skew,
132 EAS_Specularity,
133 EAS_ProjectionMode,
134 EAS_ViewPoint,
135 EAS_Origin,
136 EAS_Color,
137 EAS_Switched,
138 EAS_Polar,
139 EAS_RangeXMinimum,
140 EAS_RangeXMaximum,
141 EAS_RangeYMinimum,
142 EAS_RangeYMaximum,
143 EAS_RadiusRangeMinimum,
144 EAS_RadiusRangeMaximum,
145 EAS_Coordinates,
146 EAS_Segments,
147 EAS_StretchX,
148 EAS_StretchY,
149 EAS_TextFrames,
150 EAS_GluePoints,
151 EAS_GluePointLeavingDirections,
152 EAS_GluePointType,
153 EAS_TextPathMode,
154 EAS_ScaleX,
155 EAS_SameLetterHeights,
156 EAS_Position,
157 EAS_AdjustmentValues,
158 EAS_SubViewSize,
160 EAS_Last,
161 EAS_NotFound
164 EnhancedCustomShapeTokenEnum EASGet( const OUString& );
165 EnhancedCustomShapeTokenEnum EASGet( sal_Int32 nToken );
166 const OUString & EASGet( const EnhancedCustomShapeTokenEnum );
170 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */