Bump for 3.6-28
[LibreOffice.git] / editeng / source / outliner / paralist.hxx
blobc038e601c11bf3a3eb621bd409c1c4042d499ff9
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*************************************************************************
4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6 * Copyright 2000, 2010 Oracle and/or its affiliates.
8 * OpenOffice.org - a multi-platform office productivity suite
10 * This file is part of OpenOffice.org.
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.
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).
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.
27 ************************************************************************/
29 #ifndef _PARALIST_HXX
30 #define _PARALIST_HXX
32 #include <vector>
34 #include <tools/link.hxx>
36 class Paragraph;
38 class ParagraphList
40 public:
41 void Clear( sal_Bool bDestroyParagraphs );
43 sal_uInt32 GetParagraphCount() const
45 return maEntries.size();
48 Paragraph* GetParagraph( sal_uLong nPos ) const
50 return nPos < maEntries.size() ? maEntries[nPos] : NULL;
53 sal_uLong GetAbsPos( Paragraph* pParent ) const;
55 void Append( Paragraph *pPara);
56 void Insert( Paragraph* pPara, sal_uLong nAbsPos);
57 void Remove( sal_uLong nPara );
58 void MoveParagraphs( sal_uLong nStart, sal_uLong nDest, sal_uLong nCount );
60 Paragraph* GetParent( Paragraph* pParagraph /*, sal_uInt16& rRelPos */ ) const;
61 sal_Bool HasChildren( Paragraph* pParagraph ) const;
62 sal_Bool HasHiddenChildren( Paragraph* pParagraph ) const;
63 sal_Bool HasVisibleChildren( Paragraph* pParagraph ) const;
64 sal_uLong GetChildCount( Paragraph* pParagraph ) const;
66 void Expand( Paragraph* pParent );
67 void Collapse( Paragraph* pParent );
69 void SetVisibleStateChangedHdl( const Link& rLink ) { aVisibleStateChangedHdl = rLink; }
70 Link GetVisibleStateChangedHdl() const { return aVisibleStateChangedHdl; }
72 private:
74 Link aVisibleStateChangedHdl;
75 std::vector<Paragraph*> maEntries;
78 #endif
80 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */