lok: Hide file linking in section
[LibreOffice.git] / sw / inc / txtatr.hxx
blobfcc25811d63daf14278e47c74916ba750521c630
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_TXTATR_HXX
20 #define INCLUDED_SW_INC_TXTATR_HXX
22 #include "txatbase.hxx"
23 #include "calbck.hxx"
25 class SwTextNode;
26 class SwCharFormat;
27 class SwFormatMeta;
29 namespace sw {
30 class MetaFieldManager;
33 class SwTextCharFormat : public SwTextAttrEnd
35 SwTextNode * m_pTextNode;
36 sal_uInt16 m_nSortNumber;
38 public:
39 SwTextCharFormat( SwFormatCharFormat& rAttr, sal_Int32 nStart, sal_Int32 nEnd );
40 virtual ~SwTextCharFormat( ) override;
42 // Passed from SwFormatCharFormat (no derivation from SwClient!).
43 void ModifyNotification( const SfxPoolItem*, const SfxPoolItem* );
44 bool GetInfo( SfxPoolItem const & rInfo ) const;
46 // get and set TextNode pointer
47 void ChgTextNode( SwTextNode* pNew ) { m_pTextNode = pNew; }
49 void SetSortNumber( sal_uInt16 nSortNumber ) { m_nSortNumber = nSortNumber; }
50 sal_uInt16 GetSortNumber() const { return m_nSortNumber; }
54 class SwTextMeta final : public SwTextAttrNesting
56 private:
57 SwTextMeta( SwFormatMeta & i_rAttr,
58 const sal_Int32 i_nStart, const sal_Int32 i_nEnd );
60 public:
61 static SwTextMeta * CreateTextMeta(
62 ::sw::MetaFieldManager & i_rTargetDocManager,
63 SwTextNode *const i_pTargetTextNode,
64 SwFormatMeta & i_rAttr,
65 sal_Int32 const i_nStart, sal_Int32 const i_nEnd,
66 bool const i_bIsCopy);
68 virtual ~SwTextMeta() override;
70 void ChgTextNode(SwTextNode * const pNode);
74 class SW_DLLPUBLIC SwTextRuby : public SwTextAttrNesting, public SwClient
76 SwTextNode* m_pTextNode;
77 protected:
78 virtual void Modify( const SfxPoolItem* pOld, const SfxPoolItem *pNew) override;
79 public:
80 SwTextRuby( SwFormatRuby& rAttr, sal_Int32 nStart, sal_Int32 nEnd );
81 virtual ~SwTextRuby() override;
83 virtual bool GetInfo( SfxPoolItem& rInfo ) const override;
85 SAL_DLLPRIVATE void InitRuby(SwTextNode & rNode);
87 /// Get and set TextNode pointer.
88 inline const SwTextNode& GetTextNode() const;
89 void ChgTextNode( SwTextNode* pNew ) { m_pTextNode = pNew; }
91 SwCharFormat* GetCharFormat();
92 const SwCharFormat* GetCharFormat() const
93 { return const_cast<SwTextRuby*>(this)->GetCharFormat(); }
96 inline const SwTextNode& SwTextRuby::GetTextNode() const
98 assert( m_pTextNode );
99 return *m_pTextNode;
102 #endif
104 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */