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 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#include <com/sun/star/text/ReferenceFieldPart.hpp>
#include <com/sun/star/text/ReferenceFieldSource.hpp>
#include <unotools/localedatawrapper.hxx>
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
#include <comphelper/processfactory.hxx>
#include <comphelper/string.hxx>
#include <editeng/unolingu.hxx>
#include <doc.hxx>
#include <pam.hxx>
#include <cntfrm.hxx>
#include <pagefrm.hxx>
#include <docary.hxx>
#include <fmtfld.hxx>
#include <txtfld.hxx>
#include <txtftn.hxx>
#include <fmtrfmrk.hxx>
#include <txtrfmrk.hxx>
#include <fmtftn.hxx>
#include <ndtxt.hxx>
#include <chpfld.hxx>
#include <reffld.hxx>
#include <expfld.hxx>
#include <txtfrm.hxx>
#include <flyfrm.hxx>
#include <pagedesc.hxx>
#include <IMark.hxx>
#include <crossrefbookmark.hxx>
#include <ftnidx.hxx>
#include <viewsh.hxx>
#include <unofldmid.h>
#include <SwStyleNameMapper.hxx>
#include <shellres.hxx>
#include <poolfmt.hxx>
#include <poolfmt.hrc>
#include <comcore.hrc>
#include <numrule.hxx>
#include <SwNodeNum.hxx>
#include <switerator.hxx>
#include <set>
#include <map>
#include <algorithm>
#include <sfx2/childwin.hxx>
using namespace ::com::sun::star;
using namespace ::com::sun::star::text;
using namespace ::com::sun::star::lang;
static void lcl_GetLayTree( const SwFrm* pFrm, std::vector<const SwFrm*>& rArr )
{
while( pFrm )
{
if( pFrm->IsBodyFrm() ) // unspectacular
pFrm = pFrm->GetUpper();
else
{
rArr.push_back( pFrm );
// this is the last page
if( pFrm->IsPageFrm() )
break;
if( pFrm->IsFlyFrm() )
pFrm = ((SwFlyFrm*)pFrm)->GetAnchorFrm();
else
pFrm = pFrm->GetUpper();
}
}
}
bool IsFrameBehind( const SwTxtNode& rMyNd, sal_Int32 nMySttPos,
const SwTxtNode& rBehindNd, sal_Int32 nSttPos )
{
const SwTxtFrm *pMyFrm = (SwTxtFrm*)rMyNd.getLayoutFrm( rMyNd.GetDoc()->GetCurrentLayout(), 0, 0, false),
*pFrm = (SwTxtFrm*)rBehindNd.getLayoutFrm( rBehindNd.GetDoc()->GetCurrentLayout(), 0, 0, false);
while( pFrm && !pFrm->IsInside( nSttPos ) )
pFrm = (SwTxtFrm*)pFrm->GetFollow();
while( pMyFrm && !pMyFrm->IsInside( nMySttPos ) )
pMyFrm = (SwTxtFrm*)pMyFrm->GetFollow();
if( !pFrm || !pMyFrm || pFrm == pMyFrm )
return false;
std::vector<const SwFrm*> aRefArr, aArr;
::lcl_GetLayTree( pFrm, aRefArr );
::lcl_GetLayTree( pMyFrm, aArr );
size_t nRefCnt = aRefArr.size() - 1, nCnt = aArr.size() - 1;
bool bVert = false;
bool bR2L = false;
// Loop as long as a frame does not equal?
while( nRefCnt && nCnt && aRefArr[ nRefCnt ] == aArr[ nCnt ] )
{
const SwFrm* pTmpFrm = aArr[ nCnt ];
bVert = pTmpFrm->IsVertical();
bR2L = pTmpFrm->IsRightToLeft();
--nCnt, --nRefCnt;
}
// If a counter overflows?
if( aRefArr[ nRefCnt ] == aArr[ nCnt ] )
{
if( nCnt )
--nCnt;
else
--nRefCnt;
}
const SwFrm* pRefFrm = aRefArr[ nRefCnt ];
const SwFrm* pFldFrm = aArr[ nCnt ];
// different frames, check their Y-/X-position
bool bRefIsLower = false;
if( ( FRM_COLUMN | FRM_CELL ) & pFldFrm->GetType() ||
( FRM_COLUMN | FRM_CELL ) & pRefFrm->GetType() )
{
if( pFldFrm->GetType() == pRefFrm->GetType() )
{
// here, the X-pos is more important
if( bVert )
{
if( bR2L )
bRefIsLower = pRefFrm->Frm().Top() < pFldFrm->Frm().Top() ||
( pRefFrm->Frm().Top() == pFldFrm->Frm().Top() &&
pRefFrm->Frm().Left() < pFldFrm->Frm().Left() );
else
bRefIsLower = pRefFrm->Frm().Top() < pFldFrm->Frm().Top() ||
( pRefFrm->Frm().Top() == pFldFrm->Frm().Top() &&
pRefFrm->Frm().Left() > pFldFrm->Frm().Left() );
}
else if( bR2L )
bRefIsLower = pRefFrm->Frm().Left() > pFldFrm->Frm().Left() ||
( pRefFrm->Frm().Left() == pFldFrm->Frm().Left() &&
pRefFrm->Frm().Top() < pFldFrm->Frm().Top() );
else
bRefIsLower = pRefFrm->Frm().Left() < pFldFrm->Frm().Left() ||
( pRefFrm->Frm().Left() == pFldFrm->Frm().Left() &&
pRefFrm->Frm().Top() < pFldFrm->Frm().Top() );
pRefFrm = 0;
}
else if( ( FRM_COLUMN | FRM_CELL ) & pFldFrm->GetType() )
pFldFrm = aArr[ nCnt - 1 ];
else
pRefFrm = aRefArr[ nRefCnt - 1 ];
}
if( pRefFrm ) // misuse as flag
{
if( bVert )
{
if( bR2L )
bRefIsLower = pRefFrm->Frm().Left() < pFldFrm->Frm().Left() ||
( pRefFrm->Frm().Left() == pFldFrm->Frm().Left() &&
pRefFrm->Frm().Top() < pFldFrm->Frm().Top() );
else
bRefIsLower = pRefFrm->Frm().Left() > pFldFrm->Frm().Left() ||
( pRefFrm->Frm().Left() == pFldFrm->Frm().Left() &&
pRefFrm->Frm().Top() < pFldFrm->Frm().Top() );
}
else if( bR2L )
bRefIsLower = pRefFrm->Frm().Top() < pFldFrm->Frm().Top() ||
( pRefFrm->Frm().Top() == pFldFrm->Frm().Top() &&
pRefFrm->Frm().Left() > pFldFrm->Frm().Left() );
else
bRefIsLower = pRefFrm->Frm().Top() < pFldFrm->Frm().Top() ||
( pRefFrm->Frm().Top() == pFldFrm->Frm().Top() &&
pRefFrm->Frm().Left() < pFldFrm->Frm().Left() );
}
return bRefIsLower;
}
/// get references
SwGetRefField::SwGetRefField( SwGetRefFieldType* pFldType,
const OUString& rSetRef, sal_uInt16 nSubTyp,
sal_uInt16 nSeqenceNo, sal_uLong nFmt )
: SwField( pFldType, nFmt ),
sSetRefName( rSetRef ),
nSubType( nSubTyp ),
nSeqNo( nSeqenceNo )
{
}
SwGetRefField::~SwGetRefField()
{
}
OUString SwGetRefField::GetDescription() const
{
return SW_RES(STR_REFERENCE);
}
sal_uInt16 SwGetRefField::GetSubType() const
{
return nSubType;
}
void SwGetRefField::SetSubType( sal_uInt16 n )
{
nSubType = n;
}
// #i81002#
bool SwGetRefField::IsRefToHeadingCrossRefBookmark() const
{
return GetSubType() == REF_BOOKMARK &&
::sw::mark::CrossRefHeadingBookmark::IsLegalName(sSetRefName);
}
bool SwGetRefField::IsRefToNumItemCrossRefBookmark() const
{
return GetSubType() == REF_BOOKMARK &&
::sw::mark::CrossRefNumItemBookmark::IsLegalName(sSetRefName);
}
const SwTxtNode* SwGetRefField::GetReferencedTxtNode() const
{
SwDoc* pDoc = dynamic_cast<SwGetRefFieldType*>(GetTyp())->GetDoc();
sal_Int32 nDummy = -1;
return SwGetRefFieldType::FindAnchor( pDoc, sSetRefName, nSubType, nSeqNo, &nDummy );
}
// #i85090#
OUString SwGetRefField::GetExpandedTxtOfReferencedTxtNode() const
{
const SwTxtNode* pReferencedTxtNode( GetReferencedTxtNode() );
return pReferencedTxtNode
? OUString(pReferencedTxtNode->GetExpandTxt( 0, -1, true, true, false, false ))
: OUString();
}
OUString SwGetRefField::Expand() const
{
return sTxt;
}
OUString SwGetRefField::GetFieldName() const
{
const OUString aName = GetTyp()->GetName();
if ( !aName.isEmpty() || !sSetRefName.isEmpty() )
{
return aName + " " + sSetRefName;
}
return Expand();
}
// #i81002# - parameter <pFldTxtAttr> added
void SwGetRefField::UpdateField( const SwTxtFld* pFldTxtAttr )
{
sTxt = OUString();
SwDoc* pDoc = ((SwGetRefFieldType*)GetTyp())->GetDoc();
// finding the reference target (the number)
sal_Int32 nNumStart = -1;
sal_Int32 nNumEnd = -1;
SwTxtNode* pTxtNd = SwGetRefFieldType::FindAnchor(
pDoc, sSetRefName, nSubType, nSeqNo, &nNumStart, &nNumEnd
);
// not found?
if ( !pTxtNd )
{
sTxt = SwViewShell::GetShellRes()->aGetRefFld_RefItemNotFound;
return ;
}
// where is the category name (e.g. "Illustration")?
OUString const sText = pTxtNd->GetTxt();
const sal_Int32 nCatStart = sText.indexOf(sSetRefName);
const bool bHasCat = nCatStart>=0;
const sal_Int32 nCatEnd = bHasCat ? nCatStart + sSetRefName.getLength() : -1;
// length of the referenced text
const sal_Int32 nLen = sText.getLength();
// which format?
switch( GetFormat() )
{
case REF_CONTENT:
case REF_ONLYNUMBER:
case REF_ONLYCAPTION:
case REF_ONLYSEQNO:
{
// needed part of Text
sal_Int32 nStart;
sal_Int32 nEnd;
switch( nSubType )
{
case REF_SEQUENCEFLD:
switch( GetFormat() )
{
// "Category and Number"
case REF_ONLYNUMBER:
if (bHasCat) {
nStart = std::min(nNumStart, nCatStart);
nEnd = std::max(nNumEnd, nCatEnd);
} else {
nStart = nNumStart;
nEnd = nNumEnd;
}
break;
// "Caption Text"
case REF_ONLYCAPTION: {
// next alphanumeric character after category+number
if (const SwTxtAttr* const pTxtAttr =
pTxtNd->GetTxtAttrForCharAt(nNumStart, RES_TXTATR_FIELD)
) {
// start searching from nFrom
const sal_Int32 nFrom = bHasCat
? std::max(nNumStart + 1, nCatEnd)
: nNumStart + 1;
nStart = SwGetExpField::GetReferenceTextPos( pTxtAttr->GetFmtFld(), *pDoc, nFrom );
} else {
nStart = bHasCat ? std::max(nNumEnd, nCatEnd) : nNumEnd;
}
nEnd = nLen;
break;
}
// "Numbering"
case REF_ONLYSEQNO:
nStart = nNumStart;
nEnd = std::min(nStart + 1, nLen);
break;
// "Reference" (whole Text)
default:
nStart = 0;
nEnd = nLen;
break;
}
break;
case REF_BOOKMARK:
nStart = nNumStart;
// Text steht ueber verschiedene Nodes verteilt.
// Gesamten Text oder nur bis zum Ende vom Node?
nEnd = nNumEnd<0 ? nLen : nNumEnd;
break;
case REF_OUTLINE:
nStart = nNumStart;
nEnd = nNumEnd;
break;
case REF_FOOTNOTE:
case REF_ENDNOTE:
// die Nummer oder den NumString besorgen
for( unsigned i = 0; i < pDoc->GetFtnIdxs().size(); ++i )
{
SwTxtFtn* const pFtnIdx = pDoc->GetFtnIdxs()[i];
if( nSeqNo == pFtnIdx->GetSeqRefNo() )
{
sTxt = pFtnIdx->GetFtn().GetViewNumStr( *pDoc );
break;
}
}
return;
default:
nStart = nNumStart;
nEnd = nNumEnd;
break;
}
if( nStart != nEnd ) // a section?
{
sTxt = pTxtNd->GetExpandTxt( nStart, nEnd - nStart );
// remove all special characters (replace them with blanks)
if( !sTxt.isEmpty() )
{
sTxt = comphelper::string::remove(sTxt, 0xad);
OUStringBuffer aBuf(sTxt);
const sal_Int32 l = aBuf.getLength();
for (sal_Int32 i=0; i<l; ++i)
{
if (aBuf[i]<' ')
{
aBuf[i]=' ';
}
else if (aBuf[i]==0x2011)
{
aBuf[i]='-';
}
}
sTxt = aBuf.makeStringAndClear();
}
}
}
break;
case REF_PAGE:
case REF_PAGE_PGDESC:
{
const SwTxtFrm* pFrm = (SwTxtFrm*)pTxtNd->getLayoutFrm( pDoc->GetCurrentLayout(), 0, 0, false),
*pSave = pFrm;
while( pFrm && !pFrm->IsInside( nNumStart ) )
pFrm = (SwTxtFrm*)pFrm->GetFollow();
if( pFrm || 0 != ( pFrm = pSave ))
{
sal_uInt16 nPageNo = pFrm->GetVirtPageNum();
const SwPageFrm *pPage;
if( REF_PAGE_PGDESC == GetFormat() &&
0 != ( pPage = pFrm->FindPageFrm() ) &&
pPage->GetPageDesc() )
sTxt = pPage->GetPageDesc()->GetNumType().GetNumStr( nPageNo );
else
sTxt = OUString::number(nPageNo);
}
}
break;
case REF_CHAPTER:
{
// a bit tricky: search any frame
const SwFrm* pFrm = pTxtNd->getLayoutFrm( pDoc->GetCurrentLayout() );
if( pFrm )
{
SwChapterFieldType aFldTyp;
SwChapterField aFld( &aFldTyp, 0 );
aFld.SetLevel( MAXLEVEL - 1 );
aFld.ChangeExpansion( pFrm, pTxtNd, true );
sTxt = aFld.GetNumber();
}
}
break;
case REF_UPDOWN:
{
// #i81002#
// simplified: use parameter <pFldTxtAttr>
if( !pFldTxtAttr || !pFldTxtAttr->GetpTxtNode() )
break;
LanguageTag aLanguageTag( GetLanguage());
LocaleDataWrapper aLocaleData( aLanguageTag );
// first a "short" test - in case both are in the same node
if( pFldTxtAttr->GetpTxtNode() == pTxtNd )
{
sTxt = nNumStart < *pFldTxtAttr->GetStart()
? aLocaleData.getAboveWord()
: aLocaleData.getBelowWord();
break;
}
sTxt = ::IsFrameBehind( *pFldTxtAttr->GetpTxtNode(), *pFldTxtAttr->GetStart(),
*pTxtNd, nNumStart )
? aLocaleData.getAboveWord()
: aLocaleData.getBelowWord();
}
break;
// #i81002#
case REF_NUMBER:
case REF_NUMBER_NO_CONTEXT:
case REF_NUMBER_FULL_CONTEXT:
{
if ( pFldTxtAttr && pFldTxtAttr->GetpTxtNode() )
{
sTxt = MakeRefNumStr( pFldTxtAttr->GetTxtNode(), *pTxtNd, GetFormat() );
}
}
break;
default:
OSL_FAIL("<SwGetRefField::UpdateField(..)> - unknown format type");
}
}
// #i81002#
OUString SwGetRefField::MakeRefNumStr( const SwTxtNode& rTxtNodeOfField,
const SwTxtNode& rTxtNodeOfReferencedItem,
const sal_uInt32 nRefNumFormat ) const
{
if ( rTxtNodeOfReferencedItem.HasNumber() &&
rTxtNodeOfReferencedItem.IsCountedInList() )
{
OSL_ENSURE( rTxtNodeOfReferencedItem.GetNum(),
"<SwGetRefField::MakeRefNumStr(..)> - referenced paragraph has number, but no <SwNodeNum> instance --> please inform OD!" );
// Determine, up to which level the superior list labels have to be
// included - default is to include all superior list labels.
sal_uInt8 nRestrictInclToThisLevel( 0 );
// Determine for format REF_NUMBER the level, up to which the superior
// list labels have to be restricted, if the text node of the reference
// field and the text node of the referenced item are in the same
// document context.
if ( nRefNumFormat == REF_NUMBER &&
rTxtNodeOfField.FindFlyStartNode()
== rTxtNodeOfReferencedItem.FindFlyStartNode() &&
rTxtNodeOfField.FindFootnoteStartNode()
== rTxtNodeOfReferencedItem.FindFootnoteStartNode() &&
rTxtNodeOfField.FindHeaderStartNode()
== rTxtNodeOfReferencedItem.FindHeaderStartNode() &&
rTxtNodeOfField.FindFooterStartNode()
== rTxtNodeOfReferencedItem.FindFooterStartNode() )
{
const SwNodeNum* pNodeNumForTxtNodeOfField( 0 );
if ( rTxtNodeOfField.HasNumber() &&
rTxtNodeOfField.GetNumRule() == rTxtNodeOfReferencedItem.GetNumRule() )
{
pNodeNumForTxtNodeOfField = rTxtNodeOfField.GetNum();
}
else
{
pNodeNumForTxtNodeOfField =
rTxtNodeOfReferencedItem.GetNum()->GetPrecedingNodeNumOf( rTxtNodeOfField );
}
if ( pNodeNumForTxtNodeOfField )
{
const SwNumberTree::tNumberVector rFieldNumVec = pNodeNumForTxtNodeOfField->GetNumberVector();
const SwNumberTree::tNumberVector rRefItemNumVec = rTxtNodeOfReferencedItem.GetNum()->GetNumberVector();
sal_uInt8 nLevel( 0 );
while ( nLevel < rFieldNumVec.size() && nLevel < rRefItemNumVec.size() )
{
if ( rRefItemNumVec[nLevel] == rFieldNumVec[nLevel] )
{
nRestrictInclToThisLevel = nLevel + 1;
}
else
{
break;
}
++nLevel;
}
}
}
// Determine, if superior list labels have to be included
const bool bInclSuperiorNumLabels(
( nRestrictInclToThisLevel < rTxtNodeOfReferencedItem.GetActualListLevel() &&
( nRefNumFormat == REF_NUMBER || nRefNumFormat == REF_NUMBER_FULL_CONTEXT ) ) );
OSL_ENSURE( rTxtNodeOfReferencedItem.GetNumRule(),
"<SwGetRefField::MakeRefNumStr(..)> - referenced numbered paragraph has no numbering rule set --> please inform OD!" );
return rTxtNodeOfReferencedItem.GetNumRule()->MakeRefNumString(
*(rTxtNodeOfReferencedItem.GetNum()),
bInclSuperiorNumLabels,
nRestrictInclToThisLevel );
}
return OUString();
}
SwField* SwGetRefField::Copy() const
{
SwGetRefField* pFld = new SwGetRefField( (SwGetRefFieldType*)GetTyp(),
sSetRefName, nSubType,
nSeqNo, GetFormat() );
pFld->sTxt = sTxt;
return pFld;
}
/// get reference name
OUString SwGetRefField::GetPar1() const
{
return sSetRefName;
}
/// set reference name
void SwGetRefField::SetPar1( const OUString& rName )
{
sSetRefName = rName;
}
OUString SwGetRefField::GetPar2() const
{
return Expand();
}
bool SwGetRefField::QueryValue( uno::Any& rAny, sal_uInt16 nWhichId ) const
{
switch( nWhichId )
{
case FIELD_PROP_USHORT1:
{
sal_Int16 nPart = 0;
switch(GetFormat())
{
case REF_PAGE : nPart = ReferenceFieldPart::PAGE ; break;
case REF_CHAPTER : nPart = ReferenceFieldPart::CHAPTER ; break;
case REF_CONTENT : nPart = ReferenceFieldPart::TEXT ; break;
case REF_UPDOWN : nPart = ReferenceFieldPart::UP_DOWN ; break;
case REF_PAGE_PGDESC: nPart = ReferenceFieldPart::PAGE_DESC ; break;
case REF_ONLYNUMBER : nPart = ReferenceFieldPart::CATEGORY_AND_NUMBER ; break;
case REF_ONLYCAPTION: nPart = ReferenceFieldPart::ONLY_CAPTION ; break;
case REF_ONLYSEQNO : nPart = ReferenceFieldPart::ONLY_SEQUENCE_NUMBER; break;
// #i81002#
case REF_NUMBER: nPart = ReferenceFieldPart::NUMBER; break;
case REF_NUMBER_NO_CONTEXT: nPart = ReferenceFieldPart::NUMBER_NO_CONTEXT; break;
case REF_NUMBER_FULL_CONTEXT: nPart = ReferenceFieldPart::NUMBER_FULL_CONTEXT; break;
}
rAny <<= nPart;
}
break;
case FIELD_PROP_USHORT2:
{
sal_Int16 nSource = 0;
switch(nSubType)
{
case REF_SETREFATTR : nSource = ReferenceFieldSource::REFERENCE_MARK; break;
case REF_SEQUENCEFLD: nSource = ReferenceFieldSource::SEQUENCE_FIELD; break;
case REF_BOOKMARK : nSource = ReferenceFieldSource::BOOKMARK; break;
case REF_OUTLINE : OSL_FAIL("not implemented"); break;
case REF_FOOTNOTE : nSource = ReferenceFieldSource::FOOTNOTE; break;
case REF_ENDNOTE : nSource = ReferenceFieldSource::ENDNOTE; break;
}
rAny <<= nSource;
}
break;
case FIELD_PROP_PAR1:
{
OUString sTmp(GetPar1());
if(REF_SEQUENCEFLD == nSubType)
{
sal_uInt16 nPoolId = SwStyleNameMapper::GetPoolIdFromUIName( sTmp, nsSwGetPoolIdFromName::GET_POOLID_TXTCOLL );
switch( nPoolId )
{
case RES_POOLCOLL_LABEL_ABB:
case RES_POOLCOLL_LABEL_TABLE:
case RES_POOLCOLL_LABEL_FRAME:
case RES_POOLCOLL_LABEL_DRAWING:
SwStyleNameMapper::FillProgName(nPoolId, sTmp) ;
break;
}
}
rAny <<= sTmp;
}
break;
case FIELD_PROP_PAR3:
rAny <<= Expand();
break;
case FIELD_PROP_SHORT1:
rAny <<= (sal_Int16)nSeqNo;
break;
default:
OSL_FAIL("illegal property");
}
return true;
}
bool SwGetRefField::PutValue( const uno::Any& rAny, sal_uInt16 nWhichId )
{
switch( nWhichId )
{
case FIELD_PROP_USHORT1:
{
sal_Int16 nPart = 0;
rAny >>= nPart;
switch(nPart)
{
case ReferenceFieldPart::PAGE: nPart = REF_PAGE; break;
case ReferenceFieldPart::CHAPTER: nPart = REF_CHAPTER; break;
case ReferenceFieldPart::TEXT: nPart = REF_CONTENT; break;
case ReferenceFieldPart::UP_DOWN: nPart = REF_UPDOWN; break;
case ReferenceFieldPart::PAGE_DESC: nPart = REF_PAGE_PGDESC; break;
case ReferenceFieldPart::CATEGORY_AND_NUMBER: nPart = REF_ONLYNUMBER; break;
case ReferenceFieldPart::ONLY_CAPTION: nPart = REF_ONLYCAPTION; break;
case ReferenceFieldPart::ONLY_SEQUENCE_NUMBER : nPart = REF_ONLYSEQNO; break;
// #i81002#
case ReferenceFieldPart::NUMBER: nPart = REF_NUMBER; break;
case ReferenceFieldPart::NUMBER_NO_CONTEXT: nPart = REF_NUMBER_NO_CONTEXT; break;
case ReferenceFieldPart::NUMBER_FULL_CONTEXT: nPart = REF_NUMBER_FULL_CONTEXT; break;
default: return false;
}
SetFormat(nPart);
}
break;
case FIELD_PROP_USHORT2:
{
sal_Int16 nSource = 0;
rAny >>= nSource;
switch(nSource)
{
case ReferenceFieldSource::REFERENCE_MARK : nSubType = REF_SETREFATTR ; break;
case ReferenceFieldSource::SEQUENCE_FIELD :
{
if(REF_SEQUENCEFLD == nSubType)
break;
nSubType = REF_SEQUENCEFLD;
ConvertProgrammaticToUIName();
}
break;
case ReferenceFieldSource::BOOKMARK : nSubType = REF_BOOKMARK ; break;
case ReferenceFieldSource::FOOTNOTE : nSubType = REF_FOOTNOTE ; break;
case ReferenceFieldSource::ENDNOTE : nSubType = REF_ENDNOTE ; break;
}
}
break;
case FIELD_PROP_PAR1:
{
OUString sTmpStr;
rAny >>= sTmpStr;
SetPar1(sTmpStr);
ConvertProgrammaticToUIName();
}
break;
case FIELD_PROP_PAR3:
{
OUString sTmpStr;
rAny >>= sTmpStr;
SetExpand( sTmpStr );
}
break;
case FIELD_PROP_SHORT1:
{
sal_Int16 nSetSeq = 0;
rAny >>= nSetSeq;
if(nSetSeq >= 0)
nSeqNo = nSetSeq;
}
break;
default:
OSL_FAIL("illegal property");
}
return true;
}
void SwGetRefField::ConvertProgrammaticToUIName()
{
if(GetTyp() && REF_SEQUENCEFLD == nSubType)
{
SwDoc* pDoc = ((SwGetRefFieldType*)GetTyp())->GetDoc();
const OUString rPar1 = GetPar1();
// don't convert when the name points to an existing field type
if(!pDoc->GetFldType(RES_SETEXPFLD, rPar1, false))
{
sal_uInt16 nPoolId = SwStyleNameMapper::GetPoolIdFromProgName( rPar1, nsSwGetPoolIdFromName::GET_POOLID_TXTCOLL );
sal_uInt16 nResId = USHRT_MAX;
switch( nPoolId )
{
case RES_POOLCOLL_LABEL_ABB:
nResId = STR_POOLCOLL_LABEL_ABB;
break;
case RES_POOLCOLL_LABEL_TABLE:
nResId = STR_POOLCOLL_LABEL_TABLE;
break;
case RES_POOLCOLL_LABEL_FRAME:
nResId = STR_POOLCOLL_LABEL_FRAME;
break;
case RES_POOLCOLL_LABEL_DRAWING:
nResId = STR_POOLCOLL_LABEL_DRAWING;
break;
}
if( nResId != USHRT_MAX )
SetPar1(SW_RESSTR( nResId ));
}
}
}
SwGetRefFieldType::SwGetRefFieldType( SwDoc* pDc )
: SwFieldType( RES_GETREFFLD ), pDoc( pDc )
{}
SwFieldType* SwGetRefFieldType::Copy() const
{
return new SwGetRefFieldType( pDoc );
}
void SwGetRefFieldType::Modify( const SfxPoolItem* pOld, const SfxPoolItem* pNew )
{
// update to all GetReference fields
if( !pNew && !pOld )
{
SwIterator<SwFmtFld,SwFieldType> aIter( *this );
for( SwFmtFld* pFmtFld = aIter.First(); pFmtFld; pFmtFld = aIter.Next() )
{
// update only the GetRef fields
//JP 3.4.2001: Task 71231 - we need the correct language
SwGetRefField* pGRef = (SwGetRefField*)pFmtFld->GetField();
const SwTxtFld* pTFld;
if( !pGRef->GetLanguage() &&
0 != ( pTFld = pFmtFld->GetTxtFld()) &&
pTFld->GetpTxtNode() )
{
pGRef->SetLanguage( pTFld->GetpTxtNode()->GetLang(
*pTFld->GetStart() ) );
}
// #i81002#
pGRef->UpdateField( pFmtFld->GetTxtFld() );
}
}
// forward to text fields, they "expand" the text
NotifyClients( pOld, pNew );
}
SwTxtNode* SwGetRefFieldType::FindAnchor( SwDoc* pDoc, const OUString& rRefMark,
sal_uInt16 nSubType, sal_uInt16 nSeqNo,
sal_Int32* pStt, sal_Int32* pEnd )
{
OSL_ENSURE( pStt, "Why did no one check the StartPos?" );
SwTxtNode* pTxtNd = 0;
switch( nSubType )
{
case REF_SETREFATTR:
{
const SwFmtRefMark *pRef = pDoc->GetRefMark( rRefMark );
if( pRef && pRef->GetTxtRefMark() )
{
pTxtNd = (SwTxtNode*)&pRef->GetTxtRefMark()->GetTxtNode();
*pStt = *pRef->GetTxtRefMark()->GetStart();
if( pEnd )
*pEnd = *pRef->GetTxtRefMark()->GetAnyEnd();
}
}
break;
case REF_SEQUENCEFLD:
{
SwFieldType* pFldType = pDoc->GetFldType( RES_SETEXPFLD, rRefMark, false );
if( pFldType && pFldType->GetDepends() &&
nsSwGetSetExpType::GSE_SEQ & ((SwSetExpFieldType*)pFldType)->GetType() )
{
SwIterator<SwFmtFld,SwFieldType> aIter( *pFldType );
for( SwFmtFld* pFmtFld = aIter.First(); pFmtFld; pFmtFld = aIter.Next() )
{
if( pFmtFld->GetTxtFld() && nSeqNo ==
((SwSetExpField*)pFmtFld->GetField())->GetSeqNumber() )
{
SwTxtFld* pTxtFld = pFmtFld->GetTxtFld();
pTxtNd = (SwTxtNode*)pTxtFld->GetpTxtNode();
*pStt = *pTxtFld->GetStart();
if( pEnd )
*pEnd = (*pStt) + 1;
break;
}
}
}
}
break;
case REF_BOOKMARK:
{
IDocumentMarkAccess::const_iterator_t ppMark = pDoc->getIDocumentMarkAccess()->findMark(rRefMark);
if(ppMark != pDoc->getIDocumentMarkAccess()->getAllMarksEnd())
{
const ::sw::mark::IMark* pBkmk = ppMark->get();
const SwPosition* pPos = &pBkmk->GetMarkStart();
pTxtNd = pPos->nNode.GetNode().GetTxtNode();
*pStt = pPos->nContent.GetIndex();
if(pEnd)
{
if(!pBkmk->IsExpanded())
{
*pEnd = *pStt;
// #i81002#
if(dynamic_cast< ::sw::mark::CrossRefBookmark const *>(pBkmk))
{
OSL_ENSURE( pTxtNd,
"<SwGetRefFieldType::FindAnchor(..)> - node marked by cross-reference bookmark isn't a text node --> crash" );
*pEnd = pTxtNd->Len();
}
}
else if(pBkmk->GetOtherMarkPos().nNode == pBkmk->GetMarkPos().nNode)
*pEnd = pBkmk->GetMarkEnd().nContent.GetIndex();
else
*pEnd = -1;
}
}
}
break;
case REF_OUTLINE:
break;
case REF_FOOTNOTE:
case REF_ENDNOTE:
{
sal_uInt16 n, nFtnCnt = pDoc->GetFtnIdxs().size();
SwTxtFtn* pFtnIdx;
for( n = 0; n < nFtnCnt; ++n )
if( nSeqNo == (pFtnIdx = pDoc->GetFtnIdxs()[ n ])->GetSeqRefNo() )
{
SwNodeIndex* pIdx = pFtnIdx->GetStartNode();
if( pIdx )
{
SwNodeIndex aIdx( *pIdx, 1 );
if( 0 == ( pTxtNd = aIdx.GetNode().GetTxtNode()))
pTxtNd = (SwTxtNode*)pDoc->GetNodes().GoNext( &aIdx );
}
*pStt = 0;
if( pEnd )
*pEnd = 0;
break;
}
}
break;
}
return pTxtNd;
}
struct _RefIdsMap
{
private:
OUString aName;
std::set<sal_uInt16> aIds;
std::set<sal_uInt16> aDstIds;
std::map<sal_uInt16, sal_uInt16> sequencedIds; /// ID numbers sorted by sequence number.
bool bInit;
void Init(SwDoc& rDoc, SwDoc& rDestDoc, bool bField );
void GetNoteIdsFromDoc( SwDoc& rDoc, std::set<sal_uInt16> &rIds );
void GetFieldIdsFromDoc( SwDoc& rDoc, std::set<sal_uInt16> &rIds );
void AddId( sal_uInt16 id, sal_uInt16 seqNum );
sal_uInt16 GetFirstUnusedId( std::set<sal_uInt16> &rIds );
public:
_RefIdsMap( const OUString& rName ) : aName( rName ), bInit( false ) {}
void Check( SwDoc& rDoc, SwDoc& rDestDoc, SwGetRefField& rFld, bool bField );
OUString GetName() { return aName; }
};
typedef boost::ptr_vector<_RefIdsMap> _RefIdsMaps;
/// Get a sorted list of the field IDs from a document.
/// @param[in] rDoc The document to search.
/// @param[in,out] rIds The list of IDs found in the document.
void _RefIdsMap::GetFieldIdsFromDoc( SwDoc& rDoc, std::set<sal_uInt16> &rIds)
{
SwFieldType *const pType = rDoc.GetFldType(RES_SETEXPFLD, aName, false);
if (!pType)
return;
SwIterator<SwFmtFld,SwFieldType> aIter( *pType );
for (SwFmtFld const* pF = aIter.First(); pF; pF = aIter.Next())
{
if (pF->GetTxtFld())
{
SwTxtNode const*const pNd = pF->GetTxtFld()->GetpTxtNode();
if (pNd && pNd->GetNodes().IsDocNodes())
{
rIds.insert(static_cast<SwSetExpField const*>(pF->GetField())
->GetSeqNumber());
}
}
}
}
/// Get a sorted list of the footnote/endnote IDs from a document.
/// @param[in] rDoc The document to search.
/// @param[in,out] rIds The list of IDs found in the document.
void _RefIdsMap::GetNoteIdsFromDoc( SwDoc& rDoc, std::set<sal_uInt16> &rIds)
{
for( sal_uInt16 n = rDoc.GetFtnIdxs().size(); n; )
rIds.insert( rDoc.GetFtnIdxs()[ --n ]->GetSeqRefNo() );
}
/// Initialise the aIds and aDestIds collections from the source documents.
/// @param[in] rDoc The source document.
/// @param[in] rDestDoc The destination document.
/// @param[in] bField True if we're interested in all fields, false for footnotes.
void _RefIdsMap::Init( SwDoc& rDoc, SwDoc& rDestDoc, bool bField )
{
if( bInit )
return;
if( bField )
{
GetFieldIdsFromDoc( rDestDoc, aIds );
GetFieldIdsFromDoc( rDoc, aDstIds );
// Map all the new src fields to the next available unused id
for ( std::set<sal_uInt16>::iterator pIt = aDstIds.begin(); pIt != aDstIds.end(); ++pIt )
AddId( GetFirstUnusedId(aIds), *pIt );
// Change the Sequence number of all SetExp fields in the source document
SwFieldType* pType = rDoc.GetFldType( RES_SETEXPFLD, aName, false );
if( pType )
{
SwIterator<SwFmtFld,SwFieldType> aIter( *pType );
for( SwFmtFld* pF = aIter.First(); pF; pF = aIter.Next() )
if( pF->GetTxtFld() )
{
SwSetExpField *const pSetExp(
static_cast<SwSetExpField *>(pF->GetField()));
sal_uInt16 const n = pSetExp->GetSeqNumber();
pSetExp->SetSeqNumber( sequencedIds[n] );
}
}
}
else
{
GetNoteIdsFromDoc( rDestDoc, aIds );
GetNoteIdsFromDoc( rDoc, aDstIds );
for (std::set<sal_uInt16>::iterator pIt = aDstIds.begin(); pIt != aDstIds.end(); ++pIt)
AddId( GetFirstUnusedId(aIds), *pIt );
// Change the footnotes/endnotes in the source doc to the new ID
for (sal_uInt16 i = 0, nCnt = rDoc.GetFtnIdxs().size(); i < nCnt; ++i)
{
SwTxtFtn *const pFtnIdx = rDoc.GetFtnIdxs()[i];
sal_uInt16 const n = pFtnIdx->GetSeqRefNo();
pFtnIdx->SetSeqNo(sequencedIds[n]);
}
}
bInit = true;
}
/// Get the lowest number unused in the passed set.
/// @param[in] rIds The set of used ID numbers.
/// @returns The lowest number unused by the passed set
sal_uInt16 _RefIdsMap::GetFirstUnusedId( std::set<sal_uInt16> &rIds )
{
sal_uInt16 num(0);
std::set<sal_uInt16>::iterator it;
for( it = rIds.begin(); it != rIds.end(); ++it )
{
if( num != *it )
{
return num;
}
++num;
}
return num;
}
/// Add a new ID and sequence number to the "occupied" collection.
/// @param[in] id The ID number.
/// @param[in] seqNum The sequence number.
void _RefIdsMap::AddId( sal_uInt16 id, sal_uInt16 seqNum )
{
aIds.insert( id );
sequencedIds[ seqNum ] = id;
}
void _RefIdsMap::Check( SwDoc& rDoc, SwDoc& rDestDoc, SwGetRefField& rFld,
bool bField )
{
Init( rDoc, rDestDoc, bField);
sal_uInt16 const nSeqNo = rFld.GetSeqNo();
// check if it needs to be remapped
// if sequencedIds doesn't contain the number, it means there is no
// SetExp field / footnote in the source document: do not modify
// the number, which works well for copy from/paste to same document
// (and if it is not the same document, there's no "correct" result anyway)
if (sequencedIds.count(nSeqNo))
{
rFld.SetSeqNo( sequencedIds[nSeqNo] );
}
}
/// 1. if _both_ SetExp + GetExp / Footnote + GetExp field are copied,
/// enusure that both get a new unused matching number
/// 2. if only SetExp / Footnote is copied, it gets a new unused number
/// 3. if only GetExp field is copied, for the case of copy from / paste to
/// same document it's desirable to keep the same number;
/// for other cases of copy/paste or master documents it's not obvious
/// what is most desirable since it's going to be wrong anyway
void SwGetRefFieldType::MergeWithOtherDoc( SwDoc& rDestDoc )
{
if( &rDestDoc != pDoc )
{
if (rDestDoc.IsClipBoard())
{
// when copying _to_ clipboard, expectation is that no fields exist
// so no re-mapping is required to avoid collisions
assert(!rDestDoc.GetSysFldType(RES_GETREFFLD)->GetDepends());
return; // don't modify the fields in the source doc
}
// then there are RefFields in the DescDox - so all RefFields in the SourceDoc
// need to be converted to have unique IDs for both documents
_RefIdsMap aFntMap( aEmptyOUStr );
_RefIdsMaps aFldMap;
SwIterator<SwFmtFld,SwFieldType> aIter( *this );
for( SwFmtFld* pFld = aIter.First(); pFld; pFld = aIter.Next() )
{
SwGetRefField& rRefFld = *(SwGetRefField*)pFld->GetField();
switch( rRefFld.GetSubType() )
{
case REF_SEQUENCEFLD:
{
_RefIdsMap* pMap = 0;
for( sal_uInt16 n = aFldMap.size(); n; )
{
if( aFldMap[ --n ].GetName()==rRefFld.GetSetRefName() )
{
pMap = &aFldMap[ n ];
break;
}
}
if( !pMap )
{
pMap = new _RefIdsMap( rRefFld.GetSetRefName() );
aFldMap.push_back( pMap );
}
pMap->Check( *pDoc, rDestDoc, rRefFld, true );
}
break;
case REF_FOOTNOTE:
case REF_ENDNOTE:
aFntMap.Check( *pDoc, rDestDoc, rRefFld, false );
break;
}
}
}
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|