Branch data Line data Source code
1 : : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : : /*
3 : : * This file is part of the LibreOffice project.
4 : : *
5 : : * This Source Code Form is subject to the terms of the Mozilla Public
6 : : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : : *
9 : : * This file incorporates work covered by the following license notice:
10 : : *
11 : : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : : * contributor license agreements. See the NOTICE file distributed
13 : : * with this work for additional information regarding copyright
14 : : * ownership. The ASF licenses this file to you under the Apache
15 : : * License, Version 2.0 (the "License"); you may not use this file
16 : : * except in compliance with the License. You may obtain a copy of
17 : : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : : */
19 : :
20 : :
21 : : #include <svl/itemiter.hxx>
22 : : #include <svl/itempool.hxx>
23 : : #include <svl/itemset.hxx>
24 : :
25 : : // STATIC DATA -----------------------------------------------------------
26 : :
27 : : DBG_NAME(SfxItemIter);
28 : :
29 : :
30 : : // --------------------------------------------------------------------------
31 : :
32 : :
33 : 453181 : SfxItemIter::SfxItemIter( const SfxItemSet& rItemSet )
34 : 453181 : : _rSet( rItemSet )
35 : : {
36 : : DBG_CTOR(SfxItemIter, 0);
37 : : DBG_ASSERTWARNING( _rSet.Count(), "es gibt gar keine Attribute" );
38 : :
39 [ + + ]: 453181 : if ( !_rSet._nCount )
40 : : {
41 : 5829 : _nStt = 1;
42 : 5829 : _nEnd = 0;
43 : : }
44 : : else
45 : : {
46 : 447352 : SfxItemArray ppFnd = _rSet._aItems;
47 : :
48 : : // suche das 1. gesetzte Item
49 [ + + ]: 4772346 : for ( _nStt = 0; !*(ppFnd + _nStt ); ++_nStt )
50 : : ; // empty loop
51 [ + + ]: 447352 : if ( 1 < _rSet.Count() )
52 [ + + ]: 3944503 : for( _nEnd = _rSet.TotalCount(); !*( ppFnd + --_nEnd); )
53 : : ; // empty loop
54 : : else
55 : 325941 : _nEnd = _nStt;
56 : : }
57 : :
58 : 453181 : _nAkt = _nStt;
59 : 453181 : }
60 : :
61 : : // --------------------------------------------------------------------------
62 : :
63 : :
64 : 453181 : SfxItemIter::~SfxItemIter()
65 : : {
66 : : DBG_DTOR(SfxItemIter, 0);
67 : 453181 : }
68 : :
69 : : // --------------------------------------------------------------------------
70 : :
71 : :
72 : 639065 : const SfxPoolItem* SfxItemIter::NextItem()
73 : : {
74 : : DBG_CHKTHIS(SfxItemIter, 0);
75 : 639065 : SfxItemArray ppFnd = _rSet._aItems;
76 : :
77 [ + + ]: 639065 : if( _nAkt < _nEnd )
78 : : {
79 [ + + ][ + + ]: 4375733 : do {
[ + + ]
80 : 4375733 : _nAkt++;
81 : 4254760 : } while( _nAkt < _nEnd && !*(ppFnd + _nAkt ) );
82 : 512773 : return *(ppFnd+_nAkt);
83 : : }
84 : 639065 : return 0;
85 : : }
86 : :
87 : : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|