LibreOffice Module sw (master) 1
css1kywd.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
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/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
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 .
18 */
19
20#ifndef INCLUDED_SW_SOURCE_FILTER_HTML_CSS1KYWD_HXX
21#define INCLUDED_SW_SOURCE_FILTER_HTML_CSS1KYWD_HXX
22
23#include <sal/config.h>
24
25#include <string_view>
26
27constexpr inline std::string_view sCSS_mimetype = "text/css";
28
29constexpr inline std::string_view sCSS1_page = "page";
30//constexpr inline std::string_view sCSS1_media = "media";
31
32constexpr inline std::string_view sCSS1_link = "link";
33constexpr inline std::string_view sCSS1_visited = "visited";
34constexpr inline std::string_view sCSS1_first_letter = "first-letter";
35
36constexpr inline std::string_view sCSS1_left = "left";
37constexpr inline std::string_view sCSS1_right = "right";
38constexpr inline std::string_view sCSS1_first = "first";
39
40constexpr inline std::string_view sCSS1_url = "url";
41
42constexpr inline std::string_view sCSS1_UNIT_pt = "pt";
43constexpr inline std::string_view sCSS1_UNIT_mm = "mm";
44constexpr inline std::string_view sCSS1_UNIT_cm = "cm";
45constexpr inline std::string_view sCSS1_UNIT_pc = "pc";
46constexpr inline std::string_view sCSS1_UNIT_inch = "in";
47constexpr inline std::string_view sCSS1_UNIT_px = "px";
48
49// Strings for font properties
50
51constexpr inline std::string_view sCSS1_P_font_family = "font-family";
52
53constexpr inline std::string_view sCSS1_PV_serif = "serif";
54constexpr inline std::string_view sCSS1_PV_sans_serif = "sans-serif";
55constexpr inline std::string_view sCSS1_PV_cursive = "cursive";
56constexpr inline std::string_view sCSS1_PV_fantasy = "fantasy";
57constexpr inline std::string_view sCSS1_PV_monospace = "monospace";
58
59constexpr inline std::string_view sCSS1_P_font_style = "font-style";
60
61constexpr inline std::string_view sCSS1_PV_normal = "normal";
62constexpr inline std::string_view sCSS1_PV_italic = "italic";
63constexpr inline std::string_view sCSS1_PV_oblique = "oblique";
64
65constexpr inline std::string_view sCSS1_P_font_variant = "font-variant";
66
67//constexpr inline std::string_view sCSS1_PV_normal = "normal";
68constexpr inline std::string_view sCSS1_PV_small_caps = "small-caps";
69
70constexpr inline std::string_view sCSS1_P_text_transform = "text-transform";
71
72constexpr inline std::string_view sCSS1_PV_capitalize = "capitalize";
73constexpr inline std::string_view sCSS1_PV_uppercase = "uppercase";
74constexpr inline std::string_view sCSS1_PV_lowercase = "lowercase";
75
76constexpr inline std::string_view sCSS1_P_font_weight = "font-weight";
77
78constexpr inline std::string_view sCSS1_PV_extra_light = "extra-light";
79constexpr inline std::string_view sCSS1_PV_light = "light";
80constexpr inline std::string_view sCSS1_PV_demi_light = "demi-light";
81//constexpr inline std::string_view sCSS1_PV_medium = "medium";
82constexpr inline std::string_view sCSS1_PV_demi_bold = "demi-bold";
83constexpr inline std::string_view sCSS1_PV_bold = "bold";
84constexpr inline std::string_view sCSS1_PV_extra_bold = "extra-bold";
85
86constexpr inline std::string_view sCSS1_P_font_size = "font-size";
87
88constexpr inline std::string_view sCSS1_P_font = "font";
89
90// Strings for color and background properties
91
92constexpr inline std::string_view sCSS1_P_color = "color";
93
94constexpr inline std::string_view sCSS1_P_background = "background";
95constexpr inline std::string_view sCSS1_P_background_color = "background-color";
96
97constexpr inline std::string_view sCSS1_PV_transparent = "transparent";
98
99constexpr inline std::string_view sCSS1_PV_repeat = "repeat";
100constexpr inline std::string_view sCSS1_PV_no_repeat = "no-repeat";
101
102constexpr inline std::string_view sCSS1_PV_top = "top";
103constexpr inline std::string_view sCSS1_PV_middle = "middle";
104constexpr inline std::string_view sCSS1_PV_bottom = "bottom";
105
106constexpr inline std::string_view sCSS1_PV_scroll = "scroll";
107
108// Strings for text properties
109
110constexpr inline std::string_view sCSS1_P_letter_spacing = "letter-spacing";
111
112constexpr inline std::string_view sCSS1_P_text_decoration = "text-decoration";
113
114constexpr inline std::string_view sCSS1_PV_none = "none";
115constexpr inline std::string_view sCSS1_PV_underline = "underline";
116constexpr inline std::string_view sCSS1_PV_overline = "overline";
117constexpr inline std::string_view sCSS1_PV_line_through = "line-through";
118constexpr inline std::string_view sCSS1_PV_blink = "blink";
119
120constexpr inline std::string_view sCSS1_P_text_align = "text-align";
121
122constexpr inline std::string_view sCSS1_PV_left = "left";
123constexpr inline std::string_view sCSS1_PV_center = "center";
124constexpr inline std::string_view sCSS1_PV_right = "right";
125constexpr inline std::string_view sCSS1_PV_justify = "justify";
126
127constexpr inline std::string_view sCSS1_P_text_indent = "text-indent";
128
129constexpr inline std::string_view sCSS1_P_line_height = "line-height";
130
131constexpr inline std::string_view sCSS1_P_list_style_type = "list-style-type";
132
133// Strings for box properties
134
135constexpr inline std::string_view sCSS1_P_margin_left = "margin-left";
136constexpr inline std::string_view sCSS1_P_margin_right = "margin-right";
137constexpr inline std::string_view sCSS1_P_margin_top = "margin-top";
138constexpr inline std::string_view sCSS1_P_margin_bottom = "margin-bottom";
139constexpr inline std::string_view sCSS1_P_margin = "margin";
140
141constexpr inline std::string_view sCSS1_P_padding_top = "padding-top";
142constexpr inline std::string_view sCSS1_P_padding_bottom = "padding-bottom";
143constexpr inline std::string_view sCSS1_P_padding_left = "padding-left";
144constexpr inline std::string_view sCSS1_P_padding_right = "padding-right";
145constexpr inline std::string_view sCSS1_P_padding = "padding";
146
147constexpr inline std::string_view sCSS1_PV_auto = "auto";
148
149constexpr inline std::string_view sCSS1_P_border_left_width = "border-left-width";
150constexpr inline std::string_view sCSS1_P_border_right_width = "border-right-width";
151constexpr inline std::string_view sCSS1_P_border_top_width = "border-top-width";
152constexpr inline std::string_view sCSS1_P_border_bottom_width = "border-bottom-width";
153constexpr inline std::string_view sCSS1_P_border_width = "border-width";
154constexpr inline std::string_view sCSS1_P_border_color = "border-color";
155constexpr inline std::string_view sCSS1_P_border_style = "border-style";
156constexpr inline std::string_view sCSS1_P_border_left = "border-left";
157constexpr inline std::string_view sCSS1_P_border_right = "border-right";
158constexpr inline std::string_view sCSS1_P_border_top = "border-top";
159constexpr inline std::string_view sCSS1_P_border_bottom = "border-bottom";
160constexpr inline std::string_view sCSS1_P_border = "border";
161
162//constexpr inline std::string_view sCSS1_PV_none = "none";
163constexpr inline std::string_view sCSS1_PV_dotted = "dotted";
164constexpr inline std::string_view sCSS1_PV_dashed = "dashed";
165constexpr inline std::string_view sCSS1_PV_solid = "solid";
166constexpr inline std::string_view sCSS1_PV_double = "double";
167constexpr inline std::string_view sCSS1_PV_groove = "groove";
168constexpr inline std::string_view sCSS1_PV_ridge = "ridge";
169constexpr inline std::string_view sCSS1_PV_inset = "inset";
170constexpr inline std::string_view sCSS1_PV_outset = "outset";
171
172constexpr inline std::string_view sCSS1_P_width = "width";
173constexpr inline std::string_view sCSS1_P_max_width = "max-width";
174
175constexpr inline std::string_view sCSS1_P_height = "height";
176
177constexpr inline std::string_view sCSS1_P_float = "float";
178
179constexpr inline std::string_view sCSS1_P_column_count = "column-count";
180constexpr inline std::string_view sCSS1_P_dir = "dir";
181
182// Strings for positioning
183
184constexpr inline std::string_view sCSS1_P_position = "position";
185
186constexpr inline std::string_view sCSS1_PV_absolute = "absolute";
187
188constexpr inline std::string_view sCSS1_P_left = "left";
189
190constexpr inline std::string_view sCSS1_P_top = "top";
191
192// Strings for printing extensions
193
194constexpr inline std::string_view sCSS1_P_page_break_before = "page-break-before";
195constexpr inline std::string_view sCSS1_P_page_break_after = "page-break-after";
196constexpr inline std::string_view sCSS1_P_page_break_inside = "page-break-inside";
197constexpr inline std::string_view sCSS1_P_size = "size";
198constexpr inline std::string_view sCSS1_P_widows = "widows";
199constexpr inline std::string_view sCSS1_P_visibility = "visibility";
200constexpr inline std::string_view sCSS1_P_orphans = "orphans";
201//constexpr inline std::string_view sCSS1_P_marks = "marks";
202
203constexpr inline std::string_view sCSS1_PV_always = "always";
204constexpr inline std::string_view sCSS1_PV_avoid = "avoid";
205
206constexpr inline std::string_view sCSS1_PV_portrait = "portrait";
207constexpr inline std::string_view sCSS1_PV_landscape = "landscape";
208
209//constexpr inline std::string_view sCSS1_PV_crop = "crop";
210//constexpr inline std::string_view sCSS1_PV_cross = "cross";
211
212constexpr inline std::string_view sCSS1_P_so_language = "so-language";
213constexpr inline std::string_view sCSS1_P_direction = "direction";
214constexpr inline std::string_view sCSS1_PV_ltr = "ltr";
215constexpr inline std::string_view sCSS1_PV_rtl = "rtl";
216constexpr inline std::string_view sCSS1_PV_inherit = "inherit";
217
218constexpr inline std::string_view sCSS1_P_display = "display";
219
220#endif
221
222/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
constexpr std::string_view sCSS1_PV_center
Definition: css1kywd.hxx:123
constexpr std::string_view sCSS1_P_font_weight
Definition: css1kywd.hxx:76
constexpr std::string_view sCSS1_P_left
Definition: css1kywd.hxx:188
constexpr std::string_view sCSS1_PV_dotted
Definition: css1kywd.hxx:163
constexpr std::string_view sCSS1_PV_double
Definition: css1kywd.hxx:166
constexpr std::string_view sCSS1_P_border_style
Definition: css1kywd.hxx:155
constexpr std::string_view sCSS1_P_font_family
Definition: css1kywd.hxx:51
constexpr std::string_view sCSS1_P_width
Definition: css1kywd.hxx:172
constexpr std::string_view sCSS1_P_border_right
Definition: css1kywd.hxx:157
constexpr std::string_view sCSS1_P_column_count
Definition: css1kywd.hxx:179
constexpr std::string_view sCSS1_PV_extra_light
Definition: css1kywd.hxx:78
constexpr std::string_view sCSS1_P_margin_top
Definition: css1kywd.hxx:137
constexpr std::string_view sCSS1_PV_normal
Definition: css1kywd.hxx:61
constexpr std::string_view sCSS1_visited
Definition: css1kywd.hxx:33
constexpr std::string_view sCSS1_P_max_width
Definition: css1kywd.hxx:173
constexpr std::string_view sCSS1_UNIT_pt
Definition: css1kywd.hxx:42
constexpr std::string_view sCSS1_P_text_indent
Definition: css1kywd.hxx:127
constexpr std::string_view sCSS1_P_float
Definition: css1kywd.hxx:177
constexpr std::string_view sCSS1_PV_groove
Definition: css1kywd.hxx:167
constexpr std::string_view sCSS1_P_list_style_type
Definition: css1kywd.hxx:131
constexpr std::string_view sCSS1_first_letter
Definition: css1kywd.hxx:34
constexpr std::string_view sCSS1_P_font_variant
Definition: css1kywd.hxx:65
constexpr std::string_view sCSS1_PV_overline
Definition: css1kywd.hxx:116
constexpr std::string_view sCSS1_UNIT_pc
Definition: css1kywd.hxx:45
constexpr std::string_view sCSS1_PV_bottom
Definition: css1kywd.hxx:104
constexpr std::string_view sCSS1_link
Definition: css1kywd.hxx:32
constexpr std::string_view sCSS1_UNIT_inch
Definition: css1kywd.hxx:46
constexpr std::string_view sCSS1_P_height
Definition: css1kywd.hxx:175
constexpr std::string_view sCSS1_P_letter_spacing
Definition: css1kywd.hxx:110
constexpr std::string_view sCSS1_UNIT_px
Definition: css1kywd.hxx:47
constexpr std::string_view sCSS1_P_text_decoration
Definition: css1kywd.hxx:112
constexpr std::string_view sCSS1_P_size
Definition: css1kywd.hxx:197
constexpr std::string_view sCSS1_UNIT_mm
Definition: css1kywd.hxx:43
constexpr std::string_view sCSS1_PV_left
Definition: css1kywd.hxx:122
constexpr std::string_view sCSS1_P_background_color
Definition: css1kywd.hxx:95
constexpr std::string_view sCSS1_P_font_size
Definition: css1kywd.hxx:86
constexpr std::string_view sCSS1_PV_sans_serif
Definition: css1kywd.hxx:54
constexpr std::string_view sCSS1_PV_blink
Definition: css1kywd.hxx:118
constexpr std::string_view sCSS1_PV_cursive
Definition: css1kywd.hxx:55
constexpr std::string_view sCSS1_P_padding
Definition: css1kywd.hxx:145
constexpr std::string_view sCSS1_P_border_bottom_width
Definition: css1kywd.hxx:152
constexpr std::string_view sCSS1_PV_extra_bold
Definition: css1kywd.hxx:84
constexpr std::string_view sCSS1_PV_justify
Definition: css1kywd.hxx:125
constexpr std::string_view sCSS1_PV_serif
Definition: css1kywd.hxx:53
constexpr std::string_view sCSS1_PV_solid
Definition: css1kywd.hxx:165
constexpr std::string_view sCSS1_P_display
Definition: css1kywd.hxx:218
constexpr std::string_view sCSS1_PV_no_repeat
Definition: css1kywd.hxx:100
constexpr std::string_view sCSS1_P_orphans
Definition: css1kywd.hxx:200
constexpr std::string_view sCSS1_P_background
Definition: css1kywd.hxx:94
constexpr std::string_view sCSS1_P_dir
Definition: css1kywd.hxx:180
constexpr std::string_view sCSS1_P_page_break_before
Definition: css1kywd.hxx:194
constexpr std::string_view sCSS1_left
Definition: css1kywd.hxx:36
constexpr std::string_view sCSS1_PV_uppercase
Definition: css1kywd.hxx:73
constexpr std::string_view sCSS1_P_border_bottom
Definition: css1kywd.hxx:159
constexpr std::string_view sCSS1_P_padding_left
Definition: css1kywd.hxx:143
constexpr std::string_view sCSS1_P_text_align
Definition: css1kywd.hxx:120
constexpr std::string_view sCSS1_PV_light
Definition: css1kywd.hxx:79
constexpr std::string_view sCSS1_P_page_break_inside
Definition: css1kywd.hxx:196
constexpr std::string_view sCSS1_PV_middle
Definition: css1kywd.hxx:103
constexpr std::string_view sCSS1_P_border_top_width
Definition: css1kywd.hxx:151
constexpr std::string_view sCSS1_PV_lowercase
Definition: css1kywd.hxx:74
constexpr std::string_view sCSS1_first
Definition: css1kywd.hxx:38
constexpr std::string_view sCSS1_PV_ltr
Definition: css1kywd.hxx:214
constexpr std::string_view sCSS1_P_border_left
Definition: css1kywd.hxx:156
constexpr std::string_view sCSS1_P_widows
Definition: css1kywd.hxx:198
constexpr std::string_view sCSS1_P_direction
Definition: css1kywd.hxx:213
constexpr std::string_view sCSS1_P_visibility
Definition: css1kywd.hxx:199
constexpr std::string_view sCSS1_PV_landscape
Definition: css1kywd.hxx:207
constexpr std::string_view sCSS1_PV_small_caps
Definition: css1kywd.hxx:68
constexpr std::string_view sCSS1_PV_none
Definition: css1kywd.hxx:114
constexpr std::string_view sCSS1_P_line_height
Definition: css1kywd.hxx:129
constexpr std::string_view sCSS1_PV_bold
Definition: css1kywd.hxx:83
constexpr std::string_view sCSS1_PV_portrait
Definition: css1kywd.hxx:206
constexpr std::string_view sCSS1_P_font_style
Definition: css1kywd.hxx:59
constexpr std::string_view sCSS1_UNIT_cm
Definition: css1kywd.hxx:44
constexpr std::string_view sCSS1_PV_underline
Definition: css1kywd.hxx:115
constexpr std::string_view sCSS1_PV_ridge
Definition: css1kywd.hxx:168
constexpr std::string_view sCSS1_P_position
Definition: css1kywd.hxx:184
constexpr std::string_view sCSS1_url
Definition: css1kywd.hxx:40
constexpr std::string_view sCSS1_P_border
Definition: css1kywd.hxx:160
constexpr std::string_view sCSS1_P_so_language
Definition: css1kywd.hxx:212
constexpr std::string_view sCSS1_PV_rtl
Definition: css1kywd.hxx:215
constexpr std::string_view sCSS1_P_border_top
Definition: css1kywd.hxx:158
constexpr std::string_view sCSS1_PV_absolute
Definition: css1kywd.hxx:186
constexpr std::string_view sCSS1_P_border_width
Definition: css1kywd.hxx:153
constexpr std::string_view sCSS1_PV_monospace
Definition: css1kywd.hxx:57
constexpr std::string_view sCSS1_P_padding_bottom
Definition: css1kywd.hxx:142
constexpr std::string_view sCSS1_PV_demi_light
Definition: css1kywd.hxx:80
constexpr std::string_view sCSS1_PV_transparent
Definition: css1kywd.hxx:97
constexpr std::string_view sCSS1_PV_outset
Definition: css1kywd.hxx:170
constexpr std::string_view sCSS1_P_border_right_width
Definition: css1kywd.hxx:150
constexpr std::string_view sCSS1_P_page_break_after
Definition: css1kywd.hxx:195
constexpr std::string_view sCSS1_P_border_left_width
Definition: css1kywd.hxx:149
constexpr std::string_view sCSS1_PV_inset
Definition: css1kywd.hxx:169
constexpr std::string_view sCSS1_P_padding_right
Definition: css1kywd.hxx:144
constexpr std::string_view sCSS1_PV_demi_bold
Definition: css1kywd.hxx:82
constexpr std::string_view sCSS1_P_margin_left
Definition: css1kywd.hxx:135
constexpr std::string_view sCSS1_PV_top
Definition: css1kywd.hxx:102
constexpr std::string_view sCSS1_P_text_transform
Definition: css1kywd.hxx:70
constexpr std::string_view sCSS1_PV_line_through
Definition: css1kywd.hxx:117
constexpr std::string_view sCSS1_right
Definition: css1kywd.hxx:37
constexpr std::string_view sCSS1_PV_italic
Definition: css1kywd.hxx:62
constexpr std::string_view sCSS1_PV_inherit
Definition: css1kywd.hxx:216
constexpr std::string_view sCSS1_PV_oblique
Definition: css1kywd.hxx:63
constexpr std::string_view sCSS1_PV_right
Definition: css1kywd.hxx:124
constexpr std::string_view sCSS1_P_color
Definition: css1kywd.hxx:92
constexpr std::string_view sCSS1_P_margin_right
Definition: css1kywd.hxx:136
constexpr std::string_view sCSS1_PV_avoid
Definition: css1kywd.hxx:204
constexpr std::string_view sCSS1_PV_scroll
Definition: css1kywd.hxx:106
constexpr std::string_view sCSS1_PV_capitalize
Definition: css1kywd.hxx:72
constexpr std::string_view sCSS1_P_border_color
Definition: css1kywd.hxx:154
constexpr std::string_view sCSS1_P_top
Definition: css1kywd.hxx:190
constexpr std::string_view sCSS1_P_padding_top
Definition: css1kywd.hxx:141
constexpr std::string_view sCSS1_P_font
Definition: css1kywd.hxx:88
constexpr std::string_view sCSS1_P_margin_bottom
Definition: css1kywd.hxx:138
constexpr std::string_view sCSS1_PV_dashed
Definition: css1kywd.hxx:164
constexpr std::string_view sCSS1_P_margin
Definition: css1kywd.hxx:139
constexpr std::string_view sCSS1_page
Definition: css1kywd.hxx:29
constexpr std::string_view sCSS1_PV_auto
Definition: css1kywd.hxx:147
constexpr std::string_view sCSS1_PV_fantasy
Definition: css1kywd.hxx:56
constexpr std::string_view sCSS1_PV_repeat
Definition: css1kywd.hxx:99
constexpr std::string_view sCSS_mimetype
Definition: css1kywd.hxx:27
constexpr std::string_view sCSS1_PV_always
Definition: css1kywd.hxx:203