Branch libreoffice-5-0-4
[LibreOffice.git] / sw / inc / swserv.hxx
blob0539127182805e60879202b5a8a55d0ad9fb823f
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 .
19 #ifndef INCLUDED_SW_INC_SWSERV_HXX
20 #define INCLUDED_SW_INC_SWSERV_HXX
22 #include <sfx2/linksrc.hxx>
23 #include <IMark.hxx>
25 class SwSectionNode;
26 class SwBaseLink;
27 class SwTableNode;
28 struct SwPosition;
29 class SwPaM;
31 class SwServerObject : public ::sfx2::SvLinkSource
33 using sfx2::SvLinkSource::SendDataChanged;
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;
43 SwServerObject();
45 public:
46 SwServerObject( ::sw::mark::IMark& rBookmark )
47 : eType( BOOKMARK_SERVER )
49 CNTNT_TYPE.pBkmk = &rBookmark;
51 SwServerObject( SwTableNode& rTableNd )
52 : eType( TABLE_SERVER )
54 CNTNT_TYPE.pTableNd = &rTableNd;
56 SwServerObject( SwSectionNode& rSectNd )
57 : eType( SECTION_SERVER )
59 CNTNT_TYPE.pSectNd = &rSectNd;
61 virtual ~SwServerObject();
63 virtual bool GetData( ::com::sun::star::uno::Any & rData,
64 const OUString & rMimeType,
65 bool bSynchron = false ) SAL_OVERRIDE;
67 void SendDataChanged( const SwPosition& rPos );
68 void SendDataChanged( const SwPaM& rRange );
70 bool IsLinkInServer( const SwBaseLink* ) const;
72 void SetNoServer();
73 void SetDdeBookmark( ::sw::mark::IMark& rBookmark);
76 #endif // INCLUDED_SW_INC_SWSERV_HXX
78 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */