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 : #ifndef _SWSERV_HXX
20 : #define _SWSERV_HXX
21 :
22 : #include <sfx2/linksrc.hxx>
23 : #include <IMark.hxx>
24 :
25 : class SwSectionNode;
26 : class SwBaseLink;
27 : class SwTableNode;
28 : struct SwPosition;
29 : class SwPaM;
30 :
31 : class SwServerObject : public ::sfx2::SvLinkSource
32 : {
33 : using sfx2::SvLinkSource::SendDataChanged;
34 :
35 : protected:
36 : enum ServerModes { BOOKMARK_SERVER, TABLE_SERVER, SECTION_SERVER, NONE_SERVER } eType;
37 : union {
38 : ::sw::mark::IMark* pBkmk;
39 : SwTableNode* pTblNd;
40 : SwSectionNode* pSectNd;
41 : } CNTNT_TYPE;
42 :
43 : SwServerObject();
44 :
45 : public:
46 0 : SwServerObject( ::sw::mark::IMark& rBookmark )
47 0 : : eType( BOOKMARK_SERVER )
48 : {
49 0 : CNTNT_TYPE.pBkmk = &rBookmark;
50 0 : }
51 0 : SwServerObject( SwTableNode& rTableNd )
52 0 : : eType( TABLE_SERVER )
53 : {
54 0 : CNTNT_TYPE.pTblNd = &rTableNd;
55 0 : }
56 0 : SwServerObject( SwSectionNode& rSectNd )
57 0 : : eType( SECTION_SERVER )
58 : {
59 0 : CNTNT_TYPE.pSectNd = &rSectNd;
60 0 : }
61 : virtual ~SwServerObject();
62 :
63 : virtual sal_Bool GetData( ::com::sun::star::uno::Any & rData,
64 : const String & rMimeType,
65 : sal_Bool bSynchron = sal_False );
66 :
67 : sal_Bool SetData( const String & rMimeType,
68 : const ::com::sun::star::uno::Any& rData );
69 :
70 : virtual void SendDataChanged( const SwPosition& rPos );
71 : virtual void SendDataChanged( const SwPaM& rRange );
72 :
73 : sal_Bool IsLinkInServer( const SwBaseLink* ) const;
74 :
75 : void SetNoServer();
76 : void SetDdeBookmark( ::sw::mark::IMark& rBookmark);
77 : };
78 :
79 : #ifndef SW_DECL_SWSERVEROBJECT_DEFINED
80 : #define SW_DECL_SWSERVEROBJECT_DEFINED
81 : SV_DECL_REF( SwServerObject )
82 : #endif
83 :
84 : #endif // _SWSERV_HXX
85 :
86 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|