/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ #ifndef INCLUDED_SW_INC_TOXWRAP_HXX #define INCLUDED_SW_INC_TOXWRAP_HXX #include #include #include #include "swdllapi.h" namespace com { namespace sun { namespace star { namespace i18n { class XExtendedIndexEntrySupplier; } namespace lang { class XMultiServiceFactory; } }}} class SW_DLLPUBLIC IndexEntrySupplierWrapper { ::com::sun::star::lang::Locale aLcl; ::com::sun::star::uno::Reference < com::sun::star::i18n::XExtendedIndexEntrySupplier > xIES; public: IndexEntrySupplierWrapper(); ~IndexEntrySupplierWrapper(); void SetLocale( const ::com::sun::star::lang::Locale& rLocale ) { aLcl = rLocale; } OUString GetIndexKey( const OUString& rTxt, const OUString& rTxtReading, const ::com::sun::star::lang::Locale& rLocale ) const; OUString GetFollowingText( sal_Bool bMorePages ) const; ::com::sun::star::uno::Sequence< OUString > GetAlgorithmList( const ::com::sun::star::lang::Locale& rLcl ) const; sal_Bool LoadAlgorithm( const ::com::sun::star::lang::Locale& rLcl, const OUString& sSortAlgorithm, long nOptions ) const; sal_Int16 CompareIndexEntry( const OUString& rTxt1, const OUString& rTxtReading1, const ::com::sun::star::lang::Locale& rLcl1, const OUString& rTxt2, const OUString& rTxtReading2, const ::com::sun::star::lang::Locale& rLcl2 ) const; }; #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ 05 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2013-04-12Turn off subpixel positioning for nowTor Lillqvist
2013-04-12Use my improved understanding of what a subset BitmapDevice isTor Lillqvist
2013-04-12A bit more logging in DrawText()Tor Lillqvist
2013-04-11Log the stretch factor if different from oneTor Lillqvist
2013-04-09WaE: unused variable 'lineRunGlyphStartIx'Tor Lillqvist
2013-04-08More fixes to the CoreText codeTor Lillqvist
2013-04-08Use SAL_FINAL hereTor Lillqvist
2013-04-08Use SAL_OVERRIDE and drop an unused member functionTor Lillqvist
2013-04-08Refactoring, no change in end resultTor Lillqvist
2013-04-08More hacking, still not working properlyTor Lillqvist
2013-04-08Bin some pointless SAL_INFOsTor Lillqvist
2013-04-08Add SAL_INFO output operator for CoreTextStyleInfoTor Lillqvist
2013-04-08Add SAL_INFO output operator for CTFontRefTor Lillqvist
2013-04-07mass removal of rtl:: prefixes for O(U)String*Luboš Luňák
2013-04-07Drop workarounds for Mac OS X SDKs 10.4 and 10.5Tor Lillqvist
2013-04-07Create a justified line if asked toTor Lillqvist
2013-04-07We have just one element in these tablesTor Lillqvist
2013-04-07Don't return in a (rare?) case without restoring the CGContext state stackTor Lillqvist
2013-04-07Use CGContextShowGlyphsWithAdvances()Tor Lillqvist
2013-04-07Take trailing whitesapce into considerationTor Lillqvist
2013-04-07Try calling RefreshRect() in DrawText() like in the ATSUI codeTor Lillqvist
2013-04-07Bin some #if 0 codeTor Lillqvist
2013-04-07mpChars2Glyphs is unusedTor Lillqvist
2013-04-06Move the SAL_INFO operator<< for ImplLayoutArgs to sallayout.hxx for re-useTor Lillqvist
2013-04-03Ensure we have a CGContext in a couple of more placesTor Lillqvist
2013-04-03It's the font *style* we are looking at hereTor Lillqvist
2013-04-03Add missing breakTor Lillqvist
2013-04-03Fix heap corruptionTor Lillqvist
2013-03-26Remove unnecessary code that was based on a wrong guessTor Lillqvist
2013-03-26Handle different basebmp scanline formats and flip vertically when neededTor Lillqvist
2013-03-26Try kCGImageAlphaNoneSkipLastTor Lillqvist
2013-03-26Move SAL_WARN_IFTor Lillqvist
2013-03-26Initial hack attempt to get something renderedTor Lillqvist
2013-03-21Re-work the vcl aspects of the iOS portTor Lillqvist
2013-03-19trailing whitespacesThomas Arnhold
2013-01-30Cosmetics and more informative SAL_INFO output from InitGIA()Tor Lillqvist
2013-01-30Fix SAL_INFO output from SetColor()Tor Lillqvist
2013-01-29More work on the CoreText codeTor Lillqvist
2013-01-29Undo pointless field name changesTor Lillqvist
2013-01-19De-duplication of CoreText code and headers for OS X and iOSTor Lillqvist