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 : #ifndef INCLUDED_SW_SOURCE_CORE_INC_LAYCACHE_HXX
21 : #define INCLUDED_SW_SOURCE_CORE_INC_LAYCACHE_HXX
22 :
23 : #include <tools/solar.h>
24 :
25 : class SwDoc;
26 : class SwLayCacheImpl;
27 : class SvStream;
28 :
29 : /*
30 : * This class allows to save layout information in the file and it contains
31 : * this information after loading of a file.
32 : * Call Write(..) with a stream and the document to save and the page break
33 : * information of the document will be written.
34 : * Call Read(..) with a stream and the member pLayCacheImpl will
35 : * read the information from the stream and store it in an internal structure.
36 : * There's a simple locking mechanism at these classes,
37 : * if somebody reads the information, he increments the lock count by 1,
38 : * during the Read(..) function the lock count will set to $8000.
39 : */
40 : class SwLayoutCache
41 : {
42 : SwLayCacheImpl *pImpl;
43 : sal_uInt16 nLockCount;
44 :
45 : public:
46 41 : SwLayoutCache() : pImpl( NULL ), nLockCount( 0 ) {}
47 : ~SwLayoutCache();
48 :
49 : void Read( SvStream &rStream );
50 : static void Write( SvStream &rStream, const SwDoc& rDoc );
51 :
52 : void ClearImpl();
53 79 : bool IsLocked() const { return nLockCount > 0; }
54 82 : sal_uInt16& GetLockCount() { return nLockCount; }
55 76 : SwLayCacheImpl *LockImpl()
56 76 : { if( nLockCount & 0x8000 ) return NULL;
57 76 : if ( pImpl )
58 76 : ++nLockCount;
59 76 : return pImpl; }
60 76 : void UnlockImpl() { --nLockCount; }
61 :
62 : #ifdef DBG_UTIL
63 : bool CompareLayout( const SwDoc& rDoc ) const;
64 : #endif
65 : };
66 : #endif
67 :
68 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|