2017-04-30 08:58:50 -05:00
|
|
|
/* -*- 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/.
|
|
|
|
*/
|
|
|
|
|
2019-12-21 16:30:32 -06:00
|
|
|
#pragma once
|
2017-04-30 08:58:50 -05:00
|
|
|
|
2021-12-31 09:52:16 -06:00
|
|
|
#include <rtl/ustring.hxx>
|
|
|
|
|
2017-04-30 08:58:50 -05:00
|
|
|
// Dialog Controls ---------------------------------------------------------------
|
|
|
|
|
2021-11-18 06:01:23 -06:00
|
|
|
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";
|
2017-04-30 08:58:50 -05:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */
|