Branch libreoffice-5-0-4
[LibreOffice.git] / sw / inc / txtinet.hxx
blob9a08f70faa670186ca1170a5f6de3586fc17293a
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_TXTINET_HXX
20 #define INCLUDED_SW_INC_TXTINET_HXX
22 #include <txatbase.hxx>
23 #include <txtatr.hxx>
24 #include <calbck.hxx>
26 class SwTextNode;
27 class SwCharFormat;
29 class SW_DLLPUBLIC SwTextINetFormat : public SwTextAttrNesting, public SwClient
31 SwTextNode * m_pTextNode;
32 bool m_bVisited : 1; // visited link?
33 bool m_bVisitedValid : 1; // is m_bVisited valid?
35 protected:
36 virtual void Modify( const SfxPoolItem* pOld, const SfxPoolItem *pNew) SAL_OVERRIDE;
38 public:
39 SwTextINetFormat( SwFormatINetFormat& rAttr, sal_Int32 nStart, sal_Int32 nEnd );
40 virtual ~SwTextINetFormat();
41 TYPEINFO_OVERRIDE();
43 virtual bool GetInfo( SfxPoolItem& rInfo ) const SAL_OVERRIDE;
45 SAL_DLLPRIVATE void InitINetFormat(SwTextNode & rNode);
47 // get and set TextNode pointer
48 const SwTextNode* GetpTextNode() const { return m_pTextNode; }
49 inline const SwTextNode& GetTextNode() const;
50 inline SwTextNode& GetTextNode();
51 void ChgTextNode( SwTextNode* pNew ) { m_pTextNode = pNew; }
53 SwCharFormat* GetCharFormat();
54 const SwCharFormat* GetCharFormat() const
55 { return const_cast<SwTextINetFormat*>(this)->GetCharFormat(); }
57 bool IsVisited() const { return m_bVisited; }
58 void SetVisited( bool bNew ) { m_bVisited = bNew; }
60 bool IsVisitedValid() const { return m_bVisitedValid; }
61 void SetVisitedValid( bool bNew ) { m_bVisitedValid = bNew; }
63 bool IsProtect() const;
66 inline const SwTextNode& SwTextINetFormat::GetTextNode() const
68 assert( m_pTextNode );
69 return *m_pTextNode;
72 inline SwTextNode& SwTextINetFormat::GetTextNode()
74 return const_cast<SwTextNode&>( const_cast<SwTextINetFormat const*>(this)->GetTextNode() );
77 #endif
79 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */