fix baseline build (old cairo) - 'cairo_rectangle_int_t' does not name a type
[LibreOffice.git] / sc / source / core / inc / ddelink.hxx
blob978b3ab636b2c78f2e30d830646bebdd843fb96b
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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>
26 #include "types.hxx"
28 class ScDocument;
29 class ScMultipleReadHeader;
30 class ScMultipleWriteHeader;
31 class SvStream;
33 class ScDdeLink : public ::sfx2::SvBaseLink, public SvtBroadcaster
35 private:
36 static bool bIsInUpdate;
38 ScDocument* pDoc;
40 OUString aAppl; // connection/ link data
41 OUString aTopic;
42 OUString aItem;
43 sal_uInt8 nMode; // number format mode
45 bool bNeedUpdate; // is set, if update was not possible
47 ScMatrixRef pResult;
49 public:
50 TYPEINFO_OVERRIDE();
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();
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;
68 // for interpreter:
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; }
78 void TryUpdate();
80 bool NeedsUpdate() const { return bNeedUpdate; }
82 static bool IsInUpdate() { return bIsInUpdate; }
85 #endif
87 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */