Branch data Line data Source code
1 : : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : : /*************************************************************************
3 : : *
4 : : * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 : : *
6 : : * Copyright 2000, 2010 Oracle and/or its affiliates.
7 : : *
8 : : * OpenOffice.org - a multi-platform office productivity suite
9 : : *
10 : : * This file is part of OpenOffice.org.
11 : : *
12 : : * OpenOffice.org is free software: you can redistribute it and/or modify
13 : : * it under the terms of the GNU Lesser General Public License version 3
14 : : * only, as published by the Free Software Foundation.
15 : : *
16 : : * OpenOffice.org is distributed in the hope that it will be useful,
17 : : * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 : : * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 : : * GNU Lesser General Public License version 3 for more details
20 : : * (a copy is included in the LICENSE file that accompanied this code).
21 : : *
22 : : * You should have received a copy of the GNU Lesser General Public License
23 : : * version 3 along with OpenOffice.org. If not, see
24 : : * <http://www.openoffice.org/license.html>
25 : : * for a copy of the LGPLv3 License.
26 : : *
27 : : ************************************************************************/
28 : :
29 : : #ifndef _CUSTOMSHOWLIST_HXX
30 : : #define _CUSTOMSHOWLIST_HXX
31 : :
32 : : #include <vector>
33 : :
34 : : class SdCustomShow;
35 : :
36 : 14 : class SdCustomShowList : private std::vector<SdCustomShow*>
37 : : {
38 : : private:
39 : : sal_uInt16 mnCurPos;
40 : : public:
41 : : using std::vector<SdCustomShow*>::operator[];
42 : : using std::vector<SdCustomShow*>::size;
43 : : using std::vector<SdCustomShow*>::empty;
44 : : using std::vector<SdCustomShow*>::push_back;
45 : : using std::vector<SdCustomShow*>::erase;
46 : : using std::vector<SdCustomShow*>::begin;
47 : : using std::vector<SdCustomShow*>::iterator;
48 : :
49 : 0 : sal_uInt16 GetCurPos() const { return mnCurPos; }
50 : 0 : void Seek(sal_uInt16 nNewPos) { mnCurPos = nNewPos; }
51 : :
52 : 6 : SdCustomShow* First()
53 : : {
54 [ + + ]: 6 : if( empty() )
55 : 4 : return NULL;
56 : 2 : mnCurPos = 0;
57 : 6 : return operator[](mnCurPos);
58 : : }
59 : 2 : SdCustomShow* Next()
60 : : {
61 : 2 : ++mnCurPos;
62 [ - + ]: 2 : return mnCurPos >= size() ? NULL : operator[](mnCurPos);
63 : : }
64 : 0 : void Last()
65 : : {
66 : 0 : if( !empty() )
67 : 0 : mnCurPos = size() - 1;
68 : 0 : }
69 : 0 : SdCustomShow* GetCurObject()
70 : : {
71 [ # # ]: 0 : return empty() ? NULL : operator[](mnCurPos);
72 : : }
73 : 0 : SdCustomShow* Remove(SdCustomShow* p)
74 : : {
75 [ # # ]: 0 : iterator it = std::find(begin(), end(), p);
76 [ # # ][ # # ]: 0 : if( it == end() )
77 : 0 : return NULL;
78 [ # # ]: 0 : erase(it);
79 : 0 : return p;
80 : : }
81 : : };
82 : :
83 : :
84 : : #endif // _CUSTOMSHOWLIST_HXX
85 : :
86 : : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|