Version 3.6.0.2, tag libreoffice-3.6.0.2
[LibreOffice.git] / i18npool / inc / breakiterator_ctl.hxx
blob47a1c9f6c3f36cdf4a3ad9a3d256a9dca716a978
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*************************************************************************
4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6 * Copyright 2000, 2010 Oracle and/or its affiliates.
8 * OpenOffice.org - a multi-platform office productivity suite
10 * This file is part of OpenOffice.org.
12 * OpenOffice.org is free software: you can redistribute it and/or modify
13 * it under the terms of the GNU Lesser General Public License version 3
14 * only, as published by the Free Software Foundation.
16 * OpenOffice.org is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU Lesser General Public License version 3 for more details
20 * (a copy is included in the LICENSE file that accompanied this code).
22 * You should have received a copy of the GNU Lesser General Public License
23 * version 3 along with OpenOffice.org. If not, see
24 * <http://www.openoffice.org/license.html>
25 * for a copy of the LGPLv3 License.
27 ************************************************************************/
28 #ifndef __BREAKITERATOR_CTL_HXX__
29 #define __BREAKITERATOR_CTL_HXX__
31 #include <breakiterator_unicode.hxx>
32 #include <xdictionary.hxx>
34 namespace com { namespace sun { namespace star { namespace i18n {
36 // ----------------------------------------------------
37 // class BreakIterator_CTL
38 // ----------------------------------------------------
39 class BreakIterator_CTL : public BreakIterator_Unicode
41 public:
42 BreakIterator_CTL();
43 ~BreakIterator_CTL();
44 virtual sal_Int32 SAL_CALL previousCharacters(const rtl::OUString& text, sal_Int32 start,
45 const lang::Locale& nLocale, sal_Int16 nCharacterIteratorMode, sal_Int32 count,
46 sal_Int32& nDone) throw(com::sun::star::uno::RuntimeException);
47 virtual sal_Int32 SAL_CALL nextCharacters(const rtl::OUString& text, sal_Int32 start,
48 const lang::Locale& rLocale, sal_Int16 nCharacterIteratorMode, sal_Int32 count,
49 sal_Int32& nDone) throw(com::sun::star::uno::RuntimeException);
50 virtual LineBreakResults SAL_CALL getLineBreak( const rtl::OUString& Text, sal_Int32 nStartPos,
51 const com::sun::star::lang::Locale& nLocale, sal_Int32 nMinBreakPos,
52 const LineBreakHyphenationOptions& hOptions, const LineBreakUserOptions& bOptions )
53 throw(com::sun::star::uno::RuntimeException);
54 protected:
55 rtl::OUString cachedText; // for cell index
56 sal_Int32* nextCellIndex;
57 sal_Int32* previousCellIndex;
58 sal_Int32 cellIndexSize;
60 virtual void SAL_CALL makeIndex(const rtl::OUString& text, sal_Int32 pos) throw(com::sun::star::uno::RuntimeException);
63 } } } }
65 #endif
67 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */