diff options
Diffstat (limited to '')
-rw-r--r-- | basctl/inc/strings.hxx | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/basctl/inc/strings.hxx b/basctl/inc/strings.hxx new file mode 100644 index 000000000..597092e8c --- /dev/null +++ b/basctl/inc/strings.hxx @@ -0,0 +1,42 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */ +/* + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + */ + +#pragma once + +#include <rtl/ustring.hxx> + +// Dialog Controls --------------------------------------------------------------- + +inline constexpr OUStringLiteral RID_STR_CLASS_CONTROL = u"Control"; +inline constexpr OUStringLiteral RID_STR_CLASS_DIALOG = u"Dialog"; +inline constexpr OUStringLiteral RID_STR_CLASS_BUTTON = u"CommandButton"; +inline constexpr OUStringLiteral RID_STR_CLASS_RADIOBUTTON = u"OptionButton"; +inline constexpr OUStringLiteral RID_STR_CLASS_CHECKBOX = u"CheckBox"; +inline constexpr OUStringLiteral RID_STR_CLASS_LISTBOX = u"ListBox"; +inline constexpr OUStringLiteral RID_STR_CLASS_COMBOBOX = u"ComboBox"; +inline constexpr OUStringLiteral RID_STR_CLASS_GROUPBOX = u"FrameControl"; +inline constexpr OUStringLiteral RID_STR_CLASS_EDIT = u"TextField"; +inline constexpr OUStringLiteral RID_STR_CLASS_FIXEDTEXT = u"Label"; +inline constexpr OUStringLiteral RID_STR_CLASS_IMAGECONTROL = u"ImageControl"; +inline constexpr OUStringLiteral RID_STR_CLASS_PROGRESSBAR = u"ProgressBar"; +inline constexpr OUStringLiteral RID_STR_CLASS_SCROLLBAR = u"ScrollBar"; +inline constexpr OUStringLiteral RID_STR_CLASS_FIXEDLINE = u"FixedLine"; +inline constexpr OUStringLiteral RID_STR_CLASS_DATEFIELD = u"DateField"; +inline constexpr OUStringLiteral RID_STR_CLASS_TIMEFIELD = u"TimeField"; +inline constexpr OUStringLiteral RID_STR_CLASS_NUMERICFIELD = u"NumericField"; +inline constexpr OUStringLiteral RID_STR_CLASS_CURRENCYFIELD = u"CurrencyField"; +inline constexpr OUStringLiteral RID_STR_CLASS_FORMATTEDFIELD = u"FormattedField"; +inline constexpr OUStringLiteral RID_STR_CLASS_PATTERNFIELD = u"PatternField"; +inline constexpr OUStringLiteral RID_STR_CLASS_FILECONTROL = u"FileControl"; +inline constexpr OUStringLiteral RID_STR_CLASS_TREECONTROL = u"TreeControl"; +inline constexpr OUStringLiteral RID_STR_CLASS_GRIDCONTROL = u"GridControl"; +inline constexpr OUStringLiteral RID_STR_CLASS_SPINCONTROL = u"SpinButton"; +inline constexpr OUStringLiteral RID_STR_CLASS_HYPERLINKCONTROL = u"HyperlinkControl"; + +/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */ |