/* -*- 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 // Dialog Controls --------------------------------------------------------------- #define RID_STR_CLASS_CONTROL "Control" #define RID_STR_CLASS_DIALOG "Dialog" #define RID_STR_CLASS_BUTTON "CommandButton" #define RID_STR_CLASS_RADIOBUTTON "OptionButton" #define RID_STR_CLASS_CHECKBOX "CheckBox" #define RID_STR_CLASS_LISTBOX "ListBox" #define RID_STR_CLASS_COMBOBOX "ComboBox" #define RID_STR_CLASS_GROUPBOX "FrameControl" #define RID_STR_CLASS_EDIT "TextField" #define RID_STR_CLASS_FIXEDTEXT "Label" #define RID_STR_CLASS_IMAGECONTROL "ImageControl" #define RID_STR_CLASS_PROGRESSBAR "ProgressBar" #define RID_STR_CLASS_SCROLLBAR "ScrollBar" #define RID_STR_CLASS_FIXEDLINE "FixedLine" #define RID_STR_CLASS_DATEFIELD "DateField" #define RID_STR_CLASS_TIMEFIELD "TimeField" #define RID_STR_CLASS_NUMERICFIELD "NumericField" #define RID_STR_CLASS_CURRENCYFIELD "CurrencyField" #define RID_STR_CLASS_FORMATTEDFIELD "FormattedField" #define RID_STR_CLASS_PATTERNFIELD "PatternField" #define RID_STR_CLASS_FILECONTROL "FileControl" #define RID_STR_CLASS_TREECONTROL "TreeControl" #define RID_STR_CLASS_GRIDCONTROL "GridControl" #define RID_STR_CLASS_SPINCONTROL "SpinButton" #define RID_STR_CLASS_HYPERLINKCONTROL "HyperlinkControl" /* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */