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 :
20 : #include <com/sun/star/i18n/ScriptType.hpp>
21 : #include <editeng/scripttypeitem.hxx>
22 : #include <hintids.hxx>
23 : #include <hints.hxx>
24 : #include <ndtxt.hxx>
25 : #include <swtypes.hxx>
26 :
27 290808 : SwFmtChg::SwFmtChg( SwFmt* pFmt )
28 290808 : : SwMsgPoolItem( RES_FMT_CHG ), pChangedFmt( pFmt )
29 : {
30 290808 : }
31 :
32 21460 : SwInsTxt::SwInsTxt( sal_Int32 nP, sal_Int32 nL )
33 21460 : : SwMsgPoolItem( RES_INS_TXT ), nPos( nP ), nLen( nL )
34 : {
35 21460 : }
36 :
37 6888 : SwDelChr::SwDelChr( sal_Int32 nP )
38 6888 : : SwMsgPoolItem( RES_DEL_CHR ), nPos( nP )
39 : {
40 6888 : }
41 :
42 2232 : SwDelTxt::SwDelTxt( sal_Int32 nS, sal_Int32 nL )
43 2232 : : SwMsgPoolItem( RES_DEL_TXT ), nStart( nS ), nLen( nL )
44 : {
45 2232 : }
46 :
47 148319 : SwUpdateAttr::SwUpdateAttr( sal_Int32 nS, sal_Int32 nE, sal_uInt16 nW )
48 148319 : : SwMsgPoolItem( RES_UPDATE_ATTR ), nStart( nS ), nEnd( nE ), nWhichAttr( nW ), aWhichFmtAttr()
49 : {
50 148319 : }
51 :
52 0 : SwRefMarkFldUpdate::SwRefMarkFldUpdate( const OutputDevice* pOutput )
53 : : SwMsgPoolItem( RES_REFMARKFLD_UPDATE ),
54 0 : pOut( pOutput )
55 : {
56 : OSL_ENSURE( pOut, "No OutputDevice pointer" );
57 0 : }
58 :
59 6956 : SwDocPosUpdate::SwDocPosUpdate( const SwTwips nDcPos )
60 6956 : : SwMsgPoolItem( RES_DOCPOS_UPDATE ), nDocPos(nDcPos)
61 : {
62 6956 : }
63 :
64 1738 : SwTableFmlUpdate::SwTableFmlUpdate( const SwTable* pNewTbl )
65 : : SwMsgPoolItem( RES_TABLEFML_UPDATE ),
66 : pTbl( pNewTbl ), pHistory( 0 ), nSplitLine( USHRT_MAX ),
67 1738 : eFlags( TBL_CALC )
68 : {
69 1738 : DATA.pDelTbl = 0;
70 1738 : bModified = bBehindSplitLine = false;
71 : OSL_ENSURE( pTbl, "No Table pointer" );
72 1738 : }
73 :
74 172072 : SwAutoFmtGetDocNode::SwAutoFmtGetDocNode( const SwNodes* pNds )
75 172072 : : SwMsgPoolItem( RES_AUTOFMT_DOCNODE ), pCntntNode( 0 ), pNodes( pNds )
76 : {
77 172072 : }
78 :
79 2010268 : SwAttrSetChg::SwAttrSetChg( const SwAttrSet& rTheSet, SwAttrSet& rSet )
80 : : SwMsgPoolItem( RES_ATTRSET_CHG ),
81 : bDelSet( false ),
82 : pChgSet( &rSet ),
83 2010268 : pTheChgdSet( &rTheSet )
84 : {
85 2010268 : }
86 :
87 1640066 : SwAttrSetChg::SwAttrSetChg( const SwAttrSetChg& rChgSet )
88 : : SwMsgPoolItem( RES_ATTRSET_CHG ),
89 : bDelSet( true ),
90 1640066 : pTheChgdSet( rChgSet.pTheChgdSet )
91 : {
92 1640066 : pChgSet = new SwAttrSet( *rChgSet.pChgSet );
93 1640066 : }
94 :
95 7300668 : SwAttrSetChg::~SwAttrSetChg()
96 : {
97 3650334 : if( bDelSet )
98 1640066 : delete pChgSet;
99 3650334 : }
100 :
101 : #ifdef DBG_UTIL
102 : void SwAttrSetChg::ClearItem( sal_uInt16 nWhch )
103 : {
104 : OSL_ENSURE( bDelSet, "The Set may not be changed!" );
105 : pChgSet->ClearItem( nWhch );
106 : }
107 : #endif
108 :
109 4881494 : SwMsgPoolItem::SwMsgPoolItem( sal_uInt16 nWhch )
110 4881494 : : SfxPoolItem( nWhch )
111 : {
112 4881494 : }
113 :
114 0 : bool SwMsgPoolItem::operator==( const SfxPoolItem& ) const
115 : {
116 : OSL_FAIL( "SwMsgPoolItem knows no ==" );
117 0 : return false;
118 : }
119 :
120 0 : SfxPoolItem* SwMsgPoolItem::Clone( SfxItemPool* ) const
121 : {
122 : OSL_FAIL( "SwMsgPoolItem knows no Clone" );
123 0 : return 0;
124 : }
125 :
126 : #if OSL_DEBUG_LEVEL > 0
127 : const SfxPoolItem* GetDfltAttr( sal_uInt16 nWhich )
128 : {
129 : OSL_ASSERT( nWhich < POOLATTR_END && nWhich >= POOLATTR_BEGIN );
130 :
131 : SfxPoolItem *pHt = aAttrTab[ nWhich - POOLATTR_BEGIN ];
132 : OSL_ENSURE( pHt, "GetDfltFmtAttr(): Dflt == 0" );
133 : return pHt;
134 : }
135 : #else
136 6026 : const SfxPoolItem* GetDfltAttr( sal_uInt16 nWhich )
137 : {
138 6026 : return aAttrTab[ nWhich - POOLATTR_BEGIN ];
139 : }
140 : #endif
141 :
142 0 : SwCondCollCondChg::SwCondCollCondChg( SwFmt *pFmt )
143 0 : : SwMsgPoolItem( RES_CONDCOLL_CONDCHG ), pChangedFmt( pFmt )
144 : {
145 0 : }
146 :
147 626 : SwVirtPageNumInfo::SwVirtPageNumInfo( const SwPageFrm *pPg ) :
148 626 : SwMsgPoolItem( RES_VIRTPAGENUM_INFO ), pPage( 0 ), pOrigPage( pPg ), pFrm( 0 )
149 : {
150 626 : }
151 :
152 4734 : SwFindNearestNode::SwFindNearestNode( const SwNode& rNd )
153 4734 : : SwMsgPoolItem( RES_FINDNEARESTNODE ), pNd( &rNd ), pFnd( 0 )
154 : {
155 4734 : }
156 :
157 47938 : void SwFindNearestNode::CheckNode( const SwNode& rNd )
158 : {
159 47938 : if( &pNd->GetNodes() == &rNd.GetNodes() )
160 : {
161 47938 : sal_uLong nIdx = rNd.GetIndex();
162 122088 : if( nIdx < pNd->GetIndex() &&
163 77398 : ( !pFnd || nIdx > pFnd->GetIndex() ) &&
164 7746 : nIdx > rNd.GetNodes().GetEndOfExtras().GetIndex() )
165 7746 : pFnd = &rNd;
166 : }
167 47938 : }
168 :
169 344306 : sal_uInt16 GetWhichOfScript( sal_uInt16 nWhich, sal_uInt16 nScript )
170 : {
171 : static const sal_uInt16 aLangMap[3] =
172 : { RES_CHRATR_LANGUAGE, RES_CHRATR_CJK_LANGUAGE, RES_CHRATR_CTL_LANGUAGE };
173 : static const sal_uInt16 aFontMap[3] =
174 : { RES_CHRATR_FONT, RES_CHRATR_CJK_FONT, RES_CHRATR_CTL_FONT};
175 : static const sal_uInt16 aFontSizeMap[3] =
176 : { RES_CHRATR_FONTSIZE, RES_CHRATR_CJK_FONTSIZE, RES_CHRATR_CTL_FONTSIZE };
177 : static const sal_uInt16 aWeightMap[3] =
178 : { RES_CHRATR_WEIGHT, RES_CHRATR_CJK_WEIGHT, RES_CHRATR_CTL_WEIGHT};
179 : static const sal_uInt16 aPostureMap[3] =
180 : { RES_CHRATR_POSTURE, RES_CHRATR_CJK_POSTURE, RES_CHRATR_CTL_POSTURE};
181 :
182 : const sal_uInt16* pM;
183 344306 : switch( nWhich )
184 : {
185 : case RES_CHRATR_LANGUAGE:
186 : case RES_CHRATR_CJK_LANGUAGE:
187 : case RES_CHRATR_CTL_LANGUAGE:
188 295360 : pM = aLangMap;
189 295360 : break;
190 :
191 : case RES_CHRATR_FONT:
192 : case RES_CHRATR_CJK_FONT:
193 : case RES_CHRATR_CTL_FONT:
194 48946 : pM = aFontMap;
195 48946 : break;
196 :
197 : case RES_CHRATR_FONTSIZE:
198 : case RES_CHRATR_CJK_FONTSIZE:
199 : case RES_CHRATR_CTL_FONTSIZE:
200 0 : pM = aFontSizeMap;
201 0 : break;
202 :
203 : case RES_CHRATR_WEIGHT:
204 : case RES_CHRATR_CJK_WEIGHT:
205 : case RES_CHRATR_CTL_WEIGHT:
206 0 : pM = aWeightMap;
207 0 : break;
208 :
209 : case RES_CHRATR_POSTURE:
210 : case RES_CHRATR_CJK_POSTURE:
211 : case RES_CHRATR_CTL_POSTURE:
212 0 : pM = aPostureMap;
213 0 : break;
214 :
215 : default:
216 0 : pM = 0;
217 : }
218 :
219 : sal_uInt16 nRet;
220 344306 : if( pM )
221 : {
222 : using namespace ::com::sun::star;
223 : {
224 344306 : if( i18n::ScriptType::WEAK == nScript )
225 2884 : nScript = GetI18NScriptTypeOfLanguage( (sal_uInt16)GetAppLanguage() );
226 344306 : switch( nScript)
227 : {
228 : case i18n::ScriptType::COMPLEX:
229 24 : ++pM; // no break;
230 : case i18n::ScriptType::ASIAN:
231 156 : ++pM; // no break;
232 : default:
233 344306 : nRet = *pM;
234 : }
235 : }
236 : }
237 : else
238 0 : nRet = nWhich;
239 344306 : return nRet;
240 270 : }
241 :
242 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|