LCOV - code coverage report
Current view: top level - sw/source/core/inc - bookmrk.hxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 57 62 91.9 %
Date: 2014-11-03 Functions: 32 36 88.9 %
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             : 
      20             : #ifndef INCLUDED_SW_SOURCE_CORE_INC_BOOKMRK_HXX
      21             : #define INCLUDED_SW_SOURCE_CORE_INC_BOOKMRK_HXX
      22             : 
      23             : #include <cppuhelper/weakref.hxx>
      24             : #include <sfx2/Metadatable.hxx>
      25             : #include <vcl/keycod.hxx>
      26             : #include <boost/scoped_ptr.hpp>
      27             : #include <boost/noncopyable.hpp>
      28             : #include <map>
      29             : #include <rtl/ustring.hxx>
      30             : #include <IMark.hxx>
      31             : #include <swserv.hxx>
      32             : 
      33             : namespace com {
      34             :     namespace sun {
      35             :         namespace star {
      36             :             namespace text {
      37             :                 class XTextContent;
      38             :             }
      39             :         }
      40             :     }
      41             : }
      42             : 
      43             : struct SwPosition;  // fwd Decl. wg. UI
      44             : class SwDoc;
      45             : 
      46             : namespace sw {
      47             :     namespace mark {
      48             :         class MarkBase
      49             :             : virtual public IMark
      50             :         {
      51             :         public:
      52             :             //getters
      53    32289873 :             virtual SwPosition& GetMarkPos() const SAL_OVERRIDE
      54    32289873 :                 { return *m_pPos1; }
      55     7138431 :             virtual const OUString& GetName() const SAL_OVERRIDE
      56     7138431 :                 { return m_aName; }
      57    28265018 :             virtual SwPosition& GetOtherMarkPos() const SAL_OVERRIDE
      58             :             {
      59             :                 OSL_PRECOND(IsExpanded(), "<SwPosition::GetOtherMarkPos(..)> - I have no other Pos set." );
      60    28265018 :                 return *m_pPos2;
      61             :             }
      62    10377138 :             virtual SwPosition& GetMarkStart() const SAL_OVERRIDE
      63             :             {
      64    10377138 :                 if( !IsExpanded() ) return GetMarkPos( );
      65     8824240 :                 if ( GetMarkPos( ) < GetOtherMarkPos( ) )
      66     8818020 :                     return GetMarkPos();
      67             :                 else
      68        6220 :                     return GetOtherMarkPos( );
      69             :             }
      70    10428254 :             virtual SwPosition& GetMarkEnd() const SAL_OVERRIDE
      71             :             {
      72    10428254 :                 if( !IsExpanded() ) return GetMarkPos();
      73     8658862 :                 if ( GetMarkPos( ) >= GetOtherMarkPos( ) )
      74         842 :                     return GetMarkPos( );
      75             :                 else
      76     8658020 :                     return GetOtherMarkPos( );
      77             :             }
      78             : 
      79             :             virtual bool IsCoveringPosition(const SwPosition& rPos) const SAL_OVERRIDE;
      80    31213397 :             virtual bool IsExpanded() const SAL_OVERRIDE
      81    31213397 :                 { return static_cast< bool >(m_pPos2); }
      82             : 
      83        8652 :             virtual void SetName(const OUString& rName)
      84        8652 :                 { m_aName = rName; }
      85             :             virtual void SetMarkPos(const SwPosition& rNewPos);
      86             :             virtual void SetOtherMarkPos(const SwPosition& rNewPos);
      87           0 :             virtual void ClearOtherMarkPos()
      88           0 :                 { m_pPos2.reset(); }
      89             : 
      90             :             virtual OUString ToString( ) const SAL_OVERRIDE;
      91             : 
      92        3774 :             virtual void Swap()
      93             :             {
      94        3774 :                 if(m_pPos2)
      95        3774 :                     m_pPos1.swap(m_pPos2);
      96        3774 :             }
      97             : 
      98      188416 :             virtual void InitDoc(SwDoc* const)
      99             :             {
     100      188416 :             }
     101             : 
     102             :             virtual ~MarkBase();
     103             : 
     104             :             const ::com::sun::star::uno::WeakReference<
     105       13742 :                 ::com::sun::star::text::XTextContent> & GetXBookmark() const
     106       13742 :                     { return m_wXBookmark; }
     107       11775 :             void SetXBookmark(::com::sun::star::uno::Reference<
     108             :                         ::com::sun::star::text::XTextContent> const& xBkmk)
     109       11775 :                     { m_wXBookmark = xBkmk; }
     110             : 
     111             :         protected:
     112             :             // SwClient
     113             :             virtual void Modify( const SfxPoolItem* pOld, const SfxPoolItem *pNew ) SAL_OVERRIDE;
     114             : 
     115             :             MarkBase(const SwPaM& rPaM, const OUString& rName);
     116             :             ::boost::scoped_ptr<SwPosition> m_pPos1;
     117             :             ::boost::scoped_ptr<SwPosition> m_pPos2;
     118             :             OUString m_aName;
     119             :             static OUString GenerateNewName(const OUString& rPrefix);
     120             : 
     121             :             ::com::sun::star::uno::WeakReference<
     122             :                 ::com::sun::star::text::XTextContent> m_wXBookmark;
     123             :         };
     124             : 
     125           0 :         class NavigatorReminder
     126             :             : public MarkBase
     127             :         {
     128             :         public:
     129             :             NavigatorReminder(const SwPaM& rPaM);
     130             :         };
     131             : 
     132      376828 :         class UnoMark
     133             :             : public MarkBase
     134             :         {
     135             :         public:
     136             :             UnoMark(const SwPaM& rPaM);
     137             :         };
     138             : 
     139             :         class DdeBookmark
     140             :             : public MarkBase
     141             :         {
     142             :         public:
     143             :             DdeBookmark(const SwPaM& rPaM);
     144             : 
     145             :             const SwServerObject* GetRefObject() const
     146             :                 { return &m_aRefObj; }
     147           2 :             SwServerObject* GetRefObject()
     148           2 :                 { return &m_aRefObj; }
     149             : 
     150           0 :             bool IsServer() const
     151           0 :                 { return m_aRefObj.Is(); }
     152             : 
     153             :             void SetRefObject( SwServerObject* pObj );
     154             : 
     155             :             void DeregisterFromDoc(SwDoc* const pDoc);
     156             :             virtual ~DdeBookmark();
     157             : 
     158             :         private:
     159             :             tools::SvRef<SwServerObject> m_aRefObj;
     160             :         };
     161             : 
     162       16534 :         class Bookmark
     163             :             : virtual public IBookmark
     164             :             , public DdeBookmark
     165             :             , public ::sfx2::Metadatable
     166             :         {
     167             :         public:
     168             :             Bookmark(const SwPaM& rPaM,
     169             :                 const vcl::KeyCode& rCode,
     170             :                 const OUString& rName,
     171             :                 const OUString& rShortName);
     172             :             virtual void InitDoc(SwDoc* const io_Doc) SAL_OVERRIDE;
     173             : 
     174        2600 :             virtual const OUString& GetShortName() const SAL_OVERRIDE
     175        2600 :                 { return m_sShortName; }
     176        2600 :             virtual const vcl::KeyCode& GetKeyCode() const SAL_OVERRIDE
     177        2600 :                 { return m_aCode; }
     178          58 :             virtual void SetShortName(const OUString& rShortName) SAL_OVERRIDE
     179          58 :                 { m_sShortName = rShortName; }
     180          58 :             virtual void SetKeyCode(const vcl::KeyCode& rCode) SAL_OVERRIDE
     181          58 :                 { m_aCode = rCode; }
     182             : 
     183             :             // ::sfx2::Metadatable
     184             :             virtual ::sfx2::IXmlIdRegistry& GetRegistry() SAL_OVERRIDE;
     185             :             virtual bool IsInClipboard() const SAL_OVERRIDE;
     186             :             virtual bool IsInUndo() const SAL_OVERRIDE;
     187             :             virtual bool IsInContent() const SAL_OVERRIDE;
     188             :             virtual ::com::sun::star::uno::Reference<
     189             :                 ::com::sun::star::rdf::XMetadatable > MakeUnoObject() SAL_OVERRIDE;
     190             : 
     191             :         private:
     192             :             vcl::KeyCode m_aCode;
     193             :             OUString m_sShortName;
     194             :         };
     195             : 
     196         218 :         class Fieldmark
     197             :             : virtual public IFieldmark
     198             :             , public MarkBase
     199             :         {
     200             :         public:
     201             :             Fieldmark(const SwPaM& rPaM);
     202             : 
     203        1978 :             virtual OUString GetFieldname() const SAL_OVERRIDE
     204        1978 :                 { return m_aFieldname; }
     205           4 :             virtual OUString GetFieldHelptext() const SAL_OVERRIDE
     206           4 :                 { return m_aFieldHelptext; }
     207             : 
     208          30 :             virtual IFieldmark::parameter_map_t* GetParameters() SAL_OVERRIDE
     209          30 :                 { return &m_vParams; }
     210             : 
     211          74 :             virtual const IFieldmark::parameter_map_t* GetParameters() const SAL_OVERRIDE
     212          74 :                 { return &m_vParams; }
     213             : 
     214         218 :             virtual void SetFieldname(const OUString& aFieldname) SAL_OVERRIDE
     215         218 :                 { m_aFieldname = aFieldname; }
     216           4 :             virtual void SetFieldHelptext(const OUString& aFieldHelptext) SAL_OVERRIDE
     217           4 :                 { m_aFieldHelptext = aFieldHelptext; }
     218             : 
     219             :             virtual void ReleaseDoc(SwDoc* const) = 0;
     220             : 
     221             :             void SetMarkStartPos( const SwPosition& rNewStartPos );
     222             :             void SetMarkEndPos( const SwPosition& rNewEndPos );
     223             : 
     224             :             virtual void Invalidate() SAL_OVERRIDE;
     225             :             virtual OUString ToString() const SAL_OVERRIDE;
     226             : 
     227             :         private:
     228             :             OUString m_aFieldname;
     229             :             OUString m_aFieldHelptext;
     230             :             IFieldmark::parameter_map_t m_vParams;
     231             :         };
     232             : 
     233         384 :         class TextFieldmark
     234             :             : public Fieldmark
     235             :         {
     236             :         public:
     237             :             TextFieldmark(const SwPaM& rPaM);
     238             :             virtual void InitDoc(SwDoc* const io_pDoc) SAL_OVERRIDE;
     239             :             virtual void ReleaseDoc(SwDoc* const pDoc) SAL_OVERRIDE;
     240             :         };
     241             : 
     242          52 :         class CheckboxFieldmark
     243             :             : virtual public ICheckboxFieldmark
     244             :             , public Fieldmark
     245             :         {
     246             :         public:
     247             :             CheckboxFieldmark(const SwPaM& rPaM);
     248             :             virtual void InitDoc(SwDoc* const io_pDoc) SAL_OVERRIDE;
     249             :             virtual void ReleaseDoc(SwDoc* const pDoc) SAL_OVERRIDE;
     250             :             bool IsChecked() const SAL_OVERRIDE;
     251             :             void SetChecked(bool checked) SAL_OVERRIDE;
     252             : 
     253             :             virtual OUString toString( ) const;
     254             :         };
     255             :     }
     256             : }
     257             : #endif
     258             : 
     259             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10