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 INCLUDED_SW_INC_SWSERV_HXX
20 : #define INCLUDED_SW_INC_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* pTableNd;
40 : SwSectionNode* pSectNd;
41 : } CNTNT_TYPE;
42 :
43 : SwServerObject();
44 :
45 : public:
46 1 : SwServerObject( ::sw::mark::IMark& rBookmark )
47 1 : : eType( BOOKMARK_SERVER )
48 : {
49 1 : CNTNT_TYPE.pBkmk = &rBookmark;
50 1 : }
51 0 : SwServerObject( SwTableNode& rTableNd )
52 0 : : eType( TABLE_SERVER )
53 : {
54 0 : CNTNT_TYPE.pTableNd = &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 bool GetData( ::com::sun::star::uno::Any & rData,
64 : const OUString & rMimeType,
65 : bool bSynchron = false ) SAL_OVERRIDE;
66 :
67 : void SendDataChanged( const SwPosition& rPos );
68 : void SendDataChanged( const SwPaM& rRange );
69 :
70 : bool IsLinkInServer( const SwBaseLink* ) const;
71 :
72 : void SetNoServer();
73 : void SetDdeBookmark( ::sw::mark::IMark& rBookmark);
74 : };
75 :
76 : #endif // INCLUDED_SW_INC_SWSERV_HXX
77 :
78 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|