build fix
[LibreOffice.git] / sw / source / filter / html / htmlnum.hxx
blob944a9e2ac510b661c2b18af8d664e2bb8adb8210
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_SOURCE_FILTER_HTML_HTMLNUM_HXX
20 #define INCLUDED_SW_SOURCE_FILTER_HTML_HTMLNUM_HXX
22 #include <swtypes.hxx>
23 #include <string.h>
25 #define HTML_NUMBUL_MARGINLEFT (MM50*2 + MM50/2)
26 #define HTML_NUMBUL_INDENT (-MM50)
28 class SwTextNode;
29 class SwNumRule;
31 // TODO: Unicode: Are these characters the correct ones?
32 #define HTML_BULLETCHAR_DISC (0xe008)
33 #define HTML_BULLETCHAR_CIRCLE (0xe009)
34 #define HTML_BULLETCHAR_SQUARE (0xe00b)
36 class SwHTMLNumRuleInfo
38 sal_uInt16 aNumStarts[MAXLEVEL];
39 SwNumRule * pNumRule; // Aktuelle Numerierung
40 sal_uInt16 nDeep; // aktuelle Num-Tiefe (1, 2, 3, ...)
41 bool bRestart : 1; // Export: Numerierung neu starten
42 bool bNumbered : 1; // Export: Absatz ist numeriert
44 public:
46 inline void Set( const SwHTMLNumRuleInfo& rInf );
47 void Set( const SwTextNode& rTextNd );
49 SwHTMLNumRuleInfo() :
50 pNumRule( nullptr ), nDeep( 0 ),
51 bRestart( false ), bNumbered( false )
53 memset( &aNumStarts, 0xff, sizeof( aNumStarts ) );
56 SwHTMLNumRuleInfo( const SwHTMLNumRuleInfo& rInf ) :
57 pNumRule( rInf.pNumRule ), nDeep( rInf.nDeep ),
58 bRestart( rInf.bRestart ), bNumbered( rInf.bNumbered )
60 memcpy( &aNumStarts, &rInf.aNumStarts, sizeof( aNumStarts ) );
63 explicit SwHTMLNumRuleInfo( const SwTextNode& rTextNd ) { Set( rTextNd ); }
64 inline SwHTMLNumRuleInfo& operator=( const SwHTMLNumRuleInfo& rInf );
66 inline void Clear();
68 void SetNumRule( const SwNumRule *pRule ) { pNumRule = const_cast<SwNumRule *>(pRule); }
69 SwNumRule *GetNumRule() { return pNumRule; }
70 const SwNumRule *GetNumRule() const { return pNumRule; }
72 void SetDepth( sal_uInt16 nDepth ) { nDeep = nDepth; }
73 sal_uInt16 GetDepth() const { return nDeep; }
74 void IncDepth() { ++nDeep; }
75 void DecDepth() { if (nDeep!=0) --nDeep; }
76 inline sal_uInt8 GetLevel() const;
78 bool IsRestart() const { return bRestart; }
80 bool IsNumbered() const { return bNumbered; }
82 inline void SetNodeStartValue( sal_uInt8 nLvl, sal_uInt16 nVal=USHRT_MAX );
83 sal_uInt16 GetNodeStartValue( sal_uInt8 nLvl ) const { return aNumStarts[nLvl]; }
86 inline SwHTMLNumRuleInfo& SwHTMLNumRuleInfo::operator=(
87 const SwHTMLNumRuleInfo& rInf )
89 Set( rInf );
90 return *this;
93 inline void SwHTMLNumRuleInfo::Set( const SwHTMLNumRuleInfo& rInf )
95 pNumRule = rInf.pNumRule;
96 nDeep = rInf.nDeep;
97 bRestart = rInf.bRestart;
98 bNumbered = rInf.bNumbered;
99 memcpy( &aNumStarts, &rInf.aNumStarts, sizeof( aNumStarts ) );
102 inline void SwHTMLNumRuleInfo::Clear()
104 pNumRule = nullptr;
105 nDeep = 0;
106 bRestart = bNumbered = false;
107 memset( &aNumStarts, 0xff, sizeof( aNumStarts ) );
110 inline sal_uInt8 SwHTMLNumRuleInfo::GetLevel() const
112 return
113 (sal_uInt8)( pNumRule!=nullptr && nDeep != 0
114 ? ( nDeep<=MAXLEVEL ? nDeep-1 : MAXLEVEL - 1 )
115 : 0 );
118 inline void SwHTMLNumRuleInfo::SetNodeStartValue( sal_uInt8 nLvl, sal_uInt16 nVal )
120 aNumStarts[nLvl] = nVal;
123 #endif
125 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */