tdf#130857 qt weld: Implement QtInstanceWidget::strip_mnemonic
[LibreOffice.git] / include / editeng / unonames.hxx
blobb1de4de3cb91cb50c322e40ca100744400727f2d
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/.
8 */
10 #ifndef INCLUDED_EDITENG_UNONAMES_HXX
11 #define INCLUDED_EDITENG_UNONAMES_HXX
13 #include <rtl/ustring.hxx>
15 // Common across fields
16 inline constexpr OUString UNO_TC_PROP_ANCHOR = u"Anchor"_ustr;
17 inline constexpr OUString UNO_TC_PROP_TEXTFIELD_TYPE = u"TextFieldType"_ustr;
18 inline constexpr OUString UNO_TC_PROP_IS_FIXED = u"IsFixed"_ustr;
19 inline constexpr OUString UNO_TC_PROP_CURRENT_PRESENTATION = u"CurrentPresentation"_ustr;
20 inline constexpr OUString UNO_TC_PROP_NAME = u"Name"_ustr;
21 inline constexpr OUString UNO_TC_PROP_IS_FIXED_LANGUAGE = u"IsFixedLanguage"_ustr;
22 inline constexpr OUString UNO_TC_PROP_NUMFORMAT = u"NumberFormat"_ustr;
24 // Date & Time
25 inline constexpr OUString UNO_TC_PROP_IS_DATE = u"IsDate"_ustr;
26 inline constexpr OUString UNO_TC_PROP_DATE_TIME = u"DateTime"_ustr;
28 // URL
29 inline constexpr OUString UNO_TC_PROP_URL_FORMAT = u"Format"_ustr;
30 inline constexpr OUString UNO_TC_PROP_URL_REPRESENTATION = u"Representation"_ustr;
31 inline constexpr OUString UNO_TC_PROP_URL_TARGET = u"TargetFrame"_ustr;
32 inline constexpr OUString UNO_TC_PROP_URL = u"URL"_ustr;
34 // Table
35 inline constexpr OUString UNO_TC_PROP_TABLE_POSITION = u"TablePosition"_ustr;
37 // File
38 inline constexpr OUString UNO_TC_PROP_FILE_FORMAT = u"FileFormat"_ustr;
40 // Author
41 inline constexpr OUString UNO_TC_PROP_AUTHOR_CONTENT = u"Content"_ustr;
42 inline constexpr OUString UNO_TC_PROP_AUTHOR_FORMAT = u"AuthorFormat"_ustr;
43 inline constexpr OUString UNO_TC_PROP_AUTHOR_FULLNAME = u"FullName"_ustr;
45 // Measure
46 inline constexpr OUString UNO_TC_PROP_MEASURE_KIND = u"Kind"_ustr;
48 inline constexpr OUString UNO_TR_PROP_SELECTION = u"Selection"_ustr;
50 #endif // INCLUDED_EDITENG_UNONAMES_HXX
52 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */