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 : #include "swcache.hxx"
21 : #include "fntcache.hxx"
22 : #include "swfntcch.hxx"
23 : #include "txtfrm.hxx"
24 : #include "txtcache.hxx"
25 : #include "porlay.hxx"
26 : #include "porglue.hxx"
27 : #include "porexp.hxx"
28 : #include "porrst.hxx"
29 : #include "portab.hxx"
30 : #include "porfly.hxx"
31 : #include "portox.hxx"
32 : #include "porref.hxx"
33 : #include "porftn.hxx"
34 : #include "porhyph.hxx"
35 : #include "pordrop.hxx"
36 : #include "blink.hxx"
37 : #include "init.hxx"
38 : #include "txtfly.hxx"
39 : #include "dbg_lay.hxx"
40 :
41 : SwCache *SwTxtFrm::pTxtCache = 0;
42 : long SwTxtFrm::nMinPrtLine = 0;
43 : SwContourCache *pContourCache = 0;
44 : SwDropCapCache *pDropCapCache = 0;
45 :
46 0 : IMPL_FIXEDMEMPOOL_NEWDEL( SwTxtLine )
47 0 : IMPL_FIXEDMEMPOOL_NEWDEL( SwParaPortion ) // Paragraphs
48 0 : IMPL_FIXEDMEMPOOL_NEWDEL( SwLineLayout ) // Lines
49 0 : IMPL_FIXEDMEMPOOL_NEWDEL( SwHolePortion ) // e.g. Blanks at the line end
50 0 : IMPL_FIXEDMEMPOOL_NEWDEL( SwTxtPortion ) // Attribute change
51 :
52 : /*************************************************************************
53 : * _TextInit(), _TextFinit()
54 : *************************************************************************/
55 :
56 : // Are ONLY used in init.cxx.
57 : // There we have extern void _TextFinit()
58 : // and extern void _TextInit(...)
59 :
60 0 : void _TextInit()
61 : {
62 0 : pFntCache = new SwFntCache; // Cache for SwSubFont -> SwFntObj = { Font aFont, Font* pScrFont, Font* pPrtFont, OutputDevice* pPrinter, ... }
63 0 : pSwFontCache = new SwFontCache; // Cache for SwTxtFmtColl -> SwFontObj = { SwFont aSwFont, SfxPoolItem* pDefaultArray }
64 : SwCache *pTxtCache = new SwCache( 250 // Cache for SwTxtFrm -> SwTxtLine = { SwParaPortion* pLine }
65 : #ifdef DBG_UTIL
66 : , "static SwTxtFrm::pTxtCache"
67 : #endif
68 0 : );
69 0 : SwTxtFrm::SetTxtCache( pTxtCache );
70 0 : pWaveCol = new Color( COL_GRAY );
71 : PROTOCOL_INIT
72 0 : }
73 :
74 0 : void _TextFinit()
75 : {
76 : PROTOCOL_STOP
77 0 : delete SwTxtFrm::GetTxtCache();
78 0 : delete pSwFontCache;
79 0 : delete pFntCache;
80 0 : delete pBlink;
81 0 : delete pWaveCol;
82 0 : delete pContourCache;
83 0 : SwDropPortion::DeleteDropCapCache();
84 0 : }
85 :
86 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|