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 .
22 #include <sfx2/lnkbase.hxx>
23 #include <svl/broadcast.hxx>
26 namespace com::sun::star::uno
{ class Any
; }
29 class ScMultipleReadHeader
;
30 class ScMultipleWriteHeader
;
33 class ScDdeLink final
: public ::sfx2::SvBaseLink
, public SvtBroadcaster
36 static bool bIsInUpdate
;
40 OUString aAppl
; // connection/ link data
43 sal_uInt8 nMode
; // number format mode
45 bool bNeedUpdate
; // is set, if update was not possible
51 ScDdeLink( ScDocument
& rD
,
52 OUString aA
, OUString aT
, OUString aI
,
54 ScDdeLink( ScDocument
& rD
, SvStream
& rStream
, ScMultipleReadHeader
& rHdr
);
55 ScDdeLink( ScDocument
& rD
, const ScDdeLink
& rOther
);
56 virtual ~ScDdeLink() override
;
58 void Store( SvStream
& rStream
, ScMultipleWriteHeader
& rHdr
) const;
60 // SvBaseLink override:
61 virtual ::sfx2::SvBaseLink::UpdateResult
DataChanged(
62 const OUString
& rMimeType
, const css::uno::Any
& rValue
) override
;
64 // SvtBroadcaster override:
65 virtual void ListenersGone() override
;
69 const ScMatrix
* GetResult() const;
70 void SetResult( const ScMatrixRef
& pRes
);
72 const OUString
& GetAppl() const { return aAppl
; }
73 const OUString
& GetTopic() const { return aTopic
; }
74 const OUString
& GetItem() const { return aItem
; }
75 sal_uInt8
GetMode() const { return nMode
; }
79 bool NeedsUpdate() const { return bNeedUpdate
; }
81 static bool IsInUpdate() { return bIsInUpdate
; }
84 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */