LCOV - code coverage report
Current view: top level - sw/inc - swserv.hxx (source / functions) Hit Total Coverage
Test: commit 0e63ca4fde4e446f346e35849c756a30ca294aab Lines: 4 12 33.3 %
Date: 2014-04-11 Functions: 1 3 33.3 %
Legend: Lines: hit not hit

          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* pTblNd;
      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.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 bool GetData( ::com::sun::star::uno::Any & rData,
      64             :                             const OUString & rMimeType,
      65             :                             bool bSynchron = false ) SAL_OVERRIDE;
      66             : 
      67             :     sal_Bool SetData( const OUString & 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             : typedef tools::SvRef<SwServerObject> SwServerObjectRef;
      82             : #endif
      83             : 
      84             : #endif // INCLUDED_SW_INC_SWSERV_HXX
      85             : 
      86             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10