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 "cmdid.h"
21 : #include "hintids.hxx"
22 : #include <algorithm>
23 :
24 :
25 : #include <svl/eitem.hxx>
26 : #include <editeng/lrspitem.hxx>
27 : #include <editeng/ulspitem.hxx>
28 : #include <editeng/sizeitem.hxx>
29 : #include <svx/pageitem.hxx>
30 : #include <editeng/brshitem.hxx>
31 : #include <editeng/frmdiritem.hxx>
32 : #include <vcl/bitmap.hxx>
33 : #include <vcl/builder.hxx>
34 : #include <vcl/graph.hxx>
35 : #include <tgrditem.hxx>
36 : #include <viewopt.hxx>
37 : #include "colex.hxx"
38 : #include "colmgr.hxx"
39 :
40 : /*-----------------------------------------------------------------------
41 : Description: Taking the updated values from the set
42 : -----------------------------------------------------------------------*/
43 0 : void SwPageExample::UpdateExample( const SfxItemSet& rSet )
44 : {
45 0 : const SvxPageItem* pPage = 0;
46 0 : SfxItemPool* pPool = rSet.GetPool();
47 0 : sal_uInt16 nWhich = pPool->GetWhich( SID_ATTR_PAGE );
48 :
49 0 : if ( rSet.GetItemState( nWhich, sal_False ) == SFX_ITEM_SET )
50 : {
51 : // alignment
52 0 : pPage = (const SvxPageItem*)&rSet.Get( nWhich );
53 :
54 0 : if ( pPage )
55 0 : SetUsage( pPage->GetPageUsage() );
56 : }
57 :
58 0 : nWhich = pPool->GetWhich( SID_ATTR_PAGE_SIZE );
59 :
60 0 : if ( rSet.GetItemState( nWhich, sal_False ) == SFX_ITEM_SET )
61 : {
62 : // orientation and size from PageItem
63 0 : const SvxSizeItem& rSize = (const SvxSizeItem&)rSet.Get( nWhich );
64 0 : SetSize( rSize.GetSize() );
65 : }
66 0 : nWhich = RES_LR_SPACE;
67 0 : if ( rSet.GetItemState( nWhich, sal_False ) == SFX_ITEM_SET )
68 : {
69 : // set left and right border
70 0 : const SvxLRSpaceItem& rLRSpace = (const SvxLRSpaceItem&)rSet.Get( nWhich );
71 :
72 0 : SetLeft( rLRSpace.GetLeft() );
73 0 : SetRight( rLRSpace.GetRight() );
74 : }
75 : else
76 : {
77 0 : SetLeft( 0 );
78 0 : SetRight( 0 );
79 : }
80 :
81 0 : nWhich = RES_UL_SPACE;
82 :
83 0 : if ( rSet.GetItemState( nWhich, sal_False ) == SFX_ITEM_SET )
84 : {
85 : // set upper and lower border
86 0 : const SvxULSpaceItem& rULSpace = (const SvxULSpaceItem&)rSet.Get( nWhich );
87 :
88 0 : SetTop( rULSpace.GetUpper() );
89 0 : SetBottom( rULSpace.GetLower() );
90 : }
91 : else
92 : {
93 0 : SetTop( 0 );
94 0 : SetBottom( 0 );
95 : }
96 :
97 :
98 : // evaluate header-attributes
99 : const SfxPoolItem* pItem;
100 0 : if( SFX_ITEM_SET == rSet.GetItemState( pPool->GetWhich( SID_ATTR_PAGE_HEADERSET),
101 0 : sal_False, &pItem ) )
102 : {
103 0 : const SfxItemSet& rHeaderSet = ((SvxSetItem*)pItem)->GetItemSet();
104 : const SfxBoolItem& rHeaderOn =
105 0 : (const SfxBoolItem&)rHeaderSet.Get( pPool->GetWhich( SID_ATTR_PAGE_ON ) );
106 :
107 0 : if ( rHeaderOn.GetValue() )
108 : {
109 : const SvxSizeItem& rSize =
110 0 : (const SvxSizeItem&)rHeaderSet.Get(pPool->GetWhich(SID_ATTR_PAGE_SIZE));
111 :
112 : const SvxULSpaceItem& rUL = (const SvxULSpaceItem&)rHeaderSet.Get(
113 0 : pPool->GetWhich(SID_ATTR_ULSPACE));
114 : const SvxLRSpaceItem& rLR = (const SvxLRSpaceItem&)rHeaderSet.Get(
115 0 : pPool->GetWhich(SID_ATTR_LRSPACE));
116 :
117 0 : SetHdHeight( rSize.GetSize().Height() - rUL.GetLower());
118 0 : SetHdDist( rUL.GetLower() );
119 0 : SetHdLeft( rLR.GetLeft() );
120 0 : SetHdRight( rLR.GetRight() );
121 0 : SetHeader( sal_True );
122 0 : if ( rHeaderSet.GetItemState( RES_BACKGROUND ) == SFX_ITEM_SET )
123 : {
124 : const SvxBrushItem& rItem =
125 0 : (const SvxBrushItem&)rHeaderSet.Get( RES_BACKGROUND );
126 0 : SetHdColor( rItem.GetColor() );
127 : }
128 0 : if ( rHeaderSet.GetItemState( RES_BOX ) == SFX_ITEM_SET )
129 : {
130 : const SvxBoxItem& rItem =
131 0 : (const SvxBoxItem&)rHeaderSet.Get( RES_BOX );
132 0 : SetHdBorder( rItem );
133 : }
134 : }
135 : else
136 0 : SetHeader( sal_False );
137 : }
138 :
139 0 : if( SFX_ITEM_SET == rSet.GetItemState( pPool->GetWhich( SID_ATTR_PAGE_FOOTERSET),
140 0 : sal_False, &pItem ) )
141 : {
142 0 : const SfxItemSet& rFooterSet = ((SvxSetItem*)pItem)->GetItemSet();
143 : const SfxBoolItem& rFooterOn =
144 0 : (const SfxBoolItem&)rFooterSet.Get( SID_ATTR_PAGE_ON );
145 :
146 0 : if ( rFooterOn.GetValue() )
147 : {
148 : const SvxSizeItem& rSize =
149 0 : (const SvxSizeItem&)rFooterSet.Get( pPool->GetWhich( SID_ATTR_PAGE_SIZE ) );
150 :
151 : const SvxULSpaceItem& rUL = (const SvxULSpaceItem&)rFooterSet.Get(
152 0 : pPool->GetWhich( SID_ATTR_ULSPACE ) );
153 : const SvxLRSpaceItem& rLR = (const SvxLRSpaceItem&)rFooterSet.Get(
154 0 : pPool->GetWhich( SID_ATTR_LRSPACE ) );
155 :
156 0 : SetFtHeight( rSize.GetSize().Height() - rUL.GetUpper());
157 0 : SetFtDist( rUL.GetUpper() );
158 0 : SetFtLeft( rLR.GetLeft() );
159 0 : SetFtRight( rLR.GetRight() );
160 0 : SetFooter( sal_True );
161 0 : if( rFooterSet.GetItemState( RES_BACKGROUND ) == SFX_ITEM_SET )
162 : {
163 : const SvxBrushItem& rItem =
164 0 : (const SvxBrushItem&)rFooterSet.Get( RES_BACKGROUND );
165 0 : SetFtColor( rItem.GetColor() );
166 : }
167 0 : if( rFooterSet.GetItemState( RES_BOX ) == SFX_ITEM_SET )
168 : {
169 : const SvxBoxItem& rItem =
170 0 : (const SvxBoxItem&)rFooterSet.Get( RES_BOX );
171 0 : SetFtBorder( rItem );
172 : }
173 : }
174 : else
175 0 : SetFooter( sal_False );
176 : }
177 0 : if( SFX_ITEM_SET == rSet.GetItemState( RES_BACKGROUND,
178 0 : sal_False, &pItem ) )
179 : {
180 0 : SetColor( ( (const SvxBrushItem*)pItem )->GetColor() );
181 0 : const Graphic* pGrf = ( (const SvxBrushItem*)pItem )->GetGraphic();
182 :
183 0 : if ( pGrf )
184 : {
185 0 : Bitmap aBitmap = pGrf->GetBitmap();
186 0 : SetBitmap( &aBitmap );
187 : }
188 : else
189 0 : SetBitmap( NULL );
190 : }
191 :
192 0 : Invalidate();
193 0 : }
194 :
195 0 : void SwColExample::DrawPage( const Point& rOrg,
196 : const sal_Bool bSecond,
197 : const sal_Bool bEnabled )
198 : {
199 0 : SwPageExample::DrawPage( rOrg, bSecond, bEnabled );
200 : sal_uInt16 nColumnCount;
201 0 : if( pColMgr && 0 != (nColumnCount = pColMgr->GetCount()))
202 : {
203 0 : long nL = GetLeft();
204 0 : long nR = GetRight();
205 :
206 0 : if ( GetUsage() == SVX_PAGE_MIRROR && !bSecond )
207 : {
208 : // rotate for mirrored
209 0 : nL = GetRight();
210 0 : nR = GetLeft();
211 : }
212 :
213 0 : SetFillColor( Color( COL_LIGHTGRAY ) );
214 0 : Rectangle aRect;
215 0 : aRect.Right() = rOrg.X() + GetSize().Width() - nR;
216 0 : aRect.Left() = rOrg.X() + nL;
217 0 : aRect.Top() = rOrg.Y() + GetTop()
218 0 : + GetHdHeight() + GetHdDist();
219 0 : aRect.Bottom()= rOrg.Y() + GetSize().Height() - GetBottom()
220 0 : - GetFtHeight() - GetFtDist();
221 0 : DrawRect(aRect);
222 :
223 0 : if(GetColor() == Color(COL_TRANSPARENT))
224 : {
225 0 : const StyleSettings& rStyleSettings = GetSettings().GetStyleSettings();
226 0 : const Color& rFieldColor = rStyleSettings.GetFieldColor();
227 0 : SetFillColor( rFieldColor );
228 : }
229 : else
230 0 : SetFillColor( GetColor() );
231 :
232 : // #97495# make sure that the automatic column widht's are always equal
233 0 : sal_Bool bAutoWidth = pColMgr->IsAutoWidth();
234 0 : sal_Int32 nAutoColWidth = 0;
235 0 : if(bAutoWidth)
236 : {
237 0 : sal_Int32 nColumnWidthSum = 0;
238 : sal_uInt16 i;
239 0 : for(i = 0; i < nColumnCount; ++i)
240 0 : nColumnWidthSum += pColMgr->GetColWidth( i );
241 0 : nAutoColWidth = nColumnWidthSum / nColumnCount;
242 : }
243 :
244 : sal_uInt16 i;
245 0 : for( i = 0; i < nColumnCount; i++)
246 : {
247 0 : if(!bAutoWidth)
248 0 : nAutoColWidth = pColMgr->GetColWidth( i );
249 0 : aRect.Right() = aRect.Left() + nAutoColWidth;
250 0 : DrawRect(aRect);
251 0 : if(i < nColumnCount - 1)
252 0 : aRect.Left() = aRect.Right() + pColMgr->GetGutterWidth(i);
253 : }
254 0 : if(pColMgr->HasLine())
255 : {
256 0 : Point aUp( rOrg.X() + nL, rOrg.Y() + GetTop() );
257 0 : Point aDown( rOrg.X() + nL, rOrg.Y() + GetSize().Height()
258 0 : - GetBottom() - GetFtHeight() - GetFtDist() );
259 :
260 0 : if( pColMgr->GetLineHeightPercent() != 100 )
261 : {
262 0 : long nLength = aDown.Y() - aUp.Y();
263 0 : nLength -= nLength * pColMgr->GetLineHeightPercent() / 100;
264 0 : switch(pColMgr->GetAdjust())
265 : {
266 0 : case COLADJ_BOTTOM: aUp.Y() += nLength; break;
267 0 : case COLADJ_TOP: aDown.Y() -= nLength; break;
268 : case COLADJ_CENTER:
269 0 : aUp.Y() += nLength / 2;
270 0 : aDown.Y() -= nLength / 2;
271 0 : break;
272 : default:; // prevent warning
273 : }
274 : }
275 :
276 : int nDist;
277 0 : for( i = 0; i < nColumnCount - 1; i++)
278 : {
279 0 : int nGutter = pColMgr->GetGutterWidth(i);
280 0 : nDist = pColMgr->GetColWidth( i ) + nGutter;
281 : nDist -= (i == 0) ?
282 : nGutter/2 :
283 0 : 0;
284 0 : aUp.X() += nDist;
285 0 : aDown.X() += nDist;
286 0 : DrawLine( aUp, aDown );
287 :
288 : }
289 : }
290 : }
291 0 : }
292 :
293 0 : extern "C" SAL_DLLPUBLIC_EXPORT Window* SAL_CALL makeSwColExample(Window *pParent, VclBuilder::stringmap &)
294 : {
295 0 : return new SwColExample(pParent);
296 : }
297 :
298 0 : SwColumnOnlyExample::SwColumnOnlyExample( Window* pParent, const ResId& rResId)
299 : : Window(pParent, rResId)
300 0 : , m_aFrmSize(1,1)
301 : {
302 0 : SetMapMode( MapMode( MAP_TWIP ) );
303 0 : m_aWinSize = GetOutputSizePixel();
304 0 : m_aWinSize.Height() -= 4;
305 0 : m_aWinSize.Width() -= 4;
306 :
307 0 : m_aWinSize = PixelToLogic( m_aWinSize );
308 :
309 0 : SetBorderStyle( WINDOW_BORDER_MONO );
310 :
311 0 : m_aFrmSize = SvxPaperInfo::GetPaperSize(PAPER_A4);// DIN A4
312 0 : ::FitToActualSize(m_aCols, (sal_uInt16)m_aFrmSize.Width());
313 :
314 0 : long nHeight = m_aFrmSize.Height();
315 0 : Fraction aScale( m_aWinSize.Height(), nHeight );
316 0 : MapMode aMapMode( GetMapMode() );
317 0 : aMapMode.SetScaleX( aScale );
318 0 : aMapMode.SetScaleY( aScale );
319 0 : SetMapMode( aMapMode );
320 0 : }
321 :
322 0 : SwColumnOnlyExample::SwColumnOnlyExample(Window* pParent)
323 : : Window(pParent)
324 0 : , m_aFrmSize(1,1)
325 : {
326 0 : SetMapMode( MapMode( MAP_TWIP ) );
327 0 : m_aWinSize = GetOptimalSize(WINDOWSIZE_PREFERRED);
328 0 : m_aWinSize.Height() -= 4;
329 0 : m_aWinSize.Width() -= 4;
330 :
331 0 : m_aWinSize = PixelToLogic( m_aWinSize );
332 :
333 0 : SetBorderStyle( WINDOW_BORDER_MONO );
334 :
335 0 : m_aFrmSize = SvxPaperInfo::GetPaperSize(PAPER_A4);// DIN A4
336 0 : ::FitToActualSize(m_aCols, (sal_uInt16)m_aFrmSize.Width());
337 :
338 0 : long nHeight = m_aFrmSize.Height();
339 0 : Fraction aScale( m_aWinSize.Height(), nHeight );
340 0 : MapMode aMapMode( GetMapMode() );
341 0 : aMapMode.SetScaleX( aScale );
342 0 : aMapMode.SetScaleY( aScale );
343 0 : SetMapMode( aMapMode );
344 0 : }
345 :
346 0 : extern "C" SAL_DLLPUBLIC_EXPORT Window* SAL_CALL makeSwColumnOnlyExample(Window *pParent, VclBuilder::stringmap &)
347 : {
348 0 : return new SwColumnOnlyExample(pParent);
349 : }
350 :
351 0 : void SwColumnOnlyExample::Paint( const Rectangle& /*rRect*/ )
352 : {
353 0 : const StyleSettings& rStyleSettings = GetSettings().GetStyleSettings();
354 0 : const Color& rFieldColor = rStyleSettings.GetFieldColor();
355 0 : const Color& rDlgColor = rStyleSettings.GetDialogColor();
356 0 : const Color& rFieldTextColor = SwViewOption::GetFontColor();
357 0 : Color aGrayColor(COL_LIGHTGRAY);
358 0 : if(rFieldColor == aGrayColor)
359 0 : aGrayColor.Invert();
360 :
361 0 : Size aLogSize(PixelToLogic(GetOutputSizePixel()));
362 0 : Rectangle aCompleteRect(Point(0,0), aLogSize);
363 0 : SetLineColor(rDlgColor);
364 0 : SetFillColor(rDlgColor);
365 0 : DrawRect(aCompleteRect);
366 :
367 0 : SetLineColor( rFieldTextColor );
368 0 : Point aTL( (aLogSize.Width() - m_aFrmSize.Width()) / 2,
369 0 : (aLogSize.Height() - m_aFrmSize.Height()) / 2);
370 0 : Rectangle aRect(aTL, m_aFrmSize);
371 :
372 : //draw a shadow rectangle
373 0 : SetFillColor( Color(COL_GRAY) );
374 0 : Rectangle aShadowRect(aRect);
375 0 : aShadowRect.Move(aTL.Y(), aTL.Y());
376 0 : DrawRect(aShadowRect);
377 :
378 0 : SetFillColor( rFieldColor );
379 0 : DrawRect(aRect);
380 :
381 0 : SetFillColor( aGrayColor );
382 :
383 : //column seperator?
384 0 : long nLength = aLogSize.Height() - 2 * aTL.Y();
385 0 : Point aUp( aTL );
386 0 : Point aDown( aTL.X(), nLength );
387 0 : sal_Bool bLines = sal_False;
388 0 : if(m_aCols.GetLineAdj() != COLADJ_NONE)
389 : {
390 0 : bLines = sal_True;
391 :
392 0 : sal_uInt16 nPercent = m_aCols.GetLineHeight();
393 0 : if( nPercent != 100 )
394 : {
395 0 : nLength -= nLength * nPercent / 100;
396 0 : switch(m_aCols.GetLineAdj())
397 : {
398 0 : case COLADJ_BOTTOM: aUp.Y() += nLength; break;
399 0 : case COLADJ_TOP: aDown.Y() -= nLength; break;
400 : case COLADJ_CENTER:
401 0 : aUp.Y() += nLength / 2;
402 0 : aDown.Y() -= nLength / 2;
403 0 : break;
404 : default:; //prevent warning
405 : }
406 : }
407 :
408 : }
409 0 : const SwColumns& rCols = m_aCols.GetColumns();
410 0 : sal_uInt16 nColCount = rCols.size();
411 0 : if( nColCount )
412 : {
413 0 : DrawRect(aRect);
414 0 : SetFillColor( rFieldColor );
415 0 : Rectangle aFrmRect(aTL, m_aFrmSize);
416 0 : long nSum = aTL.X();
417 0 : for(sal_uInt16 i = 0; i < nColCount; i++)
418 : {
419 0 : const SwColumn* pCol = &rCols[i];
420 0 : aFrmRect.Left() = nSum + pCol->GetLeft();//nSum + pCol->GetLeft() + aTL.X();
421 0 : nSum += pCol->GetWishWidth();
422 0 : aFrmRect.Right() = nSum - pCol->GetRight();
423 0 : DrawRect(aFrmRect);
424 : }
425 0 : if(bLines )
426 : {
427 0 : nSum = aTL.X();
428 0 : for(sal_uInt16 i = 0; i < nColCount - 1; i++)
429 : {
430 0 : nSum += rCols[i].GetWishWidth();
431 0 : aUp.X() = nSum;
432 0 : aDown.X() = nSum;
433 0 : DrawLine(aUp, aDown);
434 : }
435 : }
436 : }
437 0 : }
438 :
439 0 : void SwColumnOnlyExample::SetColumns(const SwFmtCol& rCol)
440 : {
441 0 : m_aCols = rCol;
442 0 : sal_uInt16 nWishSum = m_aCols.GetWishWidth();
443 0 : long nFrmWidth = m_aFrmSize.Width();
444 0 : SwColumns& rCols = m_aCols.GetColumns();
445 0 : sal_uInt16 nColCount = rCols.size();
446 :
447 0 : for(sal_uInt16 i = 0; i < nColCount; i++)
448 : {
449 0 : SwColumn* pCol = &rCols[i];
450 0 : long nWish = pCol->GetWishWidth();
451 0 : nWish *= nFrmWidth;
452 0 : nWish /= nWishSum;
453 0 : pCol->SetWishWidth((sal_uInt16)nWish);
454 0 : long nLeft = pCol->GetLeft();
455 0 : nLeft *= nFrmWidth;
456 0 : nLeft /= nWishSum;
457 0 : pCol->SetLeft((sal_uInt16)nLeft);
458 0 : long nRight = pCol->GetRight();
459 0 : nRight *= nFrmWidth;
460 0 : nRight /= nWishSum;
461 0 : pCol->SetRight((sal_uInt16)nRight);
462 : }
463 : // #97495# make sure that the automatic column width's are always equal
464 0 : if(nColCount && m_aCols.IsOrtho())
465 : {
466 0 : sal_Int32 nColumnWidthSum = 0;
467 : sal_uInt16 i;
468 0 : for(i = 0; i < nColCount; ++i)
469 : {
470 0 : SwColumn* pCol = &rCols[i];
471 0 : nColumnWidthSum += pCol->GetWishWidth();
472 0 : nColumnWidthSum -= (pCol->GetRight() + pCol->GetLeft());
473 : }
474 0 : nColumnWidthSum /= nColCount;
475 0 : for(i = 0; i < nColCount; ++i)
476 : {
477 0 : SwColumn* pCol = &rCols[i];
478 0 : pCol->SetWishWidth( static_cast< sal_uInt16 >(nColumnWidthSum + pCol->GetRight() + pCol->GetLeft()));
479 : }
480 : }
481 0 : }
482 :
483 0 : Size SwColumnOnlyExample::GetOptimalSize(WindowSizeType eType) const
484 : {
485 0 : if (eType == WINDOWSIZE_PREFERRED)
486 0 : return LogicToPixel(Size(75, 46), MapMode(MAP_APPFONT));
487 0 : return Window::GetOptimalSize(eType);
488 : }
489 :
490 0 : SwPageGridExample::~SwPageGridExample()
491 : {
492 0 : delete pGridItem;
493 0 : }
494 :
495 0 : void SwPageGridExample::DrawPage( const Point& rOrg,
496 : const sal_Bool bSecond,
497 : const sal_Bool bEnabled )
498 : {
499 0 : SwPageExample::DrawPage(rOrg, bSecond, bEnabled);
500 0 : if(pGridItem && pGridItem->GetGridType())
501 : {
502 : //paint the grid now
503 0 : Color aLineColor = pGridItem->GetColor();
504 0 : if(aLineColor.GetColor() == COL_AUTO)
505 : {
506 0 : aLineColor = GetFillColor();
507 0 : aLineColor.Invert();
508 : }
509 0 : SetLineColor(aLineColor);
510 0 : long nL = GetLeft();
511 0 : long nR = GetRight();
512 :
513 0 : if ( GetUsage() == SVX_PAGE_MIRROR && !bSecond )
514 : {
515 : // rotate for mirrored
516 0 : nL = GetRight();
517 0 : nR = GetLeft();
518 : }
519 :
520 0 : Rectangle aRect;
521 0 : aRect.Right() = rOrg.X() + GetSize().Width() - nR;
522 0 : aRect.Left() = rOrg.X() + nL;
523 0 : aRect.Top() = rOrg.Y() + GetTop()
524 0 : + GetHdHeight() + GetHdDist();
525 0 : aRect.Bottom()= rOrg.Y() + GetSize().Height() - GetBottom()
526 0 : - GetFtHeight() - GetFtDist();
527 :
528 : //increase the values to get a 'viewable' preview
529 0 : sal_Int32 nBaseHeight = pGridItem->GetBaseHeight() * 3;
530 0 : sal_Int32 nRubyHeight = pGridItem->GetRubyHeight() * 3;
531 :
532 : //detect height of rectangles
533 : Rectangle aRubyRect(aRect.TopLeft(),
534 : m_bVertical ?
535 : Size(nRubyHeight, aRect.GetHeight()) :
536 0 : Size(aRect.GetWidth(), nRubyHeight));
537 : Rectangle aCharRect(aRect.TopLeft(),
538 : m_bVertical ?
539 : Size(nBaseHeight, aRect.GetHeight()) :
540 0 : Size(aRect.GetWidth(), nBaseHeight));
541 :
542 0 : sal_Int32 nLineHeight = nBaseHeight + nRubyHeight;
543 :
544 : //detect count of rectangles
545 0 : sal_Int32 nLines = (m_bVertical ? aRect.GetWidth(): aRect.GetHeight()) / nLineHeight;
546 0 : if(nLines > pGridItem->GetLines())
547 0 : nLines = pGridItem->GetLines();
548 :
549 : // determine start position
550 0 : if(m_bVertical)
551 : {
552 0 : sal_Int16 nXStart = static_cast< sal_Int16 >(aRect.GetWidth() / 2 - nLineHeight * nLines /2);
553 0 : aRubyRect.Move(nXStart, 0);
554 0 : aCharRect.Move(nXStart, 0);
555 : }
556 : else
557 : {
558 0 : sal_Int16 nYStart = static_cast< sal_Int16 >(aRect.GetHeight() / 2 - nLineHeight * nLines /2);
559 0 : aRubyRect.Move(0, nYStart);
560 0 : aCharRect.Move(0, nYStart);
561 : }
562 :
563 0 : if(pGridItem->IsRubyTextBelow())
564 0 : m_bVertical ? aRubyRect.Move(nBaseHeight, 0) : aRubyRect.Move(0, nBaseHeight);
565 : else
566 0 : m_bVertical ? aCharRect.Move(nRubyHeight, 0) : aCharRect.Move(0, nRubyHeight);
567 :
568 : //vertical lines
569 0 : sal_Bool bBothLines = pGridItem->GetGridType() == GRID_LINES_CHARS;
570 0 : SetFillColor( Color( COL_TRANSPARENT ) );
571 0 : sal_Int32 nXMove = m_bVertical ? nLineHeight : 0;
572 0 : sal_Int32 nYMove = m_bVertical ? 0 : nLineHeight;
573 0 : for(sal_Int32 nLine = 0; nLine < nLines; nLine++)
574 : {
575 0 : DrawRect(aRubyRect);
576 0 : DrawRect(aCharRect);
577 0 : if(bBothLines)
578 : {
579 0 : Point aStart = aCharRect.TopLeft();
580 0 : Point aEnd = m_bVertical ? aCharRect.TopRight() : aCharRect.BottomLeft();
581 0 : while(m_bVertical ? aStart.Y() < aRect.Bottom(): aStart.X() < aRect.Right())
582 : {
583 0 : DrawLine(aStart, aEnd);
584 0 : if(m_bVertical)
585 0 : aStart.Y() = aEnd.Y() += nBaseHeight;
586 : else
587 0 : aStart.X() = aEnd.X() += nBaseHeight;
588 : }
589 : }
590 0 : aRubyRect.Move(nXMove, nYMove);
591 0 : aCharRect.Move(nXMove, nYMove);
592 : }
593 : }
594 0 : }
595 :
596 0 : void SwPageGridExample::UpdateExample( const SfxItemSet& rSet )
597 : {
598 0 : DELETEZ(pGridItem);
599 : //get the grid information
600 0 : if(SFX_ITEM_AVAILABLE <= rSet.GetItemState(RES_TEXTGRID, sal_True))
601 0 : pGridItem = (SwTextGridItem*)((const SwTextGridItem&)rSet.Get(RES_TEXTGRID)).Clone();
602 0 : if( SFX_ITEM_AVAILABLE <= rSet.GetItemState( RES_FRAMEDIR, sal_True ))
603 : {
604 : const SvxFrameDirectionItem& rDirItem =
605 0 : (const SvxFrameDirectionItem&)rSet.Get(RES_FRAMEDIR);
606 0 : m_bVertical = rDirItem.GetValue() == FRMDIR_VERT_TOP_RIGHT||
607 0 : rDirItem.GetValue() == FRMDIR_VERT_TOP_LEFT;
608 : }
609 0 : SwPageExample::UpdateExample(rSet);
610 0 : }
611 :
612 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|