13334a7e6SAndrew Rist /**************************************************************
2*201d50ffSmseidel  *
33334a7e6SAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
43334a7e6SAndrew Rist  * or more contributor license agreements.  See the NOTICE file
53334a7e6SAndrew Rist  * distributed with this work for additional information
63334a7e6SAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
73334a7e6SAndrew Rist  * to you under the Apache License, Version 2.0 (the
83334a7e6SAndrew Rist  * "License"); you may not use this file except in compliance
93334a7e6SAndrew Rist  * with the License.  You may obtain a copy of the License at
10*201d50ffSmseidel  *
113334a7e6SAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12*201d50ffSmseidel  *
133334a7e6SAndrew Rist  * Unless required by applicable law or agreed to in writing,
143334a7e6SAndrew Rist  * software distributed under the License is distributed on an
153334a7e6SAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
163334a7e6SAndrew Rist  * KIND, either express or implied.  See the License for the
173334a7e6SAndrew Rist  * specific language governing permissions and limitations
183334a7e6SAndrew Rist  * under the License.
19*201d50ffSmseidel  *
203334a7e6SAndrew Rist  *************************************************************/
213334a7e6SAndrew Rist 
223334a7e6SAndrew Rist 
23cdf0e10cSrcweir 
24cdf0e10cSrcweir #ifndef _ENHANCEDCUSTOMSHAPEFONTWORK_HXX
25cdf0e10cSrcweir #define _ENHANCEDCUSTOMSHAPEFONTWORK_HXX
26cdf0e10cSrcweir 
27cdf0e10cSrcweir #include <com/sun/star/i18n/XBreakIterator.hpp>
28cdf0e10cSrcweir 
29cdf0e10cSrcweir class SdrObject;
30cdf0e10cSrcweir class EnhancedCustomShapeFontWork
31cdf0e10cSrcweir {
32cdf0e10cSrcweir 		static ::com::sun::star::uno::Reference < ::com::sun::star::i18n::XBreakIterator > mxBreakIterator;
33cdf0e10cSrcweir 
34cdf0e10cSrcweir 	public :
35cdf0e10cSrcweir 
36cdf0e10cSrcweir 		static com::sun::star::uno::Reference < ::com::sun::star::i18n::XBreakIterator > GetBreakIterator();
37cdf0e10cSrcweir 		static SdrObject* CreateFontWork( const SdrObject* pShape2d, const SdrObject* pCustomShape );
38cdf0e10cSrcweir };
39cdf0e10cSrcweir 
40cdf0e10cSrcweir #endif
41cdf0e10cSrcweir 
42