1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
*
* This file is part of OpenOffice.org.
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
*
* OpenOffice.org is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org. If not, see
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
*
************************************************************************/
#include <hintids.hxx>
#include <vcl/metric.hxx>
#include <vcl/window.hxx>
#include <vcl/svapp.hxx>
#include <paratr.hxx>
#include <txtfrm.hxx> // Format()
#include <charfmt.hxx>
#include <viewopt.hxx> // SwViewOption
#include <viewsh.hxx> // ViewShell
#include <pordrop.hxx>
#include <itrform2.hxx>
#include <txtpaint.hxx> // SwSaveClip
#include <blink.hxx> // pBlink
#include <breakit.hxx>
#include <com/sun/star/i18n/ScriptType.hdl>
#include <com/sun/star/i18n/WordType.hpp>
#include <editeng/langitem.hxx>
#include <charatr.hxx>
#include <editeng/fhgtitem.hxx>
#include <switerator.hxx>
using namespace ::com::sun::star::i18n;
using namespace ::com::sun::star;
/*************************************************************************
* lcl_IsDropFlyInter
*
* Calculates if a drop caps portion intersects with a fly
* The width and height of the drop caps portion are passed as arguments,
* the position is calculated from the values in rInf
*************************************************************************/
sal_Bool lcl_IsDropFlyInter( const SwTxtFormatInfo &rInf,
sal_uInt16 nWidth, sal_uInt16 nHeight )
{
const SwTxtFly *pTxtFly = rInf.GetTxtFly();
if( pTxtFly && pTxtFly->IsOn() )
{
SwRect aRect( rInf.GetTxtFrm()->Frm().Pos(), Size( nWidth, nHeight) );
aRect.Pos() += rInf.GetTxtFrm()->Prt().Pos();
aRect.Pos().X() += rInf.X();
aRect.Pos().Y() = rInf.Y();
aRect = pTxtFly->GetFrm( aRect );
return aRect.HasArea();
}
return sal_False;
}
/*************************************************************************
* class SwDropSave
*************************************************************************/
class SwDropSave
{
SwTxtPaintInfo* pInf;
xub_StrLen nIdx;
xub_StrLen nLen;
long nX;
long nY;
public:
SwDropSave( const SwTxtPaintInfo &rInf );
~SwDropSave();
};
SwDropSave::SwDropSave( const SwTxtPaintInfo &rInf ) :
pInf( ((SwTxtPaintInfo*)&rInf) ), nIdx( rInf.GetIdx() ),
nLen( rInf.GetLen() ), nX( rInf.X() ), nY( rInf.Y() )
{
}
SwDropSave::~SwDropSave()
{
pInf->SetIdx( nIdx );
pInf->SetLen( nLen );
pInf->X( nX );
pInf->Y( nY );
}
/*************************************************************************
* SwDropPortionPart DTor
*************************************************************************/
SwDropPortionPart::~SwDropPortionPart()
{
delete pFollow;
delete pFnt;
}
/*************************************************************************
* SwDropPortion CTor, DTor
*************************************************************************/
SwDropPortion::SwDropPortion( const MSHORT nLineCnt,
const KSHORT nDrpHeight,
const KSHORT nDrpDescent,
const KSHORT nDist )
: pPart( 0 ),
nLines( nLineCnt ),
nDropHeight(nDrpHeight),
nDropDescent(nDrpDescent),
nDistance(nDist),
nFix(0),
nX(0)
{
SetWhichPor( POR_DROP );
}
SwDropPortion::~SwDropPortion()
{
delete pPart;
if( pBlink )
pBlink->Delete( this );
}
sal_Bool SwTxtSizeInfo::_HasHint( const SwTxtNode* pTxtNode, xub_StrLen nPos )
{
return 0 != pTxtNode->GetTxtAttrForCharAt(nPos);
}
/*************************************************************************
* SwTxtNode::GetDropLen()
*
* nWishLen = 0 indicates that we want a whole word
*************************************************************************/
MSHORT SwTxtNode::GetDropLen( MSHORT nWishLen ) const
{
xub_StrLen nEnd = GetTxt().Len();
if( nWishLen && nWishLen < nEnd )
nEnd = nWishLen;
if ( ! nWishLen && pBreakIt->GetBreakIter().is() )
{
// find first word
const SwAttrSet& rAttrSet = GetSwAttrSet();
const sal_uInt16 nTxtScript = pBreakIt->GetRealScriptOfText( GetTxt(), 0 );
LanguageType eLanguage;
switch ( nTxtScript )
{
case i18n::ScriptType::ASIAN :
eLanguage = rAttrSet.GetCJKLanguage().GetLanguage();
break;
case i18n::ScriptType::COMPLEX :
eLanguage = rAttrSet.GetCTLLanguage().GetLanguage();
break;
default :
eLanguage = rAttrSet.GetLanguage().GetLanguage();
break;
}
Boundary aBound =
pBreakIt->GetBreakIter()->getWordBoundary( GetTxt(), 0,
pBreakIt->GetLocale( eLanguage ), WordType::DICTIONARY_WORD, sal_True );
nEnd = (xub_StrLen)aBound.endPos;
}
xub_StrLen i = 0;
for( ; i < nEnd; ++i )
{
xub_Unicode cChar = GetTxt().GetChar( i );
if( CH_TAB == cChar || CH_BREAK == cChar ||
(( CH_TXTATR_BREAKWORD == cChar || CH_TXTATR_INWORD == cChar )
&& SwTxtSizeInfo::_HasHint( this, i ) ) )
break;
}
return i;
}
/*************************************************************************
* SwTxtNode::GetDropSize()
*
* If a dropcap is found the return value is true otherwise false. The
* drop cap sizes passed back by reference are font height, drop height
* and drop descent.
*************************************************************************/
bool SwTxtNode::GetDropSize(int& rFontHeight, int& rDropHeight, int& rDropDescent) const
{
rFontHeight = 0;
rDropHeight = 0;
rDropDescent =0;
const SwAttrSet& rSet = GetSwAttrSet();
const SwFmtDrop& rDrop = rSet.GetDrop();
// Return (0,0) if there is no drop cap at this paragraph
if( 1 >= rDrop.GetLines() ||
( !rDrop.GetChars() && !rDrop.GetWholeWord() ) )
{
return false;
}
// get text frame
SwIterator<SwTxtFrm,SwTxtNode> aIter( *this );
for( SwTxtFrm* pLastFrm = aIter.First(); pLastFrm; pLastFrm = aIter.Next() )
{
// Only (master-) text frames can have a drop cap.
if ( !pLastFrm->IsFollow() )
{
if( !pLastFrm->HasPara() )
pLastFrm->GetFormatted();
if ( !pLastFrm->IsEmpty() )
{
const SwParaPortion* pPara = pLastFrm->GetPara();
OSL_ENSURE( pPara, "GetDropSize could not find the ParaPortion, I'll guess the drop cap size" );
if ( pPara )
{
const SwLinePortion* pFirstPor = pPara->GetFirstPortion();
if (pFirstPor && pFirstPor->IsDropPortion())
{
const SwDropPortion* pDrop = (const SwDropPortion*)pFirstPor;
rDropHeight = pDrop->GetDropHeight();
rDropDescent = pDrop->GetDropDescent();
if (const SwFont *pFont = pDrop->GetFnt())
rFontHeight = pFont->GetSize(pFont->GetActual()).Height();
else
{
const SvxFontHeightItem& rItem = (SvxFontHeightItem&)rSet.Get(RES_CHRATR_FONTSIZE);
rFontHeight = rItem.GetHeight();
}
}
}
}
break;
}
}
if (rFontHeight==0 && rDropHeight==0 && rDropDescent==0)
{
const sal_uInt16 nLines = rDrop.GetLines();
const SvxFontHeightItem& rItem = (SvxFontHeightItem&)rSet.Get( RES_CHRATR_FONTSIZE );
rFontHeight = rItem.GetHeight();
rDropHeight = nLines * rFontHeight;
rDropDescent = rFontHeight / 5;
return false;
}
return true;
}
/*************************************************************************
* SwDropPortion::PaintTxt()
*************************************************************************/
// Die Breite manipulieren, sonst werden die Buchstaben gestretcht
void SwDropPortion::PaintTxt( const SwTxtPaintInfo &rInf ) const
{
if ( rInf.OnWin() &&
!rInf.GetOpt().IsPagePreview() && !rInf.GetOpt().IsReadonly() && SwViewOption::IsFieldShadings() )
rInf.DrawBackground( *this );
OSL_ENSURE( nDropHeight && pPart && nLines != 1, "Drop Portion painted twice" );
const SwDropPortionPart* pCurrPart = GetPart();
const xub_StrLen nOldLen = GetLen();
const SwTwips nBasePosY = rInf.Y();
((SwTxtPaintInfo&)rInf).Y( nBasePosY + nY );
SwDropSave aSave( rInf );
// for text inside drop portions we let vcl handle the text directions
SwLayoutModeModifier aLayoutModeModifier( *rInf.GetOut() );
aLayoutModeModifier.SetAuto();
while ( pCurrPart )
{
((SwDropPortion*)this)->SetLen( pCurrPart->GetLen() );
((SwTxtPaintInfo&)rInf).SetLen( pCurrPart->GetLen() );
SwFontSave aFontSave( rInf, &pCurrPart->GetFont() );
SwTxtPortion::Paint( rInf );
((SwTxtPaintInfo&)rInf).SetIdx( rInf.GetIdx() + pCurrPart->GetLen() );
((SwTxtPaintInfo&)rInf).X( rInf.X() + pCurrPart->GetWidth() );
pCurrPart = pCurrPart->GetFollow();
}
((SwTxtPaintInfo&)rInf).Y( nBasePosY );
((SwDropPortion*)this)->SetLen( nOldLen );
}
/*************************************************************************
* SwDropPortion::Paint()
*************************************************************************/
void SwDropPortion::PaintDrop( const SwTxtPaintInfo &rInf ) const
{
// ganz normale Ausgabe wird w?hrend des normalen Paints erledigt
if( ! nDropHeight || ! pPart || nLines == 1 )
return;
// Luegenwerte einstellen!
const KSHORT nOldHeight = Height();
const KSHORT nOldWidth = Width();
const KSHORT nOldAscent = GetAscent();
const SwTwips nOldPosY = rInf.Y();
const KSHORT nOldPosX = (KSHORT)rInf.X();
const SwParaPortion *pPara = rInf.GetParaPortion();
const Point aOutPos( nOldPosX + nX, nOldPosY - pPara->GetAscent()
- pPara->GetRealHeight() + pPara->Height() );
// Retusche nachholen.
// Set baseline
((SwTxtPaintInfo&)rInf).Y( aOutPos.Y() + nDropHeight );
// for background
((SwDropPortion*)this)->Height( nDropHeight + nDropDescent );
((SwDropPortion*)this)->Width( Width() - nX );
((SwDropPortion*)this)->SetAscent( nDropHeight );
// Clipregion auf uns einstellen!
// Und zwar immer, und nie mit dem bestehenden ClipRect
// verrechnen, weil dies auf die Zeile eingestellt sein koennte.
SwRect aClipRect;
if ( rInf.OnWin() )
{
aClipRect = SwRect( aOutPos, SvLSize() );
aClipRect.Intersection( rInf.GetPaintRect() );
}
SwSaveClip aClip( (OutputDevice*)rInf.GetOut() );
aClip.ChgClip( aClipRect, rInf.GetTxtFrm() );
// Das machen, was man sonst nur macht ...
PaintTxt( rInf );
// Alte Werte sichern
((SwDropPortion*)this)->Height( nOldHeight );
((SwDropPortion*)this)->Width( nOldWidth );
((SwDropPortion*)this)->SetAscent( nOldAscent );
((SwTxtPaintInfo&)rInf).Y( nOldPosY );
}
/*************************************************************************
* virtual SwDropPortion::Paint()
*************************************************************************/
void SwDropPortion::Paint( const SwTxtPaintInfo &rInf ) const
{
// ganz normale Ausgabe wird hier erledigt.
if( ! nDropHeight || ! pPart || 1 == nLines )
{
if ( rInf.OnWin() &&
!rInf.GetOpt().IsPagePreview() && !rInf.GetOpt().IsReadonly() && SwViewOption::IsFieldShadings() )
rInf.DrawBackground( *this );
// make sure that font is not rotated
SwFont* pTmpFont = 0;
if ( rInf.GetFont()->GetOrientation( rInf.GetTxtFrm()->IsVertical() ) )
{
pTmpFont = new SwFont( *rInf.GetFont() );
pTmpFont->SetVertical( 0, rInf.GetTxtFrm()->IsVertical() );
}
SwFontSave aFontSave( rInf, pTmpFont );
// for text inside drop portions we let vcl handle the text directions
SwLayoutModeModifier aLayoutModeModifier( *rInf.GetOut() );
aLayoutModeModifier.SetAuto();
SwTxtPortion::Paint( rInf );
delete pTmpFont;
}
}
/*************************************************************************
* virtual Format()
*************************************************************************/
sal_Bool SwDropPortion::FormatTxt( SwTxtFormatInfo &rInf )
{
const xub_StrLen nOldLen = GetLen();
const xub_StrLen nOldInfLen = rInf.GetLen();
const sal_Bool bFull = SwTxtPortion::Format( rInf );
if( bFull )
{
// sieht zwar Scheisse aus, aber was soll man schon machen?
rInf.SetUnderFlow( 0 );
Truncate();
SetLen( nOldLen );
rInf.SetLen( nOldInfLen );
}
return bFull;
}
/*************************************************************************
* virtual GetTxtSize()
*************************************************************************/
SwPosSize SwDropPortion::GetTxtSize( const SwTxtSizeInfo &rInf ) const
{
sal_uInt16 nMyX = 0;
xub_StrLen nIdx = 0;
const SwDropPortionPart* pCurrPart = GetPart();
// skip parts
while ( pCurrPart && nIdx + pCurrPart->GetLen() < rInf.GetLen() )
{
nMyX = nMyX + pCurrPart->GetWidth();
nIdx = nIdx + pCurrPart->GetLen();
pCurrPart = pCurrPart->GetFollow();
}
xub_StrLen nOldIdx = rInf.GetIdx();
xub_StrLen nOldLen = rInf.GetLen();
((SwTxtSizeInfo&)rInf).SetIdx( nIdx );
((SwTxtSizeInfo&)rInf).SetLen( rInf.GetLen() - nIdx );
// robust
SwFontSave aFontSave( rInf, pCurrPart ? &pCurrPart->GetFont() : 0 );
SwPosSize aPosSize( SwTxtPortion::GetTxtSize( rInf ) );
aPosSize.Width( aPosSize.Width() + nMyX );
((SwTxtSizeInfo&)rInf).SetIdx( nOldIdx );
((SwTxtSizeInfo&)rInf).SetLen( nOldLen );
return aPosSize;
}
/*************************************************************************
* virtual GetCrsrOfst()
*************************************************************************/
xub_StrLen SwDropPortion::GetCrsrOfst( const KSHORT ) const
{
return 0;
}
/*************************************************************************
* SwTxtFormatter::CalcDropHeight()
*************************************************************************/
void SwTxtFormatter::CalcDropHeight( const MSHORT nLines )
{
const SwLinePortion *const pOldCurr = GetCurr();
KSHORT nDropHght = 0;
KSHORT nAscent = 0;
KSHORT nHeight = 0;
KSHORT nDropLns = 0;
sal_Bool bRegisterOld = IsRegisterOn();
bRegisterOn = sal_False;
Top();
while( GetCurr()->IsDummy() )
{
if ( !Next() )
break;
}
// Wenn wir nur eine Zeile haben returnen wir 0
if( GetNext() || GetDropLines() == 1 )
{
for( ; nDropLns < nLines; nDropLns++ )
{
if ( GetCurr()->IsDummy() )
break;
else
{
CalcAscentAndHeight( nAscent, nHeight );
nDropHght = nDropHght + nHeight;
bRegisterOn = bRegisterOld;
}
if ( !Next() )
{
nDropLns++; // Fix: 11356
break;
}
}
// In der letzten Zeile plumpsen wir auf den Zeilenascent!
nDropHght = nDropHght - nHeight;
nDropHght = nDropHght + nAscent;
Top();
}
bRegisterOn = bRegisterOld;
SetDropDescent( nHeight - nAscent );
SetDropHeight( nDropHght );
SetDropLines( nDropLns );
// Alte Stelle wiederfinden!
while( pOldCurr != GetCurr() )
{
if( !Next() )
{
OSL_ENSURE( !this, "SwTxtFormatter::_CalcDropHeight: left Toulouse" );
break;
}
}
}
/*************************************************************************
* SwTxtFormatter::GuessDropHeight()
*
* Wir schaetzen mal, dass die Fonthoehe sich nicht aendert und dass
* erst mindestens soviele Zeilen gibt, wie die DropCap-Einstellung angibt.
*
*************************************************************************/
void SwTxtFormatter::GuessDropHeight( const MSHORT nLines )
{
OSL_ENSURE( nLines, "GuessDropHeight: Give me more Lines!" );
KSHORT nAscent = 0;
KSHORT nHeight = 0;
SetDropLines( nLines );
if ( GetDropLines() > 1 )
{
CalcRealHeight();
CalcAscentAndHeight( nAscent, nHeight );
}
SetDropDescent( nHeight - nAscent );
SetDropHeight( nHeight * nLines - GetDropDescent() );
}
/*************************************************************************
* SwTxtFormatter::NewDropPortion
*************************************************************************/
SwDropPortion *SwTxtFormatter::NewDropPortion( SwTxtFormatInfo &rInf )
{
if( !pDropFmt )
return 0;
xub_StrLen nPorLen = pDropFmt->GetWholeWord() ? 0 : pDropFmt->GetChars();
nPorLen = pFrm->GetTxtNode()->GetDropLen( nPorLen );
if( !nPorLen )
{
((SwTxtFormatter*)this)->ClearDropFmt();
return 0;
}
SwDropPortion *pDropPor = 0;
// erste oder zweite Runde?
if ( !( GetDropHeight() || IsOnceMore() ) )
{
if ( GetNext() )
CalcDropHeight( pDropFmt->GetLines() );
else
GuessDropHeight( pDropFmt->GetLines() );
}
// the DropPortion
if( GetDropHeight() )
pDropPor = new SwDropPortion( GetDropLines(), GetDropHeight(),
GetDropDescent(), pDropFmt->GetDistance() );
else
pDropPor = new SwDropPortion( 0,0,0,pDropFmt->GetDistance() );
pDropPor->SetLen( nPorLen );
// If it was not possible to create a proper drop cap portion
// due to avoiding endless loops. We return a drop cap portion
// with an empty SwDropCapPart. For these portions the current
// font is used.
if ( GetDropLines() < 2 )
{
((SwTxtFormatter*)this)->SetPaintDrop( sal_True );
return pDropPor;
}
// build DropPortionParts:
OSL_ENSURE( ! rInf.GetIdx(), "Drop Portion not at 0 position!" );
xub_StrLen nNextChg = 0;
const SwCharFmt* pFmt = pDropFmt->GetCharFmt();
SwDropPortionPart* pCurrPart = 0;
while ( nNextChg < nPorLen )
{
// check for attribute changes and if the portion has to split:
Seek( nNextChg );
// the font is deleted in the destructor of the drop portion part
SwFont* pTmpFnt = new SwFont( *rInf.GetFont() );
if ( pFmt )
{
const SwAttrSet& rSet = pFmt->GetAttrSet();
pTmpFnt->SetDiffFnt( &rSet, pFrm->GetTxtNode()->getIDocumentSettingAccess() );
}
// we do not allow a vertical font for the drop portion
pTmpFnt->SetVertical( 0, rInf.GetTxtFrm()->IsVertical() );
// find next attribute change / script change
const xub_StrLen nTmpIdx = nNextChg;
xub_StrLen nNextAttr = Min( GetNextAttr(), rInf.GetTxt().Len() );
nNextChg = pScriptInfo->NextScriptChg( nTmpIdx );
if( nNextChg > nNextAttr )
nNextChg = nNextAttr;
if ( nNextChg > nPorLen )
nNextChg = nPorLen;
SwDropPortionPart* pPart =
new SwDropPortionPart( *pTmpFnt, nNextChg - nTmpIdx );
if ( ! pCurrPart )
pDropPor->SetPart( pPart );
else
pCurrPart->SetFollow( pPart );
pCurrPart = pPart;
}
((SwTxtFormatter*)this)->SetPaintDrop( sal_True );
return pDropPor;
}
/*************************************************************************
* SwTxtPainter::PaintDropPortion()
*************************************************************************/
void SwTxtPainter::PaintDropPortion()
{
const SwDropPortion *pDrop = GetInfo().GetParaPortion()->FindDropPortion();
OSL_ENSURE( pDrop, "DrapCop-Portion not available." );
if( !pDrop )
return;
const SwTwips nOldY = GetInfo().Y();
Top();
GetInfo().SetpSpaceAdd( pCurr->GetpLLSpaceAdd() );
GetInfo().ResetSpaceIdx();
GetInfo().SetKanaComp( pCurr->GetpKanaComp() );
GetInfo().ResetKanaIdx();
// 8047: Drops und Dummies
while( !pCurr->GetLen() && Next() )
;
// MarginPortion und Adjustment!
const SwLinePortion *pPor = pCurr->GetFirstPortion();
KSHORT nX = 0;
while( pPor && !pPor->IsDropPortion() )
{
nX = nX + pPor->Width();
pPor = pPor->GetPortion();
}
Point aLineOrigin( GetTopLeft() );
aLineOrigin.X() += nX;
KSHORT nTmpAscent, nTmpHeight;
CalcAscentAndHeight( nTmpAscent, nTmpHeight );
aLineOrigin.Y() += nTmpAscent;
GetInfo().SetIdx( GetStart() );
GetInfo().SetPos( aLineOrigin );
GetInfo().SetLen( pDrop->GetLen() );
pDrop->PaintDrop( GetInfo() );
GetInfo().Y( nOldY );
}
/*************************************************************************
* clas SwDropCapCache
*
* Da die Berechnung der Fontgroesse der Initialen ein teures Geschaeft ist,
* wird dies durch einen DropCapCache geschleust.
*************************************************************************/
#define DROP_CACHE_SIZE 10
class SwDropCapCache
{
long aMagicNo[ DROP_CACHE_SIZE ];
XubString aTxt[ DROP_CACHE_SIZE ];
sal_uInt16 aFactor[ DROP_CACHE_SIZE ];
KSHORT aWishedHeight[ DROP_CACHE_SIZE ];
short aDescent[ DROP_CACHE_SIZE ];
MSHORT nIndex;
public:
SwDropCapCache();
~SwDropCapCache(){}
void CalcFontSize( SwDropPortion* pDrop, SwTxtFormatInfo &rInf );
};
/*************************************************************************
* SwDropCapCache Ctor / Dtor
*************************************************************************/
SwDropCapCache::SwDropCapCache() : nIndex( 0 )
{
memset( &aMagicNo, 0, sizeof(aMagicNo) );
memset( &aWishedHeight, 0, sizeof(aWishedHeight) );
}
void SwDropPortion::DeleteDropCapCache()
{
delete pDropCapCache;
}
/*************************************************************************
* SwDropCapCache::CalcFontSize
*************************************************************************/
void SwDropCapCache::CalcFontSize( SwDropPortion* pDrop, SwTxtFormatInfo &rInf )
{
const void* pFntNo = 0;
MSHORT nTmpIdx = 0;
OSL_ENSURE( pDrop->GetPart(),"DropPortion without part during font calculation");
SwDropPortionPart* pCurrPart = pDrop->GetPart();
const sal_Bool bUseCache = ! pCurrPart->GetFollow();
xub_StrLen nIdx = rInf.GetIdx();
XubString aStr( rInf.GetTxt(), nIdx, pCurrPart->GetLen() );
long nAscent = 0;
long nDescent = 0;
long nFactor = -1;
if ( bUseCache )
{
SwFont& rFnt = pCurrPart->GetFont();
rFnt.ChkMagic( rInf.GetVsh(), rFnt.GetActual() );
rFnt.GetMagic( pFntNo, nTmpIdx, rFnt.GetActual() );
nTmpIdx = 0;
while( nTmpIdx < DROP_CACHE_SIZE &&
( aTxt[ nTmpIdx ] != aStr || aMagicNo[ nTmpIdx ] != long(pFntNo) ||
aWishedHeight[ nTmpIdx ] != pDrop->GetDropHeight() ) )
++nTmpIdx;
}
// we have to calculate a new font scaling factor if
// 1. we did not find a scaling factor in the cache or
// 2. we are not allowed to use the cache because the drop portion
// consists of more than one part
if( nTmpIdx >= DROP_CACHE_SIZE || ! bUseCache )
{
++nIndex;
nIndex %= DROP_CACHE_SIZE;
nTmpIdx = nIndex;
long nWishedHeight = pDrop->GetDropHeight();
// find out biggest font size for initial scaling factor
long nMaxFontHeight = 0;
while ( pCurrPart )
{
const SwFont& rFnt = pCurrPart->GetFont();
const long nCurrHeight = rFnt.GetHeight( rFnt.GetActual() );
if ( nCurrHeight > nMaxFontHeight )
nMaxFontHeight = nCurrHeight;
pCurrPart = pCurrPart->GetFollow();
}
nFactor = ( 1000 * nWishedHeight ) / nMaxFontHeight;
if ( bUseCache )
{
// save keys for cache
aMagicNo[ nTmpIdx ] = long(pFntNo);
aTxt[ nTmpIdx ] = aStr;
aWishedHeight[ nTmpIdx ] = KSHORT(nWishedHeight);
// save initial scaling factor
aFactor[ nTmpIdx ] = (sal_uInt16)nFactor;
}
sal_Bool bGrow = ( pDrop->GetLen() != 0 );
// for growing controll
long nMax = KSHRT_MAX;
long nMin = nFactor / 2;
#if OSL_DEBUG_LEVEL > 1
long nGrow = 0;
#endif
sal_Bool bWinUsed = sal_False;
Font aOldFnt;
MapMode aOldMap( MAP_TWIP );
OutputDevice* pOut = rInf.GetOut();
OutputDevice* pWin;
if( rInf.GetVsh() && rInf.GetVsh()->GetWin() )
pWin = rInf.GetVsh()->GetWin();
else
pWin = GetpApp()->GetDefaultDevice();
while( bGrow )
{
// reset pCurrPart to first part
pCurrPart = pDrop->GetPart();
sal_Bool bFirstGlyphRect = sal_True;
sal_Bool bHaveGlyphRect = sal_False;
Rectangle aCommonRect, aRect;
while ( pCurrPart )
{
// current font
SwFont& rFnt = pCurrPart->GetFont();
// Get height including proportion
const sal_uInt16 nCurrHeight =
(sal_uInt16)rFnt.GetHeight( rFnt.GetActual() );
// Get without proportion
const sal_uInt8 nOldProp = rFnt.GetPropr();
rFnt.SetProportion( 100 );
Size aOldSize = Size( 0, rFnt.GetHeight( rFnt.GetActual() ) );
Size aNewSize( 0, ( nFactor * nCurrHeight ) / 1000 );
rFnt.SetSize( aNewSize, rFnt.GetActual() );
rFnt.ChgPhysFnt( rInf.GetVsh(), *pOut );
nAscent = rFnt.GetAscent( rInf.GetVsh(), *pOut );
// Wir besorgen uns das alle Buchstaben umfassende Rechteck:
bHaveGlyphRect = pOut->GetTextBoundRect( aRect, rInf.GetTxt(), 0,
nIdx, pCurrPart->GetLen() ) &&
! aRect.IsEmpty();
if ( ! bHaveGlyphRect )
{
// getting glyph boundaries failed for some reason,
// we take the window for calculating sizes
if ( pWin )
{
if ( ! bWinUsed )
{
bWinUsed = sal_True;
aOldMap = pWin->GetMapMode( );
pWin->SetMapMode( MapMode( MAP_TWIP ) );
aOldFnt = pWin->GetFont();
}
pWin->SetFont( rFnt.GetActualFont() );
bHaveGlyphRect = pWin->GetTextBoundRect( aRect, rInf.GetTxt(), 0,
nIdx, pCurrPart->GetLen() ) &&
! aRect.IsEmpty();
}
if ( bHaveGlyphRect )
{
FontMetric aWinMet( pWin->GetFontMetric() );
nAscent = (KSHORT) aWinMet.GetAscent();
}
else
// We do not have a window or our window could not
// give us glyph boundaries.
aRect = Rectangle( Point( 0, 0 ), Size( 0, nAscent ) );
}
// Now we (hopefully) have a bounding rectangle for the
// glyphs of the current portion and the ascent of the current
// font
// reset font size and proportion
rFnt.SetSize( aOldSize, rFnt.GetActual() );
rFnt.SetProportion( nOldProp );
if ( bFirstGlyphRect )
{
aCommonRect = aRect;
bFirstGlyphRect = sal_False;
}
else
aCommonRect.Union( aRect );
nIdx = nIdx + pCurrPart->GetLen();
pCurrPart = pCurrPart->GetFollow();
}
// now we have a union ( aCommonRect ) of all glyphs with
// respect to a common baseline : 0
// get descent and ascent from union
if ( rInf.GetTxtFrm()->IsVertical() )
{
nDescent = aCommonRect.Left();
nAscent = aCommonRect.Right();
if ( nDescent < 0 )
nDescent = -nDescent;
}
else
{
nDescent = aCommonRect.Bottom();
nAscent = aCommonRect.Top();
}
if ( nAscent < 0 )
nAscent = -nAscent;
const long nHght = nAscent + nDescent;
if ( nHght )
{
if ( nHght > nWishedHeight )
nMax = nFactor;
else
{
if ( bUseCache )
aFactor[ nTmpIdx ] = (sal_uInt16)nFactor;
nMin = nFactor;
}
nFactor = ( nFactor * nWishedHeight ) / nHght;
bGrow = ( nFactor > nMin ) && ( nFactor < nMax );
#if OSL_DEBUG_LEVEL > 1
if ( bGrow )
nGrow++;
#endif
nIdx = rInf.GetIdx();
}
else
bGrow = sal_False;
}
if ( bWinUsed )
{
// reset window if it has been used
pWin->SetMapMode( aOldMap );
pWin->SetFont( aOldFnt );
}
if ( bUseCache )
aDescent[ nTmpIdx ] = -short( nDescent );
}
pCurrPart = pDrop->GetPart();
// did made any new calculations or did we use the cache?
if ( -1 == nFactor )
{
nFactor = aFactor[ nTmpIdx ];
nDescent = aDescent[ nTmpIdx ];
}
else
nDescent = -nDescent;
while ( pCurrPart )
{
// scale current font
SwFont& rFnt = pCurrPart->GetFont();
Size aNewSize( 0, ( nFactor * rFnt.GetHeight( rFnt.GetActual() ) ) / 1000 );
const sal_uInt8 nOldProp = rFnt.GetPropr();
rFnt.SetProportion( 100 );
rFnt.SetSize( aNewSize, rFnt.GetActual() );
rFnt.SetProportion( nOldProp );
pCurrPart = pCurrPart->GetFollow();
}
pDrop->SetY( (short)nDescent );
}
/*************************************************************************
* virtual Format()
*************************************************************************/
sal_Bool SwDropPortion::Format( SwTxtFormatInfo &rInf )
{
sal_Bool bFull = sal_False;
Fix( (sal_uInt16)rInf.X() );
SwLayoutModeModifier aLayoutModeModifier( *rInf.GetOut() );
aLayoutModeModifier.SetAuto();
if( nDropHeight && pPart && nLines!=1 )
{
if( !pDropCapCache )
pDropCapCache = new SwDropCapCache();
// adjust font sizes to fit into the rectangle
pDropCapCache->CalcFontSize( this, rInf );
const long nOldX = rInf.X();
{
SwDropSave aSave( rInf );
SwDropPortionPart* pCurrPart = pPart;
while ( pCurrPart )
{
rInf.SetLen( pCurrPart->GetLen() );
SwFont& rFnt = pCurrPart->GetFont();
{
SwFontSave aFontSave( rInf, &rFnt );
bFull = FormatTxt( rInf );
if ( bFull )
break;
}
const SwTwips nTmpWidth =
( InSpaceGrp() && rInf.GetSpaceAdd() ) ?
Width() + CalcSpacing( rInf.GetSpaceAdd(), rInf ) :
Width();
// set values
pCurrPart->SetWidth( (sal_uInt16)nTmpWidth );
// Move
rInf.SetIdx( rInf.GetIdx() + pCurrPart->GetLen() );
rInf.X( rInf.X() + nTmpWidth );
pCurrPart = pCurrPart->GetFollow();
}
Width( (sal_uInt16)(rInf.X() - nOldX) );
}
// reset my length
SetLen( rInf.GetLen() );
// 7631, 7633: bei Ueberlappungen mit Flys ist Schluss.
if( ! bFull )
bFull = lcl_IsDropFlyInter( rInf, Width(), nDropHeight );
if( bFull )
{
// Durch FormatTxt kann nHeight auf 0 gesetzt worden sein
if ( !Height() )
Height( rInf.GetTxtHeight() );
// Jetzt noch einmal der ganze Spass
nDropHeight = nLines = 0;
delete pPart;
pPart = NULL;
// meanwhile use normal formatting
bFull = SwTxtPortion::Format( rInf );
}
else
rInf.SetDropInit( sal_True );
Height( rInf.GetTxtHeight() );
SetAscent( rInf.GetAscent() );
}
else
bFull = SwTxtPortion::Format( rInf );
if( bFull )
nDistance = 0;
else
{
const KSHORT nWant = Width() + GetDistance();
const KSHORT nRest = (sal_uInt16)(rInf.Width() - rInf.X());
if( ( nWant > nRest ) ||
lcl_IsDropFlyInter( rInf, Width() + GetDistance(), nDropHeight ) )
nDistance = 0;
Width( Width() + nDistance );
}
return bFull;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|