LibreOffice Module sc (master) 1
prevwsh2.cxx
Go to the documentation of this file.
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 <svx/svdmodel.hxx>
21#include <svl/hint.hxx>
22
23#include <prevwsh.hxx>
24#include <docsh.hxx>
25#include <preview.hxx>
26#include <hints.hxx>
27
29{
30 bool bDataChanged = false;
31
32 if (rHint.GetId() == SfxHintId::ThisIsAnSdrHint)
33 {
34 const SdrHint* pSdrHint = static_cast<const SdrHint*>(&rHint);
35 // SdrHints are no longer used for invalidating, thus react on objectchange instead
36 if(SdrHintKind::ObjectChange == pSdrHint->GetKind())
37 bDataChanged = true;
38 }
39 else if (const ScPaintHint* pPaintHint = dynamic_cast<const ScPaintHint*>(&rHint))
40 {
41 PaintPartFlags nParts = pPaintHint->GetParts();
43 bDataChanged = true;
44 }
45 else
46 {
47 switch ( rHint.GetId() )
48 {
49 case SfxHintId::ScDataChanged:
50 case SfxHintId::ScPrintOptions:
51 bDataChanged = true;
52 break;
53 case SfxHintId::ScDrawLayerNew:
54 {
56 if (pDrawBC)
57 StartListening(*pDrawBC);
58 }
59 break;
60 default: break;
61 }
62 }
63
64 if (bDataChanged)
65 pPreview->DataChanged(true);
66}
67
68/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
const ScDocument & GetDocument() const
Definition: docsh.hxx:219
SfxBroadcaster * GetDrawBroadcaster()
Definition: documen9.cxx:56
virtual void Notify(SfxBroadcaster &rBC, const SfxHint &rHint) override
Definition: prevwsh2.cxx:28
VclPtr< ScPreview > pPreview
Definition: prevwsh.hxx:45
ScDocShell * pDocShell
Definition: prevwsh.hxx:42
SdrHintKind GetKind() const
SfxHintId GetId() const
PaintPartFlags
Definition: global.hxx:109
@ StartListening
If set, cloned formula cells will start to listen to the document.