/* -*- 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_EDIMP_HXX #define INCLUDED_SW_INC_EDIMP_HXX #include #include class SwPaM; class SwNodeIndex; // Macros to iterate over all ranges. #define PCURCRSR (_pStartCrsr) #define FOREACHPAM_START(pCURSH) \ {\ SwPaM *_pStartCrsr = (pCURSH), *__pStartCrsr = _pStartCrsr; \ do { #define FOREACHPAM_END() \ } while( (_pStartCrsr=(SwPaM *)_pStartCrsr->GetNext()) != __pStartCrsr ); \ } struct SwPamRange { sal_uLong nStart, nEnd; SwPamRange() : nStart( 0 ), nEnd( 0 ) {} SwPamRange( sal_uLong nS, sal_uLong nE ) : nStart( nS ), nEnd( nE ) {} bool operator==( const SwPamRange& rRg ) const { return nStart == rRg.nStart; } bool operator<( const SwPamRange& rRg ) const { return nStart < rRg.nStart; } }; class _SwPamRanges : public o3tl::sorted_vector {}; class SwPamRanges : private _SwPamRanges { public: SwPamRanges( const SwPaM& rRing ); void Insert( const SwNodeIndex& rIdx1, const SwNodeIndex& rIdx2 ); SwPaM& SetPam( sal_uInt16 nArrPos, SwPaM& rPam ); sal_uInt16 Count() const { return _SwPamRanges::size(); } SwPamRange operator[]( sal_uInt16 nPos ) const { return _SwPamRanges::operator[](nPos); } }; #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ option> LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
onfig/ctloptions.cxx?h=cp-6.0-11&id=23b92427e3c77fa8d04679ddcaf2dbd3e3580c5d'>Enable “complex text layout” by default
AgeCommit message (Expand)Author
2017-07-31loplugin:constparams in ooxNoel Grandin
Khaled Hosny
2016-11-24use o3tl::typed_flags in ConfigurationListener::ConfigurationChangedNoel Grandin
2016-09-23perf: eliminate SfxSimpleHint and move to SfxHint, tdf#87101 relatedEike Rathke
2016-09-13loplugin:override: No more need for the "MSVC dtor override" workaroundStephan Bergmann
2016-06-16properly prefix various global variables and hide themMichael Stahl
2016-06-10tdf#89329: use shared_ptr for pImpl in ctloptionsXisco Fauli
2016-05-03Prevent Any::setValue from reinterpreting bool* as sal_Bool*Stephan Bergmann
2016-04-11cppcheck: silence warnings assertWithSideEffectJochen Nitschke
2016-02-09Remove excess newlinesChris Sherlock
2015-11-10loplugin:nullptr (automatic rewrite)Stephan Bergmann
2015-10-12Replace "SAL_OVERRIDE" with "override" in LIBO_INTERNAL_ONLY codeStephan Bergmann
2015-04-17convert SCRIPTTYPE_ constants to scoped enumNoel Grandin
2015-04-15remove unnecessary use of void in function declarationsNoel Grandin
2015-04-01Replace remaining getCppuType et al with cppu::UnoTypeStephan Bergmann
2015-03-11do not call virtual Commit() from dtors of utl::ConfigItem subclassesMichael Stahl
2015-03-11utl::ConfigItem::Commit() should call ClearModified()Michael Stahl
2014-11-24svl: convert DBG_ASSERTs in SvtCTLOptionsMichael Stahl
2014-11-17sal: clean up public headers with include-what-you-useMichael Stahl
2014-08-16svl: Remove ASCII art and pointless commentsChris Laplante
2014-05-15fix-includes.pl: svlThomas Arnhold
2014-04-01Explicitly mark overriding destructors as "virtual"Stephan Bergmann
2014-03-26First batch of adding SAL_OVERRRIDE to overriding function declarationsStephan Bergmann
2014-02-23Remove unneccessary commentsAlexander Wilms
2014-02-20svl: sal_Bool -> boolStephan Bergmann