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 : #ifndef SC_DDELINK_HXX
21 : #define SC_DDELINK_HXX
22 :
23 : #include "address.hxx"
24 : #include <sfx2/lnkbase.hxx>
25 : #include <svl/broadcast.hxx>
26 : #include "types.hxx"
27 :
28 : class ScDocument;
29 : class ScMultipleReadHeader;
30 : class ScMultipleWriteHeader;
31 : class SvStream;
32 :
33 : class ScDdeLink : public ::sfx2::SvBaseLink, public SvtBroadcaster
34 : {
35 : private:
36 : static bool bIsInUpdate;
37 :
38 : ScDocument* pDoc;
39 :
40 : OUString aAppl; // connection/ link data
41 : OUString aTopic;
42 : OUString aItem;
43 : sal_uInt8 nMode; // number format mode
44 :
45 : bool bNeedUpdate; // is set, if update was not possible
46 :
47 : ScMatrixRef pResult;
48 :
49 : public:
50 : TYPEINFO_OVERRIDE();
51 :
52 : ScDdeLink( ScDocument* pD,
53 : const OUString& rA, const OUString& rT, const OUString& rI,
54 : sal_uInt8 nM );
55 : ScDdeLink( ScDocument* pD, SvStream& rStream, ScMultipleReadHeader& rHdr );
56 : ScDdeLink( ScDocument* pD, const ScDdeLink& rOther );
57 : virtual ~ScDdeLink();
58 :
59 : void Store( SvStream& rStream, ScMultipleWriteHeader& rHdr ) const;
60 :
61 : // overloaded by SvBaseLink:
62 : virtual ::sfx2::SvBaseLink::UpdateResult DataChanged(
63 : const OUString& rMimeType, const ::com::sun::star::uno::Any & rValue ) SAL_OVERRIDE;
64 :
65 : // overloaded by SvtBroadcaster:
66 : virtual void ListenersGone() SAL_OVERRIDE;
67 :
68 : // for interpreter:
69 :
70 : const ScMatrix* GetResult() const;
71 : void SetResult( const ScMatrixRef& pRes );
72 :
73 0 : const OUString& GetAppl() const { return aAppl; }
74 0 : const OUString& GetTopic() const { return aTopic; }
75 0 : const OUString& GetItem() const { return aItem; }
76 0 : sal_uInt8 GetMode() const { return nMode; }
77 :
78 : void TryUpdate();
79 :
80 0 : bool NeedsUpdate() const { return bNeedUpdate; }
81 :
82 0 : static bool IsInUpdate() { return bIsInUpdate; }
83 : };
84 :
85 : #endif
86 :
87 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|