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 107703 : SfxItemIter::SfxItemIter( const SfxItemSet& rItemSet )
34 107703 : : _rSet( rItemSet )
35 : {
36 : DBG_CTOR(SfxItemIter, 0);
37 : DBG_ASSERTWARNING( _rSet.Count(), "es gibt gar keine Attribute" );
38 :
39 107703 : if ( !_rSet._nCount )
40 : {
41 1220 : _nStt = 1;
42 1220 : _nEnd = 0;
43 : }
44 : else
45 : {
46 106483 : SfxItemArray ppFnd = _rSet._aItems;
47 :
48 : // suche das 1. gesetzte Item
49 106483 : for ( _nStt = 0; !*(ppFnd + _nStt ); ++_nStt )
50 : ; // empty loop
51 106483 : if ( 1 < _rSet.Count() )
52 34727 : for( _nEnd = _rSet.TotalCount(); !*( ppFnd + --_nEnd); )
53 : ; // empty loop
54 : else
55 71756 : _nEnd = _nStt;
56 : }
57 :
58 107703 : _nAkt = _nStt;
59 107703 : }
60 :
61 : // --------------------------------------------------------------------------
62 :
63 :
64 107703 : SfxItemIter::~SfxItemIter()
65 : {
66 : DBG_DTOR(SfxItemIter, 0);
67 107703 : }
68 :
69 : // --------------------------------------------------------------------------
70 :
71 :
72 153921 : const SfxPoolItem* SfxItemIter::NextItem()
73 : {
74 : DBG_CHKTHIS(SfxItemIter, 0);
75 153921 : SfxItemArray ppFnd = _rSet._aItems;
76 :
77 153921 : if( _nAkt < _nEnd )
78 : {
79 2220119 : do {
80 1127382 : _nAkt++;
81 1092737 : } while( _nAkt < _nEnd && !*(ppFnd + _nAkt ) );
82 116886 : return *(ppFnd+_nAkt);
83 : }
84 37035 : return 0;
85 : }
86 :
87 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|