merge the formfield patch from ooo-build
[ooovba.git] / i18npool / inc / breakiterator_ctl.hxx
blob161c1a5a216e3d533b6499baf5a5778a71f0ea82
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: breakiterator_ctl.hxx,v $
10 * $Revision: 1.7 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
30 #ifndef __BREAKITERATOR_CTL_HXX__
31 #define __BREAKITERATOR_CTL_HXX__
33 #include <breakiterator_unicode.hxx>
34 #include <xdictionary.hxx>
36 namespace com { namespace sun { namespace star { namespace i18n {
38 // ----------------------------------------------------
39 // class BreakIterator_CTL
40 // ----------------------------------------------------
41 class BreakIterator_CTL : public BreakIterator_Unicode
43 public:
44 BreakIterator_CTL();
45 ~BreakIterator_CTL();
46 virtual sal_Int32 SAL_CALL previousCharacters(const rtl::OUString& text, sal_Int32 start,
47 const lang::Locale& nLocale, sal_Int16 nCharacterIteratorMode, sal_Int32 count,
48 sal_Int32& nDone) throw(com::sun::star::uno::RuntimeException);
49 virtual sal_Int32 SAL_CALL nextCharacters(const rtl::OUString& text, sal_Int32 start,
50 const lang::Locale& rLocale, sal_Int16 nCharacterIteratorMode, sal_Int32 count,
51 sal_Int32& nDone) throw(com::sun::star::uno::RuntimeException);
52 virtual LineBreakResults SAL_CALL getLineBreak( const rtl::OUString& Text, sal_Int32 nStartPos,
53 const com::sun::star::lang::Locale& nLocale, sal_Int32 nMinBreakPos,
54 const LineBreakHyphenationOptions& hOptions, const LineBreakUserOptions& bOptions )
55 throw(com::sun::star::uno::RuntimeException);
56 protected:
57 rtl::OUString cachedText; // for cell index
58 sal_Int32* nextCellIndex;
59 sal_Int32* previousCellIndex;
60 sal_Int32 cellIndexSize;
62 virtual void SAL_CALL makeIndex(const rtl::OUString& text, sal_Int32 pos) throw(com::sun::star::uno::RuntimeException);
65 } } } }
67 #endif