xref: /trunk/main/forms/source/inc/services.hxx (revision cdf0e10c)
1*cdf0e10cSrcweir /*************************************************************************
2*cdf0e10cSrcweir  *
3*cdf0e10cSrcweir  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4*cdf0e10cSrcweir  *
5*cdf0e10cSrcweir  * Copyright 2000, 2010 Oracle and/or its affiliates.
6*cdf0e10cSrcweir  *
7*cdf0e10cSrcweir  * OpenOffice.org - a multi-platform office productivity suite
8*cdf0e10cSrcweir  *
9*cdf0e10cSrcweir  * This file is part of OpenOffice.org.
10*cdf0e10cSrcweir  *
11*cdf0e10cSrcweir  * OpenOffice.org is free software: you can redistribute it and/or modify
12*cdf0e10cSrcweir  * it under the terms of the GNU Lesser General Public License version 3
13*cdf0e10cSrcweir  * only, as published by the Free Software Foundation.
14*cdf0e10cSrcweir  *
15*cdf0e10cSrcweir  * OpenOffice.org is distributed in the hope that it will be useful,
16*cdf0e10cSrcweir  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17*cdf0e10cSrcweir  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18*cdf0e10cSrcweir  * GNU Lesser General Public License version 3 for more details
19*cdf0e10cSrcweir  * (a copy is included in the LICENSE file that accompanied this code).
20*cdf0e10cSrcweir  *
21*cdf0e10cSrcweir  * You should have received a copy of the GNU Lesser General Public License
22*cdf0e10cSrcweir  * version 3 along with OpenOffice.org.  If not, see
23*cdf0e10cSrcweir  * <http://www.openoffice.org/license.html>
24*cdf0e10cSrcweir  * for a copy of the LGPLv3 License.
25*cdf0e10cSrcweir  *
26*cdf0e10cSrcweir  ************************************************************************/
27*cdf0e10cSrcweir 
28*cdf0e10cSrcweir #ifndef _FRM_SERVICES_HXX_
29*cdf0e10cSrcweir #define _FRM_SERVICES_HXX_
30*cdf0e10cSrcweir 
31*cdf0e10cSrcweir #include <rtl/ustring.hxx>
32*cdf0e10cSrcweir #include "frm_strings.hxx"
33*cdf0e10cSrcweir 
34*cdf0e10cSrcweir //.........................................................................
35*cdf0e10cSrcweir namespace frm
36*cdf0e10cSrcweir {
37*cdf0e10cSrcweir //.........................................................................
38*cdf0e10cSrcweir 
39*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( AWT_CONTROL_TEXTFIELD, "com.sun.star.awt.TextField" );
40*cdf0e10cSrcweir 
41*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( VCL_CONTROL_EDIT, "stardiv.vcl.control.Edit" );
42*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( VCL_CONTROL_LISTBOX, "stardiv.vcl.control.ListBox" );
43*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( VCL_CONTROL_COMBOBOX, "stardiv.vcl.control.ComboBox" );
44*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( VCL_CONTROL_RADIOBUTTON, "stardiv.vcl.control.RadioButton" );
45*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( VCL_CONTROL_GROUPBOX, "stardiv.vcl.control.GroupBox" );
46*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( VCL_CONTROL_FIXEDTEXT, "stardiv.vcl.control.FixedText" );
47*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( VCL_CONTROL_COMMANDBUTTON, "stardiv.vcl.control.Button" );
48*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( VCL_CONTROL_CHECKBOX, "stardiv.vcl.control.CheckBox" );
49*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( VCL_CONTROL_IMAGEBUTTON, "stardiv.vcl.control.ImageButton" );
50*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( VCL_CONTROL_FILECONTROL, "stardiv.vcl.control.FileControl" );
51*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( VCL_CONTROL_TIMEFIELD, "stardiv.vcl.control.TimeField" );
52*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( VCL_CONTROL_DATEFIELD, "stardiv.vcl.control.DateField" );
53*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( VCL_CONTROL_NUMERICFIELD, "stardiv.vcl.control.NumericField" );
54*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( VCL_CONTROL_CURRENCYFIELD, "stardiv.vcl.control.CurrencyField" );
55*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( VCL_CONTROL_PATTERNFIELD, "stardiv.vcl.control.PatternField" );
56*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( VCL_CONTROL_FORMATTEDFIELD, "stardiv.vcl.control.FormattedField" );
57*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( VCL_CONTROL_IMAGECONTROL, "stardiv.vcl.control.ImageControl" );
58*cdf0e10cSrcweir 
59*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( VCL_CONTROLMODEL_EDIT,             "stardiv.vcl.controlmodel.Edit"              );
60*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( VCL_CONTROLMODEL_LISTBOX,          "stardiv.vcl.controlmodel.ListBox"           );
61*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( VCL_CONTROLMODEL_COMBOBOX,         "stardiv.vcl.controlmodel.ComboBox"          );
62*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( VCL_CONTROLMODEL_RADIOBUTTON,      "stardiv.vcl.controlmodel.RadioButton"       );
63*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( VCL_CONTROLMODEL_GROUPBOX,         "stardiv.vcl.controlmodel.GroupBox"          );
64*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( VCL_CONTROLMODEL_FIXEDTEXT,        "stardiv.vcl.controlmodel.FixedText"         );
65*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( VCL_CONTROLMODEL_COMMANDBUTTON,    "stardiv.vcl.controlmodel.Button"            );
66*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( VCL_CONTROLMODEL_CHECKBOX,         "stardiv.vcl.controlmodel.CheckBox"          );
67*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( VCL_CONTROLMODEL_IMAGEBUTTON,      "stardiv.vcl.controlmodel.ImageButton"       );
68*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( VCL_CONTROLMODEL_FILECONTROL,      "stardiv.vcl.controlmodel.FileControl"       );
69*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( VCL_CONTROLMODEL_TIMEFIELD,        "stardiv.vcl.controlmodel.TimeField"         );
70*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( VCL_CONTROLMODEL_DATEFIELD,        "stardiv.vcl.controlmodel.DateField"         );
71*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( VCL_CONTROLMODEL_NUMERICFIELD,     "stardiv.vcl.controlmodel.NumericField"      );
72*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( VCL_CONTROLMODEL_CURRENCYFIELD,    "stardiv.vcl.controlmodel.CurrencyField"     );
73*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( VCL_CONTROLMODEL_PATTERNFIELD,     "stardiv.vcl.controlmodel.PatternField"      );
74*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( VCL_CONTROLMODEL_FORMATTEDFIELD,   "stardiv.vcl.controlmodel.FormattedField"    );
75*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( VCL_CONTROLMODEL_IMAGECONTROL,     "stardiv.vcl.controlmodel.ImageControl"      );
76*cdf0e10cSrcweir 
77*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( VCL_CONTROLMODEL_SCROLLBAR,        "com.sun.star.awt.UnoControlScrollBarModel"  );
78*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( VCL_CONTROL_SCROLLBAR,             "com.sun.star.awt.UnoControlScrollBar"       );
79*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( VCL_CONTROLMODEL_SPINBUTTON,       "com.sun.star.awt.UnoControlSpinButtonModel" );
80*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( VCL_CONTROL_SPINBUTTON,            "com.sun.star.awt.UnoControlSpinButton"      );
81*cdf0e10cSrcweir 
82*cdf0e10cSrcweir     // -----------------------
83*cdf0e10cSrcweir     // service names for compatibility
84*cdf0e10cSrcweir     // -----------------------
85*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_COMPONENT_FORM, "stardiv.one.form.component.Form" );
86*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_COMPONENT_EDIT, "stardiv.one.form.component.Edit" );			// compatibility
87*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_COMPONENT_TEXTFIELD, "stardiv.one.form.component.TextField" );
88*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_COMPONENT_LISTBOX, "stardiv.one.form.component.ListBox" );
89*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_COMPONENT_COMBOBOX, "stardiv.one.form.component.ComboBox" );
90*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_COMPONENT_RADIOBUTTON, "stardiv.one.form.component.RadioButton" );
91*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_COMPONENT_GROUPBOX, "stardiv.one.form.component.GroupBox" );		// compatibility
92*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_COMPONENT_FIXEDTEXT, "stardiv.one.form.component.FixedText" );		// compatibility
93*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_COMPONENT_COMMANDBUTTON, "stardiv.one.form.component.CommandButton" );
94*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_COMPONENT_CHECKBOX, "stardiv.one.form.component.CheckBox" );
95*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_COMPONENT_GRID, "stardiv.one.form.component.Grid" );			// compatibility
96*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_COMPONENT_GRIDCONTROL, "stardiv.one.form.component.GridControl" );
97*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_COMPONENT_IMAGEBUTTON, "stardiv.one.form.component.ImageButton" );
98*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_COMPONENT_FILECONTROL, "stardiv.one.form.component.FileControl" );
99*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_COMPONENT_TIMEFIELD, "stardiv.one.form.component.TimeField" );
100*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_COMPONENT_DATEFIELD, "stardiv.one.form.component.DateField" );
101*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_COMPONENT_NUMERICFIELD, "stardiv.one.form.component.NumericField" );
102*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_COMPONENT_CURRENCYFIELD, "stardiv.one.form.component.CurrencyField" );
103*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_COMPONENT_PATTERNFIELD, "stardiv.one.form.component.PatternField" );
104*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_COMPONENT_HIDDEN, "stardiv.one.form.component.Hidden" );
105*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_COMPONENT_HIDDENCONTROL, "stardiv.one.form.component.HiddenControl" );
106*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_COMPONENT_IMAGECONTROL, "stardiv.one.form.component.ImageControl" );
107*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_COMPONENT_FORMATTEDFIELD, "stardiv.one.form.component.FormattedField" );
108*cdf0e10cSrcweir 
109*cdf0e10cSrcweir     // <compatibility_I>
110*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( STARDIV_ONE_FORM_CONTROL_COMMANDBUTTON,   "stardiv.one.form.control.CommandButton" );
111*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( STARDIV_ONE_FORM_CONTROL_RADIOBUTTON,     "stardiv.one.form.control.RadioButton"   );
112*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( STARDIV_ONE_FORM_CONTROL_CHECKBOX,        "stardiv.one.form.control.CheckBox"      );
113*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( STARDIV_ONE_FORM_CONTROL_EDIT,            "stardiv.one.form.control.Edit"          );
114*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( STARDIV_ONE_FORM_CONTROL_LISTBOX,         "stardiv.one.form.control.ListBox"       );
115*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( STARDIV_ONE_FORM_CONTROL_COMBOBOX,        "stardiv.one.form.control.ComboBox"      );
116*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( STARDIV_ONE_FORM_CONTROL_GROUPBOX,        "stardiv.one.form.control.GroupBox"      );
117*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( STARDIV_ONE_FORM_CONTROL_TEXTFIELD,       "stardiv.one.form.control.TextField"     );
118*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( STARDIV_ONE_FORM_CONTROL_GRID,            "stardiv.one.form.control.Grid"          );
119*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( STARDIV_ONE_FORM_CONTROL_IMAGEBUTTON,     "stardiv.one.form.control.ImageButton"   );
120*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( STARDIV_ONE_FORM_CONTROL_TIMEFIELD,       "stardiv.one.form.control.TimeField"     );
121*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( STARDIV_ONE_FORM_CONTROL_DATEFIELD,       "stardiv.one.form.control.DateField"     );
122*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( STARDIV_ONE_FORM_CONTROL_NUMERICFIELD,    "stardiv.one.form.control.NumericField"  );
123*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( STARDIV_ONE_FORM_CONTROL_CURRENCYFIELD,   "stardiv.one.form.control.CurrencyField" );
124*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( STARDIV_ONE_FORM_CONTROL_PATTERNFIELD,    "stardiv.one.form.control.PatternField"  );
125*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( STARDIV_ONE_FORM_CONTROL_IMAGECONTROL,    "stardiv.one.form.control.ImageControl"  );
126*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( STARDIV_ONE_FORM_CONTROL_FORMATTEDFIELD,  "stardiv.one.form.control.FormattedField");
127*cdf0e10cSrcweir     // </compatibility_I>
128*cdf0e10cSrcweir 
129*cdf0e10cSrcweir     // -----------------------
130*cdf0e10cSrcweir     // new (sun) service names
131*cdf0e10cSrcweir     // -----------------------
132*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_SUN_COMPONENT_FORM,            "com.sun.star.form.component.Form"              );
133*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_SUN_COMPONENT_HTMLFORM,        "com.sun.star.form.component.HTMLForm"          );
134*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_SUN_COMPONENT_DATAFORM,        "com.sun.star.form.component.DataForm"          );
135*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_SUN_COMPONENT_TEXTFIELD,       "com.sun.star.form.component.TextField"         );
136*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_SUN_COMPONENT_LISTBOX,         "com.sun.star.form.component.ListBox"           );
137*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_SUN_COMPONENT_COMBOBOX,        "com.sun.star.form.component.ComboBox"          );
138*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_SUN_COMPONENT_RADIOBUTTON,     "com.sun.star.form.component.RadioButton"       );
139*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_SUN_COMPONENT_GROUPBOX,        "com.sun.star.form.component.GroupBox"          );
140*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_SUN_COMPONENT_FIXEDTEXT,       "com.sun.star.form.component.FixedText"         );
141*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_SUN_COMPONENT_COMMANDBUTTON,   "com.sun.star.form.component.CommandButton"     );
142*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_SUN_COMPONENT_CHECKBOX,        "com.sun.star.form.component.CheckBox"          );
143*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_SUN_COMPONENT_GRIDCONTROL,     "com.sun.star.form.component.GridControl"       );
144*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_SUN_COMPONENT_IMAGEBUTTON,     "com.sun.star.form.component.ImageButton"       );
145*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_SUN_COMPONENT_FILECONTROL,     "com.sun.star.form.component.FileControl"       );
146*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_SUN_COMPONENT_TIMEFIELD,       "com.sun.star.form.component.TimeField"         );
147*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_SUN_COMPONENT_DATEFIELD,       "com.sun.star.form.component.DateField"         );
148*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_SUN_COMPONENT_NUMERICFIELD,    "com.sun.star.form.component.NumericField"      );
149*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_SUN_COMPONENT_CURRENCYFIELD,   "com.sun.star.form.component.CurrencyField"     );
150*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_SUN_COMPONENT_PATTERNFIELD,    "com.sun.star.form.component.PatternField"      );
151*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_SUN_COMPONENT_HIDDENCONTROL,   "com.sun.star.form.component.HiddenControl"     );
152*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_SUN_COMPONENT_FORMATTEDFIELD,  "com.sun.star.form.component.FormattedField"    );
153*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_SUN_COMPONENT_SCROLLBAR,       "com.sun.star.form.component.ScrollBar"         );
154*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_SUN_COMPONENT_SPINBUTTON,      "com.sun.star.form.component.SpinButton"        );
155*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_SUN_COMPONENT_RICHTEXTCONTROL, "com.sun.star.form.component.RichTextControl"   );
156*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_SUN_COMPONENT_NAVTOOLBAR,      "com.sun.star.form.component.NavigationToolBar" );
157*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_SUN_COMPONENT_SUBMITBUTTON,    "com.sun.star.form.component.SubmitButton"      );
158*cdf0e10cSrcweir 
159*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_SUN_COMPONENT_IMAGECONTROL, "com.sun.star.form.component.DatabaseImageControl" );
160*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_SUN_COMPONENT_DATABASE_RADIOBUTTON, "com.sun.star.form.component.DatabaseRadioButton" );
161*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_SUN_COMPONENT_DATABASE_CHECKBOX, "com.sun.star.form.component.DatabaseCheckBox" );
162*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_SUN_COMPONENT_DATABASE_LISTBOX, "com.sun.star.form.component.DatabaseListBox" );
163*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_SUN_COMPONENT_DATABASE_COMBOBOX, "com.sun.star.form.component.DatabaseComboBox" );
164*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_SUN_COMPONENT_DATABASE_FORMATTEDFIELD, "com.sun.star.form.component.DatabaseFormattedField" );
165*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_SUN_COMPONENT_DATABASE_TEXTFIELD, "com.sun.star.form.component.DatabaseTextField" );
166*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_SUN_COMPONENT_DATABASE_DATEFIELD, "com.sun.star.form.component.DatabaseDateField" );
167*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_SUN_COMPONENT_DATABASE_TIMEFIELD, "com.sun.star.form.component.DatabaseTimeField" );
168*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_SUN_COMPONENT_DATABASE_NUMERICFIELD, "com.sun.star.form.component.DatabaseNumericField" );
169*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_SUN_COMPONENT_DATABASE_CURRENCYFIELD, "com.sun.star.form.component.DatabaseCurrencyField" );
170*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_SUN_COMPONENT_DATABASE_PATTERNFIELD, "com.sun.star.form.component.DatabasePatternField" );
171*cdf0e10cSrcweir 
172*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_SUN_CONTROL_TEXTFIELD, "com.sun.star.form.control.TextField" );
173*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_SUN_CONTROL_LISTBOX, "com.sun.star.form.control.ListBox" );
174*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_SUN_CONTROL_COMBOBOX, "com.sun.star.form.control.ComboBox" );
175*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_SUN_CONTROL_RADIOBUTTON, "com.sun.star.form.control.RadioButton" );
176*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_SUN_CONTROL_GROUPBOX, "com.sun.star.form.control.GroupBox" );
177*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_SUN_CONTROL_FIXEDTEXT, "com.sun.star.form.control.FixedText" );
178*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_SUN_CONTROL_COMMANDBUTTON, "com.sun.star.form.control.CommandButton" );
179*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_SUN_CONTROL_CHECKBOX, "com.sun.star.form.control.CheckBox" );
180*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_SUN_CONTROL_GRIDCONTROL, "com.sun.star.form.control.GridControl" );
181*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_SUN_CONTROL_IMAGEBUTTON, "com.sun.star.form.control.ImageButton" );
182*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_SUN_CONTROL_TIMEFIELD, "com.sun.star.form.control.TimeField" );
183*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_SUN_CONTROL_DATEFIELD, "com.sun.star.form.control.DateField" );
184*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_SUN_CONTROL_NUMERICFIELD, "com.sun.star.form.control.NumericField" );
185*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_SUN_CONTROL_CURRENCYFIELD, "com.sun.star.form.control.CurrencyField" );
186*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_SUN_CONTROL_PATTERNFIELD, "com.sun.star.form.control.PatternField" );
187*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_SUN_CONTROL_IMAGECONTROL, "com.sun.star.form.control.ImageControl" );
188*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_SUN_CONTROL_FORMATTEDFIELD, "com.sun.star.form.control.FormattedField"  );
189*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_SUN_CONTROL_RICHTEXTCONTROL,"com.sun.star.form.control.RichTextControl" );
190*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_SUN_CONTROL_SUBMITBUTTON,   "com.sun.star.form.control.SubmitButton"    );
191*cdf0e10cSrcweir 
192*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_SUN_FORMS_COLLECTION, "com.sun.star.form.Forms" );
193*cdf0e10cSrcweir 
194*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( BINDABLE_DATABASE_CHECK_BOX,      "com.sun.star.form.binding.BindableDatabaseCheckBox" );
195*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( BINDABLE_DATABASE_COMBO_BOX,      "com.sun.star.form.binding.BindableDatabaseComboBox" );
196*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( BINDABLE_DATABASE_FORMATTED_FIELD,"com.sun.star.form.binding.BindableDatabaseFormattedField" );
197*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( BINDABLE_DATABASE_LIST_BOX,       "com.sun.star.form.binding.BindableDatabaseListBox" );
198*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( BINDABLE_DATABASE_NUMERIC_FIELD,  "com.sun.star.form.binding.BindableDatabaseNumericField" );
199*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( BINDABLE_DATABASE_RADIO_BUTTON,   "com.sun.star.form.binding.BindableDatabaseRadioButton" );
200*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( BINDABLE_DATABASE_TEXT_FIELD,     "com.sun.star.form.binding.BindableDatabaseTextField" );
201*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( BINDABLE_DATABASE_DATE_FIELD,     "com.sun.star.form.binding.BindableDatabaseDateField" );
202*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( BINDABLE_DATABASE_TIME_FIELD,     "com.sun.star.form.binding.BindableDatabaseTimeField" );
203*cdf0e10cSrcweir 
204*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( BINDABLE_CONTROL_MODEL,            "com.sun.star.form.binding.BindableControlModel" );
205*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( BINDABLE_INTEGER_VALUE_RANGE,      "com.sun.star.form.binding.BindableIntegerValueRange" );
206*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( BINDABLE_DATA_AWARE_CONTROL_MODEL, "com.sun.star.form.binding.BindableDataAwareControlModel" );
207*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( DATA_AWARE_CONTROL_MODEL,          "com.sun.star.form.binding.DataAwareControlModel" );
208*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( VALIDATABLE_CONTROL_MODEL,         "com.sun.star.form.binding.ValidatableControlModel" );
209*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( VALIDATABLE_BINDABLE_CONTROL_MODEL,"com.sun.star.form.binding.ValidatableBindableControlModel" );
210*cdf0e10cSrcweir 
211*cdf0e10cSrcweir     // -----------------------
212*cdf0e10cSrcweir     // common
213*cdf0e10cSrcweir     // -----------------------
214*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_SUN_FORMCOMPONENT, "com.sun.star.form.FormComponent" );
215*cdf0e10cSrcweir 
216*cdf0e10cSrcweir     // -----------------------
217*cdf0e10cSrcweir     // misc
218*cdf0e10cSrcweir     // -----------------------
219*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( SRV_AWT_POINTER, "com.sun.star.awt.Pointer" );
220*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( SRV_AWT_IMAGEPRODUCER, "com.sun.star.awt.ImageProducer" );
221*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_NUMBER_FORMATTER, "com.sun.star.util.NumberFormatter" );
222*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( FRM_NUMBER_FORMATS_SUPPLIER, "com.sun.star.util.NumberFormatsSupplier" );
223*cdf0e10cSrcweir 
224*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( SRV_SDB_ROWSET, "com.sun.star.sdb.RowSet" );
225*cdf0e10cSrcweir     FORMS_CONSTASCII_STRING( SRV_SDB_CONNECTION, "com.sun.star.sdb.Connection" );
226*cdf0e10cSrcweir 
227*cdf0e10cSrcweir 
228*cdf0e10cSrcweir //.........................................................................
229*cdf0e10cSrcweir }   // namespace frm
230*cdf0e10cSrcweir //.........................................................................
231*cdf0e10cSrcweir 
232*cdf0e10cSrcweir #endif // _FRM_SERVICES_HXX_
233*cdf0e10cSrcweir 
234