LibreOffice Module sw (master) 1
txtinet.hxx
Go to the documentation of this file.
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 "calbck.hxx"
24
25class SwTextNode;
26class SwCharFormat;
27
30{
31 private:
33 bool m_bVisited : 1; // visited link?
34 bool m_bVisitedValid : 1; // is m_bVisited valid?
35 virtual void SwClientNotify(const SwModify&, const SfxHint&) override;
36
37 public:
38 SwTextINetFormat( SwFormatINetFormat& rAttr, sal_Int32 nStart, sal_Int32 nEnd );
39 virtual ~SwTextINetFormat() override;
40
41 virtual bool GetInfo( SfxPoolItem& rInfo ) const override;
42
43 SAL_DLLPRIVATE void InitINetFormat(SwTextNode & rNode);
44
45 // get and set TextNode pointer
46 const SwTextNode* GetpTextNode() const { return m_pTextNode; }
47 inline const SwTextNode& GetTextNode() const;
48 inline SwTextNode& GetTextNode();
49 void ChgTextNode( SwTextNode* pNew ) { m_pTextNode = pNew; }
50
53 { return const_cast<SwTextINetFormat*>(this)->GetCharFormat(); }
54
55 bool IsVisited() const { return m_bVisited; }
56 void SetVisited( bool bNew ) { m_bVisited = bNew; }
57
58 bool IsVisitedValid() const { return m_bVisitedValid; }
59 void SetVisitedValid( bool bNew ) { m_bVisitedValid = bNew; }
60
61 bool IsProtect() const;
62};
63
65{
66 assert( m_pTextNode );
67 return *m_pTextNode;
68}
69
71{
72 assert( m_pTextNode );
73 return *m_pTextNode;
74}
75
76#endif
77
78/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Represents the style of a text portion.
Definition: charfmt.hxx:27
virtual void SwClientNotify(const SwModify &, const SfxHint &rHint) override
Definition: calbck.cxx:120
virtual bool GetInfo(SfxPoolItem &) const
Definition: calbck.hxx:173
const SwFormatCharFormat & GetCharFormat() const
Definition: txatbase.hxx:187
SwTextAttr subclass that tracks the location of the wrapped SwFormatURL.
Definition: txtinet.hxx:30
SwTextNode * m_pTextNode
Definition: txtinet.hxx:32
bool m_bVisitedValid
Definition: txtinet.hxx:34
void SetVisitedValid(bool bNew)
Definition: txtinet.hxx:59
bool IsVisited() const
Definition: txtinet.hxx:55
void SetVisited(bool bNew)
Definition: txtinet.hxx:56
bool IsVisitedValid() const
Definition: txtinet.hxx:58
const SwTextNode & GetTextNode() const
Definition: txtinet.hxx:64
void ChgTextNode(SwTextNode *pNew)
Definition: txtinet.hxx:49
const SwCharFormat * GetCharFormat() const
Definition: txtinet.hxx:52
const SwTextNode * GetpTextNode() const
Definition: txtinet.hxx:46
SwTextNode is a paragraph in the document model.
Definition: ndtxt.hxx:112
#define SW_DLLPUBLIC
Definition: swdllapi.h:28