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 #ifndef INCLUDED_SC_SOURCE_CORE_INC_DDELINK_HXX
21 #define INCLUDED_SC_SOURCE_CORE_INC_DDELINK_HXX
23 #include "address.hxx"
24 #include <sfx2/lnkbase.hxx>
25 #include <svl/broadcast.hxx>
29 class ScMultipleReadHeader
;
30 class ScMultipleWriteHeader
;
33 class ScDdeLink
: 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
52 ScDdeLink( ScDocument
* pD
,
53 const OUString
& rA
, const OUString
& rT
, const OUString
& rI
,
55 ScDdeLink( ScDocument
* pD
, SvStream
& rStream
, ScMultipleReadHeader
& rHdr
);
56 ScDdeLink( ScDocument
* pD
, const ScDdeLink
& rOther
);
59 void Store( SvStream
& rStream
, ScMultipleWriteHeader
& rHdr
) const;
61 // SvBaseLink override:
62 virtual ::sfx2::SvBaseLink::UpdateResult
DataChanged(
63 const OUString
& rMimeType
, const ::com::sun::star::uno::Any
& rValue
) SAL_OVERRIDE
;
65 // SvtBroadcaster override:
66 virtual void ListenersGone() SAL_OVERRIDE
;
70 const ScMatrix
* GetResult() const;
71 void SetResult( const ScMatrixRef
& pRes
);
73 const OUString
& GetAppl() const { return aAppl
; }
74 const OUString
& GetTopic() const { return aTopic
; }
75 const OUString
& GetItem() const { return aItem
; }
76 sal_uInt8
GetMode() const { return nMode
; }
80 bool NeedsUpdate() const { return bNeedUpdate
; }
82 static bool IsInUpdate() { return bIsInUpdate
; }
87 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */