1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #include "svdoutlinercache.hxx"
21 #include <svx/svdoutl.hxx>
22 #include <svx/svdmodel.hxx>
23 #include <svx/svdetc.hxx>
25 SdrOutlinerCache::SdrOutlinerCache( SdrModel
* pModel
)
27 mpModeOutline( NULL
),
32 SdrOutliner
* SdrOutlinerCache::createOutliner( sal_uInt16 nOutlinerMode
)
34 SdrOutliner
* pOutliner
= NULL
;
36 if( (OUTLINERMODE_OUTLINEOBJECT
== nOutlinerMode
) && mpModeOutline
)
38 pOutliner
= mpModeOutline
;
41 else if( (OUTLINERMODE_TEXTOBJECT
== nOutlinerMode
) && mpModeText
)
43 pOutliner
= mpModeText
;
48 pOutliner
= SdrMakeOutliner(nOutlinerMode
, *mpModel
);
49 Outliner
& aDrawOutliner
= mpModel
->GetDrawOutliner();
50 pOutliner
->SetCalcFieldValueHdl( aDrawOutliner
.GetCalcFieldValueHdl() );
51 maActiveOutliners
.push_back(pOutliner
);
57 SdrOutlinerCache::~SdrOutlinerCache()
72 void SdrOutlinerCache::disposeOutliner( SdrOutliner
* pOutliner
)
76 sal_uInt16 nOutlMode
= pOutliner
->GetOutlinerMode();
78 if( (OUTLINERMODE_OUTLINEOBJECT
== nOutlMode
) && (NULL
== mpModeOutline
) )
80 mpModeOutline
= pOutliner
;
82 pOutliner
->SetVertical( false );
84 // Deregister on outliner, might be reused from outliner cache
85 pOutliner
->SetNotifyHdl( Link
<>() );
87 else if( (OUTLINERMODE_TEXTOBJECT
== nOutlMode
) && (NULL
== mpModeText
) )
89 mpModeText
= pOutliner
;
91 pOutliner
->SetVertical( false );
93 // Deregister on outliner, might be reused from outliner cache
94 pOutliner
->SetNotifyHdl( Link
<>() );
98 maActiveOutliners
.erase(std::remove(maActiveOutliners
.begin(), maActiveOutliners
.end(), pOutliner
), maActiveOutliners
.end());
105 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */