Branch data Line data Source code
1 : : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : : /*************************************************************************
3 : : *
4 : : * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 : : *
6 : : * Copyright 2000, 2010 Oracle and/or its affiliates.
7 : : *
8 : : * OpenOffice.org - a multi-platform office productivity suite
9 : : *
10 : : * This file is part of OpenOffice.org.
11 : : *
12 : : * OpenOffice.org is free software: you can redistribute it and/or modify
13 : : * it under the terms of the GNU Lesser General Public License version 3
14 : : * only, as published by the Free Software Foundation.
15 : : *
16 : : * OpenOffice.org is distributed in the hope that it will be useful,
17 : : * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 : : * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 : : * GNU Lesser General Public License version 3 for more details
20 : : * (a copy is included in the LICENSE file that accompanied this code).
21 : : *
22 : : * You should have received a copy of the GNU Lesser General Public License
23 : : * version 3 along with OpenOffice.org. If not, see
24 : : * <http://www.openoffice.org/license.html>
25 : : * for a copy of the LGPLv3 License.
26 : : *
27 : : ************************************************************************/
28 : :
29 : : #ifndef SC_DDELINK_HXX
30 : : #define SC_DDELINK_HXX
31 : :
32 : : #include "address.hxx"
33 : : #include <sfx2/lnkbase.hxx>
34 : : #include <svl/broadcast.hxx>
35 : : #include "scmatrix.hxx"
36 : :
37 : : class ScDocument;
38 : : class ScMultipleReadHeader;
39 : : class ScMultipleWriteHeader;
40 : : class SvStream;
41 : :
42 : : class ScDdeLink : public ::sfx2::SvBaseLink, public SvtBroadcaster
43 : : {
44 : : private:
45 : : static sal_Bool bIsInUpdate;
46 : :
47 : : ScDocument* pDoc;
48 : :
49 : : String aAppl; // Verbindungsdaten
50 : : String aTopic;
51 : : String aItem;
52 : : sal_uInt8 nMode; // Zahlformat-Modus
53 : :
54 : : sal_Bool bNeedUpdate; // wird gesetzt, wenn Update nicht moeglich war
55 : :
56 : : ScMatrixRef pResult; // Ergebnis
57 : :
58 : : public:
59 : : TYPEINFO();
60 : :
61 : : ScDdeLink( ScDocument* pD,
62 : : const String& rA, const String& rT, const String& rI,
63 : : sal_uInt8 nM );
64 : : ScDdeLink( ScDocument* pD, SvStream& rStream, ScMultipleReadHeader& rHdr );
65 : : ScDdeLink( ScDocument* pD, const ScDdeLink& rOther );
66 : : virtual ~ScDdeLink();
67 : :
68 : : void Store( SvStream& rStream, ScMultipleWriteHeader& rHdr ) const;
69 : :
70 : : // von SvBaseLink ueberladen:
71 : : virtual ::sfx2::SvBaseLink::UpdateResult DataChanged(
72 : : const String& rMimeType, const ::com::sun::star::uno::Any & rValue );
73 : :
74 : : // von SvtBroadcaster ueberladen:
75 : : virtual void ListenersGone();
76 : :
77 : : // fuer Interpreter:
78 : :
79 : 8 : const ScMatrix* GetResult() const { return pResult.get(); }
80 : 0 : void SetResult( ScMatrixRef pRes ) { pResult = pRes; }
81 : :
82 : : // XML and Excel import after NewData()
83 : : ScMatrixRef GetModifiableResult() { return pResult; }
84 : :
85 : 18 : const String& GetAppl() const { return aAppl; }
86 : 18 : const String& GetTopic() const { return aTopic; }
87 : 18 : const String& GetItem() const { return aItem; }
88 : 5 : sal_uInt8 GetMode() const { return nMode; }
89 : :
90 : : void TryUpdate();
91 : :
92 : 0 : sal_Bool NeedsUpdate() const { return bNeedUpdate; }
93 : :
94 : 0 : static sal_Bool IsInUpdate() { return bIsInUpdate; }
95 : : };
96 : :
97 : :
98 : : #endif
99 : :
100 : : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|