LibreOffice Module forms (master) 1
services.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
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 *
9 * This file incorporates work covered by the following license notice:
10 *
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 */
19
20#pragma once
21
22#include <rtl/ustring.hxx>
23
24inline constexpr OUStringLiteral VCL_CONTROL_LISTBOX = u"stardiv.vcl.control.ListBox";
25inline constexpr OUStringLiteral VCL_CONTROL_COMBOBOX = u"stardiv.vcl.control.ComboBox";
26inline constexpr OUStringLiteral VCL_CONTROL_RADIOBUTTON = u"stardiv.vcl.control.RadioButton";
27inline constexpr OUStringLiteral VCL_CONTROL_GROUPBOX = u"stardiv.vcl.control.GroupBox";
28inline constexpr OUStringLiteral VCL_CONTROL_COMMANDBUTTON = u"stardiv.vcl.control.Button";
29inline constexpr OUStringLiteral VCL_CONTROL_CHECKBOX = u"stardiv.vcl.control.CheckBox";
30inline constexpr OUStringLiteral VCL_CONTROL_IMAGEBUTTON = u"stardiv.vcl.control.ImageButton";
31inline constexpr OUStringLiteral VCL_CONTROL_TIMEFIELD = u"stardiv.vcl.control.TimeField";
32inline constexpr OUStringLiteral VCL_CONTROL_DATEFIELD = u"stardiv.vcl.control.DateField";
33inline constexpr OUStringLiteral VCL_CONTROL_NUMERICFIELD = u"stardiv.vcl.control.NumericField";
34inline constexpr OUStringLiteral VCL_CONTROL_CURRENCYFIELD = u"stardiv.vcl.control.CurrencyField";
35inline constexpr OUStringLiteral VCL_CONTROL_PATTERNFIELD = u"stardiv.vcl.control.PatternField";
36inline constexpr OUStringLiteral VCL_CONTROL_FORMATTEDFIELD = u"stardiv.vcl.control.FormattedField";
37inline constexpr OUStringLiteral VCL_CONTROL_IMAGECONTROL = u"stardiv.vcl.control.ImageControl";
38
39inline constexpr OUStringLiteral VCL_CONTROLMODEL_EDIT = u"stardiv.vcl.controlmodel.Edit";
40inline constexpr OUStringLiteral VCL_CONTROLMODEL_LISTBOX = u"stardiv.vcl.controlmodel.ListBox";
41inline constexpr OUStringLiteral VCL_CONTROLMODEL_COMBOBOX = u"stardiv.vcl.controlmodel.ComboBox";
42inline constexpr OUStringLiteral VCL_CONTROLMODEL_RADIOBUTTON = u"stardiv.vcl.controlmodel.RadioButton";
43inline constexpr OUStringLiteral VCL_CONTROLMODEL_GROUPBOX = u"stardiv.vcl.controlmodel.GroupBox";
44inline constexpr OUStringLiteral VCL_CONTROLMODEL_FIXEDTEXT = u"stardiv.vcl.controlmodel.FixedText";
45inline constexpr OUStringLiteral VCL_CONTROLMODEL_COMMANDBUTTON = u"stardiv.vcl.controlmodel.Button";
46inline constexpr OUStringLiteral VCL_CONTROLMODEL_CHECKBOX = u"stardiv.vcl.controlmodel.CheckBox";
47inline constexpr OUStringLiteral VCL_CONTROLMODEL_IMAGEBUTTON = u"stardiv.vcl.controlmodel.ImageButton";
48inline constexpr OUStringLiteral VCL_CONTROLMODEL_FILECONTROL = u"stardiv.vcl.controlmodel.FileControl";
49inline constexpr OUStringLiteral VCL_CONTROLMODEL_TIMEFIELD = u"stardiv.vcl.controlmodel.TimeField";
50inline constexpr OUStringLiteral VCL_CONTROLMODEL_DATEFIELD = u"stardiv.vcl.controlmodel.DateField";
51inline constexpr OUStringLiteral VCL_CONTROLMODEL_NUMERICFIELD = u"stardiv.vcl.controlmodel.NumericField";
52inline constexpr OUStringLiteral VCL_CONTROLMODEL_CURRENCYFIELD = u"stardiv.vcl.controlmodel.CurrencyField";
53inline constexpr OUStringLiteral VCL_CONTROLMODEL_PATTERNFIELD = u"stardiv.vcl.controlmodel.PatternField";
54inline constexpr OUStringLiteral VCL_CONTROLMODEL_FORMATTEDFIELD = u"stardiv.vcl.controlmodel.FormattedField";
55inline constexpr OUStringLiteral VCL_CONTROLMODEL_IMAGECONTROL = u"stardiv.vcl.controlmodel.ImageControl";
56
57inline constexpr OUStringLiteral VCL_CONTROLMODEL_SCROLLBAR = u"com.sun.star.awt.UnoControlScrollBarModel";
58inline constexpr OUStringLiteral VCL_CONTROL_SCROLLBAR = u"com.sun.star.awt.UnoControlScrollBar";
59inline constexpr OUStringLiteral VCL_CONTROLMODEL_SPINBUTTON = u"com.sun.star.awt.UnoControlSpinButtonModel";
60inline constexpr OUStringLiteral VCL_CONTROL_SPINBUTTON = u"com.sun.star.awt.UnoControlSpinButton";
61
62// service names for compatibility
63
64inline constexpr OUStringLiteral FRM_COMPONENT_FORM = u"stardiv.one.form.component.Form";
65inline constexpr OUStringLiteral FRM_COMPONENT_EDIT = u"stardiv.one.form.component.Edit"; // compatibility
66inline constexpr OUStringLiteral FRM_COMPONENT_TEXTFIELD = u"stardiv.one.form.component.TextField";
67inline constexpr OUStringLiteral FRM_COMPONENT_LISTBOX = u"stardiv.one.form.component.ListBox";
68inline constexpr OUStringLiteral FRM_COMPONENT_COMBOBOX = u"stardiv.one.form.component.ComboBox";
69inline constexpr OUStringLiteral FRM_COMPONENT_RADIOBUTTON = u"stardiv.one.form.component.RadioButton";
70inline constexpr OUStringLiteral FRM_COMPONENT_GROUPBOX = u"stardiv.one.form.component.GroupBox"; // compatibility
71inline constexpr OUStringLiteral FRM_COMPONENT_FIXEDTEXT = u"stardiv.one.form.component.FixedText"; // compatibility
72inline constexpr OUStringLiteral FRM_COMPONENT_COMMANDBUTTON = u"stardiv.one.form.component.CommandButton";
73inline constexpr OUStringLiteral FRM_COMPONENT_CHECKBOX = u"stardiv.one.form.component.CheckBox";
74inline constexpr OUStringLiteral FRM_COMPONENT_GRID = u"stardiv.one.form.component.Grid"; // compatibility
75inline constexpr OUStringLiteral FRM_COMPONENT_GRIDCONTROL = u"stardiv.one.form.component.GridControl";
76inline constexpr OUStringLiteral FRM_COMPONENT_IMAGEBUTTON = u"stardiv.one.form.component.ImageButton";
77inline constexpr OUStringLiteral FRM_COMPONENT_FILECONTROL = u"stardiv.one.form.component.FileControl";
78inline constexpr OUStringLiteral FRM_COMPONENT_TIMEFIELD = u"stardiv.one.form.component.TimeField";
79inline constexpr OUStringLiteral FRM_COMPONENT_DATEFIELD = u"stardiv.one.form.component.DateField";
80inline constexpr OUStringLiteral FRM_COMPONENT_NUMERICFIELD = u"stardiv.one.form.component.NumericField";
81inline constexpr OUStringLiteral FRM_COMPONENT_CURRENCYFIELD = u"stardiv.one.form.component.CurrencyField";
82inline constexpr OUStringLiteral FRM_COMPONENT_PATTERNFIELD = u"stardiv.one.form.component.PatternField";
83inline constexpr OUStringLiteral FRM_COMPONENT_HIDDEN = u"stardiv.one.form.component.Hidden";
84inline constexpr OUStringLiteral FRM_COMPONENT_HIDDENCONTROL = u"stardiv.one.form.component.HiddenControl";
85inline constexpr OUStringLiteral FRM_COMPONENT_IMAGECONTROL = u"stardiv.one.form.component.ImageControl";
86inline constexpr OUStringLiteral FRM_COMPONENT_FORMATTEDFIELD = u"stardiv.one.form.component.FormattedField";
87
88// <compatibility_I>
89inline constexpr OUStringLiteral STARDIV_ONE_FORM_CONTROL_COMMANDBUTTON = u"stardiv.one.form.control.CommandButton";
90inline constexpr OUStringLiteral STARDIV_ONE_FORM_CONTROL_RADIOBUTTON = u"stardiv.one.form.control.RadioButton";
91inline constexpr OUStringLiteral STARDIV_ONE_FORM_CONTROL_CHECKBOX = u"stardiv.one.form.control.CheckBox";
92inline constexpr OUStringLiteral STARDIV_ONE_FORM_CONTROL_EDIT = u"stardiv.one.form.control.Edit";
93inline constexpr OUStringLiteral STARDIV_ONE_FORM_CONTROL_LISTBOX = u"stardiv.one.form.control.ListBox";
94inline constexpr OUStringLiteral STARDIV_ONE_FORM_CONTROL_COMBOBOX = u"stardiv.one.form.control.ComboBox";
95inline constexpr OUStringLiteral STARDIV_ONE_FORM_CONTROL_GROUPBOX = u"stardiv.one.form.control.GroupBox";
96inline constexpr OUStringLiteral STARDIV_ONE_FORM_CONTROL_TEXTFIELD = u"stardiv.one.form.control.TextField";
97inline constexpr OUStringLiteral STARDIV_ONE_FORM_CONTROL_GRID = u"stardiv.one.form.control.Grid";
98inline constexpr OUStringLiteral STARDIV_ONE_FORM_CONTROL_IMAGEBUTTON = u"stardiv.one.form.control.ImageButton";
99inline constexpr OUStringLiteral STARDIV_ONE_FORM_CONTROL_TIMEFIELD = u"stardiv.one.form.control.TimeField";
100inline constexpr OUStringLiteral STARDIV_ONE_FORM_CONTROL_DATEFIELD = u"stardiv.one.form.control.DateField";
101inline constexpr OUStringLiteral STARDIV_ONE_FORM_CONTROL_NUMERICFIELD = u"stardiv.one.form.control.NumericField";
102inline constexpr OUStringLiteral STARDIV_ONE_FORM_CONTROL_CURRENCYFIELD = u"stardiv.one.form.control.CurrencyField";
103inline constexpr OUStringLiteral STARDIV_ONE_FORM_CONTROL_PATTERNFIELD = u"stardiv.one.form.control.PatternField";
104inline constexpr OUStringLiteral STARDIV_ONE_FORM_CONTROL_IMAGECONTROL = u"stardiv.one.form.control.ImageControl";
105inline constexpr OUStringLiteral STARDIV_ONE_FORM_CONTROL_FORMATTEDFIELD = u"stardiv.one.form.control.FormattedField";
106// </compatibility_I>
107
108// new (sun) service names
109
110inline constexpr OUStringLiteral FRM_SUN_COMPONENT_FORM = u"com.sun.star.form.component.Form";
111inline constexpr OUStringLiteral FRM_SUN_COMPONENT_HTMLFORM = u"com.sun.star.form.component.HTMLForm";
112inline constexpr OUStringLiteral FRM_SUN_COMPONENT_DATAFORM = u"com.sun.star.form.component.DataForm";
113inline constexpr OUStringLiteral FRM_SUN_COMPONENT_TEXTFIELD = u"com.sun.star.form.component.TextField";
114inline constexpr OUStringLiteral FRM_SUN_COMPONENT_LISTBOX = u"com.sun.star.form.component.ListBox";
115inline constexpr OUStringLiteral FRM_SUN_COMPONENT_COMBOBOX = u"com.sun.star.form.component.ComboBox";
116inline constexpr OUStringLiteral FRM_SUN_COMPONENT_RADIOBUTTON = u"com.sun.star.form.component.RadioButton";
117inline constexpr OUStringLiteral FRM_SUN_COMPONENT_GROUPBOX = u"com.sun.star.form.component.GroupBox";
118inline constexpr OUStringLiteral FRM_SUN_COMPONENT_FIXEDTEXT = u"com.sun.star.form.component.FixedText";
119inline constexpr OUStringLiteral FRM_SUN_COMPONENT_COMMANDBUTTON = u"com.sun.star.form.component.CommandButton";
120inline constexpr OUStringLiteral FRM_SUN_COMPONENT_CHECKBOX = u"com.sun.star.form.component.CheckBox";
121inline constexpr OUStringLiteral FRM_SUN_COMPONENT_GRIDCONTROL = u"com.sun.star.form.component.GridControl";
122inline constexpr OUStringLiteral FRM_SUN_COMPONENT_IMAGEBUTTON = u"com.sun.star.form.component.ImageButton";
123inline constexpr OUStringLiteral FRM_SUN_COMPONENT_FILECONTROL = u"com.sun.star.form.component.FileControl";
124inline constexpr OUStringLiteral FRM_SUN_COMPONENT_TIMEFIELD = u"com.sun.star.form.component.TimeField";
125inline constexpr OUStringLiteral FRM_SUN_COMPONENT_DATEFIELD = u"com.sun.star.form.component.DateField";
126inline constexpr OUStringLiteral FRM_SUN_COMPONENT_NUMERICFIELD = u"com.sun.star.form.component.NumericField";
127inline constexpr OUStringLiteral FRM_SUN_COMPONENT_CURRENCYFIELD = u"com.sun.star.form.component.CurrencyField";
128inline constexpr OUStringLiteral FRM_SUN_COMPONENT_PATTERNFIELD = u"com.sun.star.form.component.PatternField";
129inline constexpr OUStringLiteral FRM_SUN_COMPONENT_HIDDENCONTROL = u"com.sun.star.form.component.HiddenControl";
130inline constexpr OUStringLiteral FRM_SUN_COMPONENT_FORMATTEDFIELD = u"com.sun.star.form.component.FormattedField";
131inline constexpr OUStringLiteral FRM_SUN_COMPONENT_SCROLLBAR = u"com.sun.star.form.component.ScrollBar";
132inline constexpr OUStringLiteral FRM_SUN_COMPONENT_SPINBUTTON = u"com.sun.star.form.component.SpinButton";
133inline constexpr OUStringLiteral FRM_SUN_COMPONENT_RICHTEXTCONTROL = u"com.sun.star.form.component.RichTextControl";
134inline constexpr OUStringLiteral FRM_SUN_COMPONENT_NAVTOOLBAR = u"com.sun.star.form.component.NavigationToolBar";
135inline constexpr OUStringLiteral FRM_SUN_COMPONENT_SUBMITBUTTON = u"com.sun.star.form.component.SubmitButton";
136
137inline constexpr OUStringLiteral FRM_SUN_COMPONENT_IMAGECONTROL = u"com.sun.star.form.component.DatabaseImageControl";
138inline constexpr OUStringLiteral FRM_SUN_COMPONENT_DATABASE_RADIOBUTTON = u"com.sun.star.form.component.DatabaseRadioButton";
139inline constexpr OUStringLiteral FRM_SUN_COMPONENT_DATABASE_CHECKBOX = u"com.sun.star.form.component.DatabaseCheckBox";
140inline constexpr OUStringLiteral FRM_SUN_COMPONENT_DATABASE_LISTBOX = u"com.sun.star.form.component.DatabaseListBox";
141inline constexpr OUStringLiteral FRM_SUN_COMPONENT_DATABASE_COMBOBOX = u"com.sun.star.form.component.DatabaseComboBox";
142inline constexpr OUStringLiteral FRM_SUN_COMPONENT_DATABASE_FORMATTEDFIELD = u"com.sun.star.form.component.DatabaseFormattedField";
143inline constexpr OUStringLiteral FRM_SUN_COMPONENT_DATABASE_TEXTFIELD = u"com.sun.star.form.component.DatabaseTextField";
144inline constexpr OUStringLiteral FRM_SUN_COMPONENT_DATABASE_DATEFIELD = u"com.sun.star.form.component.DatabaseDateField";
145inline constexpr OUStringLiteral FRM_SUN_COMPONENT_DATABASE_TIMEFIELD = u"com.sun.star.form.component.DatabaseTimeField";
146inline constexpr OUStringLiteral FRM_SUN_COMPONENT_DATABASE_NUMERICFIELD = u"com.sun.star.form.component.DatabaseNumericField";
147inline constexpr OUStringLiteral FRM_SUN_COMPONENT_DATABASE_CURRENCYFIELD = u"com.sun.star.form.component.DatabaseCurrencyField";
148inline constexpr OUStringLiteral FRM_SUN_COMPONENT_DATABASE_PATTERNFIELD = u"com.sun.star.form.component.DatabasePatternField";
149
150inline constexpr OUStringLiteral FRM_SUN_CONTROL_TEXTFIELD = u"com.sun.star.form.control.TextField";
151inline constexpr OUStringLiteral FRM_SUN_CONTROL_LISTBOX = u"com.sun.star.form.control.ListBox";
152inline constexpr OUStringLiteral FRM_SUN_CONTROL_COMBOBOX = u"com.sun.star.form.control.ComboBox";
153inline constexpr OUStringLiteral FRM_SUN_CONTROL_RADIOBUTTON = u"com.sun.star.form.control.RadioButton";
154inline constexpr OUStringLiteral FRM_SUN_CONTROL_GROUPBOX = u"com.sun.star.form.control.GroupBox";
155inline constexpr OUStringLiteral FRM_SUN_CONTROL_COMMANDBUTTON = u"com.sun.star.form.control.CommandButton";
156inline constexpr OUStringLiteral FRM_SUN_CONTROL_CHECKBOX = u"com.sun.star.form.control.CheckBox";
157inline constexpr OUStringLiteral FRM_SUN_CONTROL_GRIDCONTROL = u"com.sun.star.form.control.GridControl";
158inline constexpr OUStringLiteral FRM_SUN_CONTROL_IMAGEBUTTON = u"com.sun.star.form.control.ImageButton";
159inline constexpr OUStringLiteral FRM_SUN_CONTROL_TIMEFIELD = u"com.sun.star.form.control.TimeField";
160inline constexpr OUStringLiteral FRM_SUN_CONTROL_DATEFIELD = u"com.sun.star.form.control.DateField";
161inline constexpr OUStringLiteral FRM_SUN_CONTROL_NUMERICFIELD = u"com.sun.star.form.control.NumericField";
162inline constexpr OUStringLiteral FRM_SUN_CONTROL_CURRENCYFIELD = u"com.sun.star.form.control.CurrencyField";
163inline constexpr OUStringLiteral FRM_SUN_CONTROL_PATTERNFIELD = u"com.sun.star.form.control.PatternField";
164inline constexpr OUStringLiteral FRM_SUN_CONTROL_IMAGECONTROL = u"com.sun.star.form.control.ImageControl";
165inline constexpr OUStringLiteral FRM_SUN_CONTROL_FORMATTEDFIELD = u"com.sun.star.form.control.FormattedField";
166inline constexpr OUStringLiteral FRM_SUN_CONTROL_RICHTEXTCONTROL = u"com.sun.star.form.control.RichTextControl";
167inline constexpr OUStringLiteral FRM_SUN_CONTROL_SUBMITBUTTON = u"com.sun.star.form.control.SubmitButton";
168
169inline constexpr OUStringLiteral BINDABLE_DATABASE_CHECK_BOX = u"com.sun.star.form.binding.BindableDatabaseCheckBox";
170inline constexpr OUStringLiteral BINDABLE_DATABASE_COMBO_BOX = u"com.sun.star.form.binding.BindableDatabaseComboBox";
171inline constexpr OUStringLiteral BINDABLE_DATABASE_FORMATTED_FIELD = u"com.sun.star.form.binding.BindableDatabaseFormattedField";
172inline constexpr OUStringLiteral BINDABLE_DATABASE_LIST_BOX = u"com.sun.star.form.binding.BindableDatabaseListBox";
173inline constexpr OUStringLiteral BINDABLE_DATABASE_NUMERIC_FIELD = u"com.sun.star.form.binding.BindableDatabaseNumericField";
174inline constexpr OUStringLiteral BINDABLE_DATABASE_RADIO_BUTTON = u"com.sun.star.form.binding.BindableDatabaseRadioButton";
175inline constexpr OUStringLiteral BINDABLE_DATABASE_TEXT_FIELD = u"com.sun.star.form.binding.BindableDatabaseTextField";
176inline constexpr OUStringLiteral BINDABLE_DATABASE_DATE_FIELD = u"com.sun.star.form.binding.BindableDatabaseDateField";
177inline constexpr OUStringLiteral BINDABLE_DATABASE_TIME_FIELD = u"com.sun.star.form.binding.BindableDatabaseTimeField";
178
179inline constexpr OUStringLiteral BINDABLE_CONTROL_MODEL = u"com.sun.star.form.binding.BindableControlModel";
180inline constexpr OUStringLiteral BINDABLE_INTEGER_VALUE_RANGE = u"com.sun.star.form.binding.BindableIntegerValueRange";
181inline constexpr OUStringLiteral BINDABLE_DATA_AWARE_CONTROL_MODEL = u"com.sun.star.form.binding.BindableDataAwareControlModel";
182inline constexpr OUStringLiteral DATA_AWARE_CONTROL_MODEL = u"com.sun.star.form.binding.DataAwareControlModel";
183inline constexpr OUStringLiteral VALIDATABLE_CONTROL_MODEL = u"com.sun.star.form.binding.ValidatableControlModel";
184inline constexpr OUStringLiteral VALIDATABLE_BINDABLE_CONTROL_MODEL = u"com.sun.star.form.binding.ValidatableBindableControlModel";
185
186// common
187
188inline constexpr OUStringLiteral FRM_SUN_FORMCOMPONENT = u"com.sun.star.form.FormComponent";
189
190// misc
191
192inline constexpr OUStringLiteral SRV_SDB_ROWSET = u"com.sun.star.sdb.RowSet";
193inline constexpr OUStringLiteral SRV_SDB_CONNECTION = u"com.sun.star.sdb.Connection";
194
195/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
float u
constexpr OUStringLiteral FRM_SUN_CONTROL_COMBOBOX
Definition: services.hxx:152
constexpr OUStringLiteral BINDABLE_DATABASE_COMBO_BOX
Definition: services.hxx:170
constexpr OUStringLiteral VCL_CONTROLMODEL_IMAGEBUTTON
Definition: services.hxx:47
constexpr OUStringLiteral FRM_SUN_COMPONENT_SCROLLBAR
Definition: services.hxx:131
constexpr OUStringLiteral FRM_COMPONENT_IMAGECONTROL
Definition: services.hxx:85
constexpr OUStringLiteral FRM_SUN_COMPONENT_DATABASE_PATTERNFIELD
Definition: services.hxx:148
constexpr OUStringLiteral FRM_SUN_CONTROL_TIMEFIELD
Definition: services.hxx:159
constexpr OUStringLiteral VCL_CONTROLMODEL_SPINBUTTON
Definition: services.hxx:59
constexpr OUStringLiteral STARDIV_ONE_FORM_CONTROL_COMMANDBUTTON
Definition: services.hxx:89
constexpr OUStringLiteral BINDABLE_DATABASE_NUMERIC_FIELD
Definition: services.hxx:173
constexpr OUStringLiteral STARDIV_ONE_FORM_CONTROL_IMAGEBUTTON
Definition: services.hxx:98
constexpr OUStringLiteral FRM_SUN_FORMCOMPONENT
Definition: services.hxx:188
constexpr OUStringLiteral FRM_SUN_COMPONENT_DATABASE_TEXTFIELD
Definition: services.hxx:143
constexpr OUStringLiteral FRM_SUN_COMPONENT_TIMEFIELD
Definition: services.hxx:124
constexpr OUStringLiteral FRM_SUN_COMPONENT_IMAGECONTROL
Definition: services.hxx:137
constexpr OUStringLiteral STARDIV_ONE_FORM_CONTROL_COMBOBOX
Definition: services.hxx:94
constexpr OUStringLiteral STARDIV_ONE_FORM_CONTROL_CURRENCYFIELD
Definition: services.hxx:102
constexpr OUStringLiteral BINDABLE_DATABASE_CHECK_BOX
Definition: services.hxx:169
constexpr OUStringLiteral FRM_SUN_COMPONENT_SPINBUTTON
Definition: services.hxx:132
constexpr OUStringLiteral FRM_SUN_COMPONENT_CURRENCYFIELD
Definition: services.hxx:127
constexpr OUStringLiteral FRM_SUN_COMPONENT_COMMANDBUTTON
Definition: services.hxx:119
constexpr OUStringLiteral FRM_SUN_CONTROL_GROUPBOX
Definition: services.hxx:154
constexpr OUStringLiteral STARDIV_ONE_FORM_CONTROL_DATEFIELD
Definition: services.hxx:100
constexpr OUStringLiteral VCL_CONTROLMODEL_FILECONTROL
Definition: services.hxx:48
constexpr OUStringLiteral VCL_CONTROL_RADIOBUTTON
Definition: services.hxx:26
constexpr OUStringLiteral VCL_CONTROLMODEL_CHECKBOX
Definition: services.hxx:46
constexpr OUStringLiteral FRM_SUN_COMPONENT_DATAFORM
Definition: services.hxx:112
constexpr OUStringLiteral STARDIV_ONE_FORM_CONTROL_PATTERNFIELD
Definition: services.hxx:103
constexpr OUStringLiteral FRM_SUN_COMPONENT_DATABASE_RADIOBUTTON
Definition: services.hxx:138
constexpr OUStringLiteral FRM_SUN_CONTROL_DATEFIELD
Definition: services.hxx:160
constexpr OUStringLiteral FRM_SUN_COMPONENT_RADIOBUTTON
Definition: services.hxx:116
constexpr OUStringLiteral VCL_CONTROLMODEL_FIXEDTEXT
Definition: services.hxx:44
constexpr OUStringLiteral FRM_SUN_CONTROL_CURRENCYFIELD
Definition: services.hxx:162
constexpr OUStringLiteral FRM_SUN_COMPONENT_COMBOBOX
Definition: services.hxx:115
constexpr OUStringLiteral FRM_SUN_COMPONENT_SUBMITBUTTON
Definition: services.hxx:135
constexpr OUStringLiteral BINDABLE_DATABASE_RADIO_BUTTON
Definition: services.hxx:174
constexpr OUStringLiteral FRM_COMPONENT_COMBOBOX
Definition: services.hxx:68
constexpr OUStringLiteral FRM_COMPONENT_CHECKBOX
Definition: services.hxx:73
constexpr OUStringLiteral FRM_SUN_COMPONENT_FORMATTEDFIELD
Definition: services.hxx:130
constexpr OUStringLiteral FRM_SUN_CONTROL_GRIDCONTROL
Definition: services.hxx:157
constexpr OUStringLiteral FRM_COMPONENT_FIXEDTEXT
Definition: services.hxx:71
constexpr OUStringLiteral FRM_SUN_CONTROL_NUMERICFIELD
Definition: services.hxx:161
constexpr OUStringLiteral VALIDATABLE_BINDABLE_CONTROL_MODEL
Definition: services.hxx:184
constexpr OUStringLiteral VCL_CONTROL_IMAGECONTROL
Definition: services.hxx:37
constexpr OUStringLiteral FRM_COMPONENT_HIDDEN
Definition: services.hxx:83
constexpr OUStringLiteral STARDIV_ONE_FORM_CONTROL_GROUPBOX
Definition: services.hxx:95
constexpr OUStringLiteral FRM_SUN_COMPONENT_DATABASE_COMBOBOX
Definition: services.hxx:141
constexpr OUStringLiteral VCL_CONTROL_CHECKBOX
Definition: services.hxx:29
constexpr OUStringLiteral FRM_COMPONENT_FILECONTROL
Definition: services.hxx:77
constexpr OUStringLiteral FRM_SUN_COMPONENT_PATTERNFIELD
Definition: services.hxx:128
constexpr OUStringLiteral VCL_CONTROL_NUMERICFIELD
Definition: services.hxx:33
constexpr OUStringLiteral STARDIV_ONE_FORM_CONTROL_EDIT
Definition: services.hxx:92
constexpr OUStringLiteral VCL_CONTROLMODEL_LISTBOX
Definition: services.hxx:40
constexpr OUStringLiteral VCL_CONTROLMODEL_IMAGECONTROL
Definition: services.hxx:55
constexpr OUStringLiteral VCL_CONTROL_TIMEFIELD
Definition: services.hxx:31
constexpr OUStringLiteral FRM_SUN_CONTROL_COMMANDBUTTON
Definition: services.hxx:155
constexpr OUStringLiteral FRM_COMPONENT_IMAGEBUTTON
Definition: services.hxx:76
constexpr OUStringLiteral FRM_SUN_COMPONENT_DATABASE_NUMERICFIELD
Definition: services.hxx:146
constexpr OUStringLiteral FRM_SUN_CONTROL_IMAGEBUTTON
Definition: services.hxx:158
constexpr OUStringLiteral FRM_SUN_COMPONENT_DATABASE_CURRENCYFIELD
Definition: services.hxx:147
constexpr OUStringLiteral FRM_SUN_COMPONENT_GRIDCONTROL
Definition: services.hxx:121
constexpr OUStringLiteral FRM_COMPONENT_GRIDCONTROL
Definition: services.hxx:75
constexpr OUStringLiteral FRM_COMPONENT_CURRENCYFIELD
Definition: services.hxx:81
constexpr OUStringLiteral VCL_CONTROL_SPINBUTTON
Definition: services.hxx:60
constexpr OUStringLiteral FRM_COMPONENT_GRID
Definition: services.hxx:74
constexpr OUStringLiteral VCL_CONTROL_COMBOBOX
Definition: services.hxx:25
constexpr OUStringLiteral VCL_CONTROLMODEL_EDIT
Definition: services.hxx:39
constexpr OUStringLiteral FRM_COMPONENT_TIMEFIELD
Definition: services.hxx:78
constexpr OUStringLiteral STARDIV_ONE_FORM_CONTROL_TIMEFIELD
Definition: services.hxx:99
constexpr OUStringLiteral FRM_COMPONENT_FORM
Definition: services.hxx:64
constexpr OUStringLiteral FRM_SUN_COMPONENT_FORM
Definition: services.hxx:110
constexpr OUStringLiteral STARDIV_ONE_FORM_CONTROL_LISTBOX
Definition: services.hxx:93
constexpr OUStringLiteral VCL_CONTROLMODEL_SCROLLBAR
Definition: services.hxx:57
constexpr OUStringLiteral FRM_COMPONENT_NUMERICFIELD
Definition: services.hxx:80
constexpr OUStringLiteral BINDABLE_DATA_AWARE_CONTROL_MODEL
Definition: services.hxx:181
constexpr OUStringLiteral FRM_SUN_COMPONENT_CHECKBOX
Definition: services.hxx:120
constexpr OUStringLiteral VCL_CONTROLMODEL_COMBOBOX
Definition: services.hxx:41
constexpr OUStringLiteral VCL_CONTROL_GROUPBOX
Definition: services.hxx:27
constexpr OUStringLiteral STARDIV_ONE_FORM_CONTROL_GRID
Definition: services.hxx:97
constexpr OUStringLiteral VCL_CONTROL_PATTERNFIELD
Definition: services.hxx:35
constexpr OUStringLiteral VCL_CONTROL_CURRENCYFIELD
Definition: services.hxx:34
constexpr OUStringLiteral VCL_CONTROLMODEL_CURRENCYFIELD
Definition: services.hxx:52
constexpr OUStringLiteral FRM_SUN_CONTROL_RICHTEXTCONTROL
Definition: services.hxx:166
constexpr OUStringLiteral STARDIV_ONE_FORM_CONTROL_FORMATTEDFIELD
Definition: services.hxx:105
constexpr OUStringLiteral VCL_CONTROL_DATEFIELD
Definition: services.hxx:32
constexpr OUStringLiteral FRM_COMPONENT_PATTERNFIELD
Definition: services.hxx:82
constexpr OUStringLiteral FRM_COMPONENT_GROUPBOX
Definition: services.hxx:70
constexpr OUStringLiteral FRM_SUN_COMPONENT_DATABASE_TIMEFIELD
Definition: services.hxx:145
constexpr OUStringLiteral STARDIV_ONE_FORM_CONTROL_NUMERICFIELD
Definition: services.hxx:101
constexpr OUStringLiteral STARDIV_ONE_FORM_CONTROL_TEXTFIELD
Definition: services.hxx:96
constexpr OUStringLiteral FRM_SUN_CONTROL_PATTERNFIELD
Definition: services.hxx:163
constexpr OUStringLiteral VCL_CONTROLMODEL_TIMEFIELD
Definition: services.hxx:49
constexpr OUStringLiteral FRM_SUN_CONTROL_LISTBOX
Definition: services.hxx:151
constexpr OUStringLiteral BINDABLE_DATABASE_DATE_FIELD
Definition: services.hxx:176
constexpr OUStringLiteral DATA_AWARE_CONTROL_MODEL
Definition: services.hxx:182
constexpr OUStringLiteral VCL_CONTROL_IMAGEBUTTON
Definition: services.hxx:30
constexpr OUStringLiteral FRM_SUN_CONTROL_SUBMITBUTTON
Definition: services.hxx:167
constexpr OUStringLiteral SRV_SDB_CONNECTION
Definition: services.hxx:193
constexpr OUStringLiteral VCL_CONTROL_FORMATTEDFIELD
Definition: services.hxx:36
constexpr OUStringLiteral FRM_SUN_COMPONENT_DATABASE_DATEFIELD
Definition: services.hxx:144
constexpr OUStringLiteral FRM_SUN_COMPONENT_DATABASE_LISTBOX
Definition: services.hxx:140
constexpr OUStringLiteral FRM_SUN_COMPONENT_GROUPBOX
Definition: services.hxx:117
constexpr OUStringLiteral FRM_SUN_COMPONENT_HTMLFORM
Definition: services.hxx:111
constexpr OUStringLiteral VCL_CONTROLMODEL_DATEFIELD
Definition: services.hxx:50
constexpr OUStringLiteral FRM_SUN_COMPONENT_FIXEDTEXT
Definition: services.hxx:118
constexpr OUStringLiteral FRM_COMPONENT_COMMANDBUTTON
Definition: services.hxx:72
constexpr OUStringLiteral FRM_SUN_CONTROL_TEXTFIELD
Definition: services.hxx:150
constexpr OUStringLiteral FRM_SUN_COMPONENT_HIDDENCONTROL
Definition: services.hxx:129
constexpr OUStringLiteral VCL_CONTROL_SCROLLBAR
Definition: services.hxx:58
constexpr OUStringLiteral FRM_SUN_COMPONENT_DATABASE_FORMATTEDFIELD
Definition: services.hxx:142
constexpr OUStringLiteral VCL_CONTROLMODEL_GROUPBOX
Definition: services.hxx:43
constexpr OUStringLiteral VALIDATABLE_CONTROL_MODEL
Definition: services.hxx:183
constexpr OUStringLiteral VCL_CONTROLMODEL_NUMERICFIELD
Definition: services.hxx:51
constexpr OUStringLiteral FRM_SUN_CONTROL_RADIOBUTTON
Definition: services.hxx:153
constexpr OUStringLiteral BINDABLE_DATABASE_TIME_FIELD
Definition: services.hxx:177
constexpr OUStringLiteral VCL_CONTROLMODEL_FORMATTEDFIELD
Definition: services.hxx:54
constexpr OUStringLiteral FRM_SUN_COMPONENT_LISTBOX
Definition: services.hxx:114
constexpr OUStringLiteral FRM_SUN_COMPONENT_RICHTEXTCONTROL
Definition: services.hxx:133
constexpr OUStringLiteral FRM_SUN_COMPONENT_NUMERICFIELD
Definition: services.hxx:126
constexpr OUStringLiteral FRM_COMPONENT_RADIOBUTTON
Definition: services.hxx:69
constexpr OUStringLiteral FRM_SUN_CONTROL_FORMATTEDFIELD
Definition: services.hxx:165
constexpr OUStringLiteral FRM_SUN_COMPONENT_TEXTFIELD
Definition: services.hxx:113
constexpr OUStringLiteral FRM_COMPONENT_FORMATTEDFIELD
Definition: services.hxx:86
constexpr OUStringLiteral FRM_SUN_COMPONENT_IMAGEBUTTON
Definition: services.hxx:122
constexpr OUStringLiteral FRM_SUN_COMPONENT_NAVTOOLBAR
Definition: services.hxx:134
constexpr OUStringLiteral STARDIV_ONE_FORM_CONTROL_RADIOBUTTON
Definition: services.hxx:90
constexpr OUStringLiteral VCL_CONTROLMODEL_COMMANDBUTTON
Definition: services.hxx:45
constexpr OUStringLiteral FRM_SUN_CONTROL_IMAGECONTROL
Definition: services.hxx:164
constexpr OUStringLiteral FRM_SUN_COMPONENT_DATABASE_CHECKBOX
Definition: services.hxx:139
constexpr OUStringLiteral FRM_COMPONENT_EDIT
Definition: services.hxx:65
constexpr OUStringLiteral BINDABLE_DATABASE_LIST_BOX
Definition: services.hxx:172
constexpr OUStringLiteral BINDABLE_CONTROL_MODEL
Definition: services.hxx:179
constexpr OUStringLiteral BINDABLE_DATABASE_FORMATTED_FIELD
Definition: services.hxx:171
constexpr OUStringLiteral FRM_COMPONENT_HIDDENCONTROL
Definition: services.hxx:84
constexpr OUStringLiteral VCL_CONTROLMODEL_RADIOBUTTON
Definition: services.hxx:42
constexpr OUStringLiteral STARDIV_ONE_FORM_CONTROL_CHECKBOX
Definition: services.hxx:91
constexpr OUStringLiteral FRM_COMPONENT_TEXTFIELD
Definition: services.hxx:66
constexpr OUStringLiteral FRM_COMPONENT_DATEFIELD
Definition: services.hxx:79
constexpr OUStringLiteral STARDIV_ONE_FORM_CONTROL_IMAGECONTROL
Definition: services.hxx:104
constexpr OUStringLiteral FRM_SUN_COMPONENT_FILECONTROL
Definition: services.hxx:123
constexpr OUStringLiteral VCL_CONTROL_COMMANDBUTTON
Definition: services.hxx:28
constexpr OUStringLiteral BINDABLE_DATABASE_TEXT_FIELD
Definition: services.hxx:175
constexpr OUStringLiteral FRM_SUN_COMPONENT_DATEFIELD
Definition: services.hxx:125
constexpr OUStringLiteral VCL_CONTROLMODEL_PATTERNFIELD
Definition: services.hxx:53
constexpr OUStringLiteral FRM_COMPONENT_LISTBOX
Definition: services.hxx:67
constexpr OUStringLiteral SRV_SDB_ROWSET
Definition: services.hxx:192
constexpr OUStringLiteral BINDABLE_INTEGER_VALUE_RANGE
Definition: services.hxx:180
constexpr OUStringLiteral VCL_CONTROL_LISTBOX
Definition: services.hxx:24
constexpr OUStringLiteral FRM_SUN_CONTROL_CHECKBOX
Definition: services.hxx:156