Update git submodules
[LibreOffice.git] / basctl / inc / strings.hxx
blob5481d62de3260505e3895f0126ebf67102182d64
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
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 #pragma once
12 #include <rtl/ustring.hxx>
14 // Dialog Controls ---------------------------------------------------------------
16 inline constexpr OUString RID_STR_CLASS_CONTROL = u"Control"_ustr;
17 inline constexpr OUString RID_STR_CLASS_DIALOG = u"Dialog"_ustr;
18 inline constexpr OUString RID_STR_CLASS_BUTTON = u"CommandButton"_ustr;
19 inline constexpr OUString RID_STR_CLASS_RADIOBUTTON = u"OptionButton"_ustr;
20 inline constexpr OUString RID_STR_CLASS_CHECKBOX = u"CheckBox"_ustr;
21 inline constexpr OUString RID_STR_CLASS_LISTBOX = u"ListBox"_ustr;
22 inline constexpr OUString RID_STR_CLASS_COMBOBOX = u"ComboBox"_ustr;
23 inline constexpr OUString RID_STR_CLASS_GROUPBOX = u"FrameControl"_ustr;
24 inline constexpr OUString RID_STR_CLASS_EDIT = u"TextField"_ustr;
25 inline constexpr OUString RID_STR_CLASS_FIXEDTEXT = u"Label"_ustr;
26 inline constexpr OUString RID_STR_CLASS_IMAGECONTROL = u"ImageControl"_ustr;
27 inline constexpr OUString RID_STR_CLASS_PROGRESSBAR = u"ProgressBar"_ustr;
28 inline constexpr OUString RID_STR_CLASS_SCROLLBAR = u"ScrollBar"_ustr;
29 inline constexpr OUString RID_STR_CLASS_FIXEDLINE = u"FixedLine"_ustr;
30 inline constexpr OUString RID_STR_CLASS_DATEFIELD = u"DateField"_ustr;
31 inline constexpr OUString RID_STR_CLASS_TIMEFIELD = u"TimeField"_ustr;
32 inline constexpr OUString RID_STR_CLASS_NUMERICFIELD = u"NumericField"_ustr;
33 inline constexpr OUString RID_STR_CLASS_CURRENCYFIELD = u"CurrencyField"_ustr;
34 inline constexpr OUString RID_STR_CLASS_FORMATTEDFIELD = u"FormattedField"_ustr;
35 inline constexpr OUString RID_STR_CLASS_PATTERNFIELD = u"PatternField"_ustr;
36 inline constexpr OUString RID_STR_CLASS_FILECONTROL = u"FileControl"_ustr;
37 inline constexpr OUString RID_STR_CLASS_TREECONTROL = u"TreeControl"_ustr;
38 inline constexpr OUString RID_STR_CLASS_GRIDCONTROL = u"GridControl"_ustr;
39 inline constexpr OUString RID_STR_CLASS_SPINCONTROL = u"SpinButton"_ustr;
40 inline constexpr OUString RID_STR_CLASS_HYPERLINKCONTROL = u"HyperlinkControl"_ustr;
42 /* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */