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