xref: /trunk/main/svx/source/svdraw/svdotxfl.cxx (revision 2cdd1ab0)
1 /**************************************************************
2  *
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  *
20  *************************************************************/
21 
22 
23 
24 // MARKER(update_precomp.py): autogen include statement, do not remove
25 #include "precompiled_svx.hxx"
26 #include <editeng/eeitem.hxx>
27 
28 #include <editeng/measfld.hxx>
29 #include <svx/svdotext.hxx>
30 #include <svx/svdfield.hxx>
31 
32 static sal_Bool bInit = sal_False;
33 
34 // Do not remove this, it is still used in src536a!
SdrRegisterFieldClasses()35 void SdrRegisterFieldClasses()
36 {
37 	if ( !bInit )
38 	{
39 		SvxFieldItem::GetClassManager().SV_CLASS_REGISTER(SdrMeasureField);
40 		SvxFieldItem::GetClassManager().SV_CLASS_REGISTER(SvxHeaderField);
41 		SvxFieldItem::GetClassManager().SV_CLASS_REGISTER(SvxFooterField);
42 		SvxFieldItem::GetClassManager().SV_CLASS_REGISTER(SvxDateTimeField);
43 		bInit = sal_True;
44 	}
45 }
46 
47 ///////////////////////////////////////////////////////////////////////////////////////////////// */
48 
CalcFieldValue(const SvxFieldItem &,sal_uInt32,sal_uInt16,FASTBOOL,Color * &,Color * &,XubString &) const49 FASTBOOL SdrTextObj::CalcFieldValue(const SvxFieldItem& /*rField*/, sal_uInt32 /*nPara*/, sal_uInt16 /*nPos*/,
50 	FASTBOOL /*bEdit*/,	Color*& /*rpTxtColor*/, Color*& /*rpFldColor*/, XubString& /*rRet*/) const
51 {
52 	return sal_False;
53 }
54 
55