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 *SwTextFrm::pTextCache = 0;
42 : long SwTextFrm::nMinPrtLine = 0;
43 : SwContourCache *pContourCache = 0;
44 : SwDropCapCache *pDropCapCache = 0;
45 :
46 59 : IMPL_FIXEDMEMPOOL_NEWDEL( SwTextLine )
47 59 : IMPL_FIXEDMEMPOOL_NEWDEL( SwParaPortion ) // Paragraphs
48 59 : IMPL_FIXEDMEMPOOL_NEWDEL( SwLineLayout ) // Lines
49 59 : IMPL_FIXEDMEMPOOL_NEWDEL( SwHolePortion ) // e.g. Blanks at the line end
50 59 : IMPL_FIXEDMEMPOOL_NEWDEL( SwTextPortion ) // Attribute change
51 :
52 : // Are ONLY used in init.cxx.
53 : // There we have extern void _TextFinit()
54 : // and extern void _TextInit(...)
55 :
56 59 : void _TextInit()
57 : {
58 59 : pFntCache = new SwFntCache; // Cache for SwSubFont -> SwFntObj = { Font aFont, Font* pScrFont, Font* pPrtFont, OutputDevice* pPrinter, ... }
59 59 : pSwFontCache = new SwFontCache; // Cache for SwTextFormatColl -> SwFontObj = { SwFont aSwFont, SfxPoolItem* pDefaultArray }
60 : SwCache *pTextCache = new SwCache( 250 // Cache for SwTextFrm -> SwTextLine = { SwParaPortion* pLine }
61 : #ifdef DBG_UTIL
62 : , "static SwTextFrm::pTextCache"
63 : #endif
64 59 : );
65 59 : SwTextFrm::SetTextCache( pTextCache );
66 59 : pWaveCol = new Color( COL_GRAY );
67 : PROTOCOL_INIT
68 59 : }
69 :
70 59 : void _TextFinit()
71 : {
72 : PROTOCOL_STOP
73 59 : delete SwTextFrm::GetTextCache();
74 59 : delete pSwFontCache;
75 59 : delete pFntCache;
76 59 : delete pBlink;
77 59 : delete pWaveCol;
78 59 : delete pContourCache;
79 59 : SwDropPortion::DeleteDropCapCache();
80 236 : }
81 :
82 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|