Update ooo320-m1
[ooovba.git] / binfilter / inc / bf_sw / edimp.hxx
blob36dbdd4e86dfbbca507c4e4363933869d53a545c
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: edimp.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 ************************************************************************/
31 #ifndef _EDIMP_HXX
32 #define _EDIMP_HXX
34 #include "crsrsh.hxx"
35 namespace binfilter {
38 * MACROS um ueber alle Bereiche zu iterieren
40 #define PCURCRSR (_pStartCrsr)
42 #define FOREACHPAM_START(pCURSH) \
44 SwPaM *_pStartCrsr = (pCURSH)->GetCrsr(), *__pStartCrsr = _pStartCrsr; \
45 do {
47 #define FOREACHPAM_END() \
48 } while( (_pStartCrsr=(SwPaM *)_pStartCrsr->GetNext()) != __pStartCrsr ); \
52 #define FOREACHCURSOR_START(pCURSH) \
54 SwShellCrsr *_pStartCrsr = *(pCURSH)->GetSwCrsr(), *__pStartCrsr = _pStartCrsr; \
55 do {
57 #define FOREACHCURSOR_END() \
58 } while( (_pStartCrsr=*(SwCursor*)_pStartCrsr->GetNext()) != __pStartCrsr ); \
62 struct SwPamRange
64 ULONG nStart, nEnd;
66 SwPamRange() : nStart( 0 ), nEnd( 0 ) {}
67 SwPamRange( ULONG nS, ULONG nE ) : nStart( nS ), nEnd( nE ) {}
69 BOOL operator==( const SwPamRange& rRg )
70 { return nStart == rRg.nStart ? TRUE : FALSE; }
71 BOOL operator<( const SwPamRange& rRg )
72 { return nStart < rRg.nStart ? TRUE : FALSE; }
75 SV_DECL_VARARR_SORT( _SwPamRanges, SwPamRange, 0, 1 )
77 class SwPamRanges : private _SwPamRanges
79 public:
80 SwPamRanges( const SwPaM& rRing ){DBG_BF_ASSERT(0, "STRIP");} //STRIP001 SwPamRanges( const SwPaM& rRing );
82 SwPaM& SetPam( USHORT nArrPos, SwPaM& rPam ){DBG_BF_ASSERT(0, "STRIP"); return rPam;} //STRIP001 SwPaM& SetPam( USHORT nArrPos, SwPaM& rPam );
84 USHORT Count() const
85 { return _SwPamRanges::Count(); }
89 } //namespace binfilter
90 #endif