1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 .
22 #include <sfx2/linksrc.hxx>
31 class SwServerObject
: public ::sfx2::SvLinkSource
33 using sfx2::SvLinkSource::SendDataChanged
;
36 enum ServerModes
{ BOOKMARK_SERVER
, TABLE_SERVER
, SECTION_SERVER
, NONE_SERVER
} eType
;
38 ::sw::mark::IMark
* pBkmk
;
40 SwSectionNode
* pSectNd
;
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
.pTblNd
= &rTableNd
;
56 SwServerObject( SwSectionNode
& rSectNd
)
57 : eType( SECTION_SERVER
)
59 CNTNT_TYPE
.pSectNd
= &rSectNd
;
61 virtual ~SwServerObject();
63 virtual sal_Bool
GetData( ::com::sun::star::uno::Any
& rData
,
64 const String
& rMimeType
,
65 sal_Bool bSynchron
= sal_False
);
67 sal_Bool
SetData( const String
& rMimeType
,
68 const ::com::sun::star::uno::Any
& rData
);
70 virtual void SendDataChanged( const SwPosition
& rPos
);
71 virtual void SendDataChanged( const SwPaM
& rRange
);
73 sal_Bool
IsLinkInServer( const SwBaseLink
* ) const;
76 void SetDdeBookmark( ::sw::mark::IMark
& rBookmark
);
79 #ifndef SW_DECL_SWSERVEROBJECT_DEFINED
80 #define SW_DECL_SWSERVEROBJECT_DEFINED
81 SV_DECL_REF( SwServerObject
)
86 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */