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_TXTINET_HXX
20 : #define INCLUDED_SW_INC_TXTINET_HXX
21 :
22 : #include <txatbase.hxx>
23 : #include <txtatr.hxx>
24 : #include <calbck.hxx>
25 :
26 : class SwTxtNode;
27 : class SwCharFmt;
28 :
29 : class SW_DLLPUBLIC SwTxtINetFmt : public SwTxtAttrNesting, public SwClient
30 : {
31 : SwTxtNode * m_pTxtNode;
32 : bool m_bVisited : 1; // visited link?
33 : bool m_bVisitedValid : 1; // is m_bVisited valid?
34 :
35 : protected:
36 : virtual void Modify( const SfxPoolItem* pOld, const SfxPoolItem *pNew) SAL_OVERRIDE;
37 :
38 : public:
39 : SwTxtINetFmt( SwFmtINetFmt& rAttr, sal_Int32 nStart, sal_Int32 nEnd );
40 : virtual ~SwTxtINetFmt();
41 : TYPEINFO_OVERRIDE();
42 :
43 : virtual bool GetInfo( SfxPoolItem& rInfo ) const SAL_OVERRIDE;
44 :
45 : SAL_DLLPRIVATE void InitINetFmt(SwTxtNode & rNode);
46 :
47 : // get and set TxtNode pointer
48 484 : const SwTxtNode* GetpTxtNode() const { return m_pTxtNode; }
49 : inline const SwTxtNode& GetTxtNode() const;
50 : inline SwTxtNode& GetTxtNode();
51 2870 : void ChgTxtNode( SwTxtNode* pNew ) { m_pTxtNode = pNew; }
52 :
53 : SwCharFmt* GetCharFmt();
54 596 : const SwCharFmt* GetCharFmt() const
55 596 : { return const_cast<SwTxtINetFmt*>(this)->GetCharFmt(); }
56 :
57 62354 : bool IsVisited() const { return m_bVisited; }
58 2832 : void SetVisited( bool bNew ) { m_bVisited = bNew; }
59 :
60 27431 : bool IsVisitedValid() const { return m_bVisitedValid; }
61 2832 : void SetVisitedValid( bool bNew ) { m_bVisitedValid = bNew; }
62 :
63 : bool IsProtect() const;
64 : };
65 :
66 27431 : inline const SwTxtNode& SwTxtINetFmt::GetTxtNode() const
67 : {
68 : assert( m_pTxtNode );
69 27431 : return *m_pTxtNode;
70 : }
71 :
72 27431 : inline SwTxtNode& SwTxtINetFmt::GetTxtNode()
73 : {
74 27431 : return const_cast<SwTxtNode&>( const_cast<SwTxtINetFmt const*>(this)->GetTxtNode() );
75 : }
76 :
77 : #endif
78 :
79 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|