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 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394
|
/* -*- 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 <scextopt.hxx>
#include <autonamecache.hxx>
#include <o3tl/safeint.hxx>
#include <osl/thread.h>
#include <svx/xtable.hxx>
#include <sfx2/bindings.hxx>
#include <sfx2/objsh.hxx>
#include <sfx2/docfile.hxx>
#include <sfx2/printer.hxx>
#include <svl/asiancfg.hxx>
#include <vcl/virdev.hxx>
#include <svl/sharedstringpool.hxx>
#include <tools/urlobj.hxx>
#include <rtl/crc.h>
#include <basic/basmgr.hxx>
#include <comphelper/threadpool.hxx>
#include <sal/log.hxx>
#include <scmod.hxx>
#include <document.hxx>
#include <table.hxx>
#include <patattr.hxx>
#include <rangenam.hxx>
#include <dbdata.hxx>
#include <chartlock.hxx>
#include <rechead.hxx>
#include <global.hxx>
#include <bcaslot.hxx>
#include <adiasync.hxx>
#include <addinlis.hxx>
#include <chartlis.hxx>
#include <markdata.hxx>
#include <validat.hxx>
#include <detdata.hxx>
#include <defaultsoptions.hxx>
#include <sc.hrc>
#include <ddelink.hxx>
#include <chgtrack.hxx>
#include <chgviset.hxx>
#include <editutil.hxx>
#include <hints.hxx>
#include <dpobject.hxx>
#include <scrdata.hxx>
#include <poolhelp.hxx>
#include <unoreflist.hxx>
#include <listenercalls.hxx>
#include <recursionhelper.hxx>
#include <lookupcache.hxx>
#include <externalrefmgr.hxx>
#include <viewdata.hxx>
#include <viewutil.hxx>
#include <tabprotection.hxx>
#include <formulaparserpool.hxx>
#include <clipparam.hxx>
#include <macromgr.hxx>
#include <formulacell.hxx>
#include <clipcontext.hxx>
#include <refupdatecontext.hxx>
#include <refreshtimerprotector.hxx>
#include <scopetools.hxx>
#include <documentlinkmgr.hxx>
#include <interpre.hxx>
#include <tokenstringcontext.hxx>
#include <docsh.hxx>
#include <clipoptions.hxx>
#include <listenercontext.hxx>
#include <datamapper.hxx>
#include <drwlayer.hxx>
using namespace com::sun::star;
const sal_uInt16 ScDocument::nSrcVer = SC_CURRENT_VERSION;
ScDocument::ScDocument( ScDocumentMode eMode, SfxObjectShell* pDocShell ) :
mpCellStringPool(std::make_shared<svl::SharedStringPool>(*ScGlobal::getCharClassPtr())),
mpDocLinkMgr(new sc::DocumentLinkManager(pDocShell)),
mbFormulaGroupCxtBlockDiscard(false),
maCalcConfig( ScInterpreter::GetGlobalConfig()),
mpUndoManager( nullptr ),
mpShell( pDocShell ),
mpPrinter( nullptr ),
mpVirtualDevice_100th_mm( nullptr ),
pFormatExchangeList( nullptr ),
mxSheetLimits(new ScSheetLimits(MAXCOL, MAXROW)),
pFormulaTree( nullptr ),
pEOFormulaTree( nullptr ),
pFormulaTrack( nullptr ),
pEOFormulaTrack( nullptr ),
pPreviewCellStyle( nullptr ),
maPreviewSelection(MAXROW, MAXCOL),
nUnoObjectId( 0 ),
nRangeOverflowType( 0 ),
aCurTextWidthCalcPos(MaxCol(),0,0),
nFormulaCodeInTree(0),
nXMLImportedFormulaCount( 0 ),
nInterpretLevel(0),
nMacroInterpretLevel(0),
nInterpreterTableOpLevel(0),
maInterpreterContext( *this, nullptr ),
nFormulaTrackCount(0),
eHardRecalcState(HardRecalcState::OFF),
nVisibleTab( 0 ),
nPosLeft( 0 ),
nPosTop( 0 ),
eLinkMode(LM_UNKNOWN),
bAutoCalc( eMode == SCDOCMODE_DOCUMENT || eMode == SCDOCMODE_FUNCTIONACCESS ),
bAutoCalcShellDisabled( false ),
bForcedFormulaPending( false ),
bCalculatingFormulaTree( false ),
bIsClip( eMode == SCDOCMODE_CLIP ),
bIsUndo( eMode == SCDOCMODE_UNDO ),
bIsFunctionAccess( eMode == SCDOCMODE_FUNCTIONACCESS ),
bIsVisible( false ),
bIsEmbedded( false ),
bInsertingFromOtherDoc( false ),
bLoadingMedium( false ),
bImportingXML( false ),
bCalcingAfterLoad( false ),
bNoListening( false ),
mbIdleEnabled(true),
bInLinkUpdate( false ),
bChartListenerCollectionNeedsUpdate( false ),
bHasForcedFormulas( false ),
bInDtorClear( false ),
bExpandRefs( false ),
bDetectiveDirty( false ),
bLinkFormulaNeedingCheck( false ),
nAsianCompression(CharCompressType::Invalid),
nAsianKerning(SC_ASIANKERNING_INVALID),
bPastingDrawFromOtherDoc( false ),
nInDdeLinkUpdate( 0 ),
bInUnoBroadcast( false ),
bInUnoListenerCall( false ),
nAdjustHeightLock(0),
eGrammar( formula::FormulaGrammar::GRAM_NATIVE ),
bStyleSheetUsageInvalid( true ),
mbUndoEnabled( true ),
mbExecuteLinkEnabled( true ),
mbChangeReadOnlyEnabled( false ),
mbStreamValidLocked( false ),
mbUserInteractionEnabled(true),
mnNamedRangesLockCount(0),
mbEmbedFonts(false),
mbEmbedUsedFontsOnly(false),
mbEmbedFontScriptLatin(true),
mbEmbedFontScriptAsian(true),
mbEmbedFontScriptComplex(true),
mbTrackFormulasPending(false),
mbFinalTrackFormulas(false),
mbDocShellRecalc(false),
mnMutationGuardFlags(0)
{
const ScDefaultsOptions& rOpt = SC_MOD()->GetDefaultsOptions();
if (rOpt.GetInitJumboSheets())
{
mxSheetLimits = new ScSheetLimits(MAXCOL_JUMBO, MAXROW_JUMBO);
}
maPreviewSelection = { MaxRow(), MaxCol() };
aCurTextWidthCalcPos = { MaxCol(), 0, 0 };
SetStorageGrammar( formula::FormulaGrammar::GRAM_STORAGE_DEFAULT);
eSrcSet = osl_getThreadTextEncoding();
/* TODO: for SCDOCMODE_FUNCTIONACCESS it might not even be necessary to
* have all of these available. */
if ( eMode == SCDOCMODE_DOCUMENT || eMode == SCDOCMODE_FUNCTIONACCESS )
{
mxPoolHelper = new ScPoolHelper( this );
pBASM.reset( new ScBroadcastAreaSlotMachine( this ) );
pChartListenerCollection.reset( new ScChartListenerCollection( this ) );
pRefreshTimerControl.reset( new ScRefreshTimerControl );
}
else
{
pChartListenerCollection = nullptr;
}
pDBCollection.reset( new ScDBCollection(this) );
pSelectionAttr = nullptr;
apTemporaryChartLock.reset( new ScTemporaryChartLock(this) );
xColNameRanges = new ScRangePairList;
xRowNameRanges = new ScRangePairList;
ImplCreateOptions();
// languages for a visible document are set by docshell later (from options)
SetLanguage( ScGlobal::eLnge, ScGlobal::eLnge, ScGlobal::eLnge );
aTrackIdle.SetInvokeHandler( LINK( this, ScDocument, TrackTimeHdl ) );
}
sfx2::LinkManager* ScDocument::GetLinkManager()
{
return GetDocLinkManager().getLinkManager();
}
const sfx2::LinkManager* ScDocument::GetLinkManager() const
{
return GetDocLinkManager().getExistingLinkManager();
}
sc::DocumentLinkManager& ScDocument::GetDocLinkManager()
{
return *mpDocLinkMgr;
}
const sc::DocumentLinkManager& ScDocument::GetDocLinkManager() const
{
return const_cast<ScDocument*>(this)->GetDocLinkManager();
}
void ScDocument::SetStorageGrammar( formula::FormulaGrammar::Grammar eGram )
{
OSL_PRECOND(
eGram == formula::FormulaGrammar::GRAM_ODFF ||
eGram == formula::FormulaGrammar::GRAM_PODF,
"ScDocument::SetStorageGrammar: wrong storage grammar");
eStorageGrammar = eGram;
}
void ScDocument::SetDocVisible( bool bSet )
{
// called from view ctor - only for a visible document,
// each new sheet's RTL flag is initialized from the locale
bIsVisible = bSet;
}
sal_uInt32 ScDocument::GetDocumentID() const
{
const ScDocument* pThis = this;
sal_uInt32 nCrc = rtl_crc32( 0, &pThis, sizeof(ScDocument*) );
// the this pointer only might not be sufficient
nCrc = rtl_crc32( nCrc, &mpShell, sizeof(SfxObjectShell*) );
return nCrc;
}
void ScDocument::StartChangeTracking()
{
if (!pChangeTrack)
pChangeTrack.reset( new ScChangeTrack( this ) );
}
void ScDocument::EndChangeTracking()
{
pChangeTrack.reset();
}
void ScDocument::SetChangeTrack( std::unique_ptr<ScChangeTrack> pTrack )
{
OSL_ENSURE( pTrack->GetDocument() == this, "SetChangeTrack: different documents" );
if ( !pTrack || pTrack == pChangeTrack || pTrack->GetDocument() != this )
return ;
EndChangeTracking();
pChangeTrack = std::move(pTrack);
}
IMPL_LINK_NOARG(ScDocument, TrackTimeHdl, Timer *, void)
{
if ( ScDdeLink::IsInUpdate() ) // do not nest
{
aTrackIdle.Start(); // try again later
}
else if (mpShell) // execute
{
TrackFormulas();
mpShell->Broadcast( SfxHint( SfxHintId::ScDataChanged ) );
if (!mpShell->IsModified())
{
mpShell->SetModified();
SfxBindings* pBindings = GetViewBindings();
if (pBindings)
{
pBindings->Invalidate( SID_SAVEDOC );
pBindings->Invalidate( SID_DOC_MODIFIED );
}
}
}
}
void ScDocument::SetExpandRefs( bool bVal )
{
bExpandRefs = bVal;
}
void ScDocument::StartTrackTimer()
{
if (!aTrackIdle.IsActive()) // do not postpone for forever
aTrackIdle.Start();
}
void ScDocument::ClosingClipboardSource()
{
if (!bIsClip)
return;
ForgetNoteCaptions( ScRangeList( ScRange( 0,0,0, MaxCol(), MaxRow(), GetTableCount()-1)), true);
}
ScDocument::~ScDocument()
{
OSL_PRECOND( !bInLinkUpdate, "bInLinkUpdate in dtor" );
// Join any pending(recalc) threads in global threadpool
comphelper::ThreadPool::getSharedOptimalPool().joinAll();
bInDtorClear = true;
// first of all disable all refresh timers by deleting the control
if ( pRefreshTimerControl )
{ // To be sure there isn't anything running do it with a protector,
// this ensures also that nothing needs the control anymore.
ScRefreshTimerProtector aProt( GetRefreshTimerControlAddress() );
pRefreshTimerControl.reset();
}
mxFormulaParserPool.reset();
// Destroy the external ref mgr instance here because it has a timer
// which needs to be stopped before the app closes.
pExternalRefMgr.reset();
ScAddInAsync::RemoveDocument( this );
ScAddInListener::RemoveDocument( this );
pChartListenerCollection.reset(); // before pBASM because of potential Listener!
ClearLookupCaches(); // before pBASM because of listeners
// destroy BroadcastAreas first to avoid un-needed Single-EndListenings of Formula-Cells
pBASM.reset(); // BroadcastAreaSlotMachine
pUnoBroadcaster.reset(); // broadcasts SfxHintId::Dying again
pUnoRefUndoList.reset();
pUnoListenerCalls.reset();
Clear( true ); // true = from destructor (needed for SdrModel::ClearModel)
pValidationList.reset();
pRangeName.reset();
pDBCollection.reset();
pSelectionAttr.reset();
apTemporaryChartLock.reset();
DeleteDrawLayer();
mpPrinter.disposeAndClear();
ImplDeleteOptions();
pConsolidateDlgData.reset();
pClipData.reset();
pDetOpList.reset(); // also deletes entries
pChangeTrack.reset();
mpEditEngine.reset();
mpNoteEngine.reset();
pChangeViewSettings.reset(); // and delete
mpVirtualDevice_100th_mm.disposeAndClear();
pDPCollection.reset();
mpAnonymousDBData.reset();
// delete the EditEngine before destroying the mxPoolHelper
pCacheFieldEditEngine.reset();
if ( mxPoolHelper.is() && !bIsClip && !bIsUndo)
mxPoolHelper->SourceDocumentGone();
mxPoolHelper.clear();
pScriptTypeData.reset();
delete maNonThreaded.pRecursionHelper;
delete maThreadSpecific.pRecursionHelper;
pPreviewFont.reset();
SAL_WARN_IF( pAutoNameCache, "sc.core", "AutoNameCache still set in dtor" );
mpFormulaGroupCxt.reset();
// Purge unused items if the string pool will be still used (e.g. by undo history).
if(mpCellStringPool.use_count() > 1)
mpCellStringPool->purge();
mpCellStringPool.reset();
assert( pDelayedFormulaGrouping == nullptr );
assert( pDelayedStartListeningFormulaCells.empty());
}
void ScDocument::InitClipPtrs( ScDocument* pSourceDoc )
{
OSL_ENSURE(bIsClip, "InitClipPtrs and not bIsClip");
ScMutationGuard aGuard(this, ScMutationGuardFlags::CORE);
pValidationList.reset();
Clear();
SharePooledResources(pSourceDoc);
// conditional Formats / validations
// TODO: Copy Templates?
const ScValidationDataList* pSourceValid = pSourceDoc->pValidationList.get();
if ( pSourceValid )
pValidationList.reset(new ScValidationDataList(this, *pSourceValid));
// store Links in Stream
pClipData.reset();
if (pSourceDoc->GetDocLinkManager().hasDdeLinks())
{
pClipData.reset( new SvMemoryStream );
pSourceDoc->SaveDdeLinks(*pClipData);
}
// Options pointers exist (ImplCreateOptions) for any document.
// Must be copied for correct results in OLE objects (#i42666#).
SetDocOptions( pSourceDoc->GetDocOptions() );
SetViewOptions( pSourceDoc->GetViewOptions() );
}
SvNumberFormatter* ScDocument::GetFormatTable() const
{
assert(!IsThreadedGroupCalcInProgress());
return mxPoolHelper->GetFormTable();
}
SfxItemPool* ScDocument::GetEditPool() const
{
return mxPoolHelper->GetEditPool();
}
SfxItemPool* ScDocument::GetEnginePool() const
{
return mxPoolHelper->GetEnginePool();
}
ScFieldEditEngine& ScDocument::GetEditEngine()
{
if ( !mpEditEngine )
{
mpEditEngine.reset( new ScFieldEditEngine(this, GetEnginePool(), GetEditPool()) );
mpEditEngine->SetUpdateMode( false );
mpEditEngine->EnableUndo( false );
mpEditEngine->SetRefMapMode(MapMode(MapUnit::Map100thMM));
ApplyAsianEditSettings( *mpEditEngine );
}
return *mpEditEngine;
}
ScNoteEditEngine& ScDocument::GetNoteEngine()
{
if ( !mpNoteEngine )
{
ScMutationGuard aGuard(this, ScMutationGuardFlags::CORE);
mpNoteEngine.reset( new ScNoteEditEngine( GetEnginePool(), GetEditPool() ) );
mpNoteEngine->SetUpdateMode( false );
mpNoteEngine->EnableUndo( false );
mpNoteEngine->SetRefMapMode(MapMode(MapUnit::Map100thMM));
ApplyAsianEditSettings( *mpNoteEngine );
const SfxItemSet& rItemSet = GetDefPattern()->GetItemSet();
std::unique_ptr<SfxItemSet> pEEItemSet(new SfxItemSet( mpNoteEngine->GetEmptyItemSet() ));
ScPatternAttr::FillToEditItemSet( *pEEItemSet, rItemSet );
mpNoteEngine->SetDefaults( std::move(pEEItemSet) ); // edit engine takes ownership
}
return *mpNoteEngine;
}
void ScDocument::ResetClip( ScDocument* pSourceDoc, const ScMarkData* pMarks )
{
if (bIsClip)
{
InitClipPtrs(pSourceDoc);
for (SCTAB i = 0; i < static_cast<SCTAB>(pSourceDoc->maTabs.size()); i++)
if (pSourceDoc->maTabs[i])
if (!pMarks || pMarks->GetTableSelect(i))
{
OUString aString = pSourceDoc->maTabs[i]->GetName();
if ( i < static_cast<SCTAB>(maTabs.size()) )
{
maTabs[i].reset( new ScTable(this, i, aString) );
}
else
{
if( i > static_cast<SCTAB>(maTabs.size()) )
{
maTabs.resize(i);
}
maTabs.emplace_back(new ScTable(this, i, aString));
}
maTabs[i]->SetLayoutRTL( pSourceDoc->maTabs[i]->IsLayoutRTL() );
}
}
else
{
OSL_FAIL("ResetClip");
}
}
void ScDocument::ResetClip( ScDocument* pSourceDoc, SCTAB nTab )
{
if (bIsClip)
{
InitClipPtrs(pSourceDoc);
if (nTab >= static_cast<SCTAB>(maTabs.size()))
{
maTabs.resize(nTab+1);
}
maTabs[nTab].reset( new ScTable(this, nTab, "baeh") );
if (nTab < static_cast<SCTAB>(pSourceDoc->maTabs.size()) && pSourceDoc->maTabs[nTab])
maTabs[nTab]->SetLayoutRTL( pSourceDoc->maTabs[nTab]->IsLayoutRTL() );
}
else
{
OSL_FAIL("ResetClip");
}
}
void ScDocument::EnsureTable( SCTAB nTab )
{
bool bExtras = !bIsUndo; // Column-Widths, Row-Heights, Flags
if (o3tl::make_unsigned(nTab) >= maTabs.size())
maTabs.resize(nTab+1);
if (!maTabs[nTab])
maTabs[nTab].reset( new ScTable(this, nTab, "temp", bExtras, bExtras) );
}
ScRefCellValue ScDocument::GetRefCellValue( const ScAddress& rPos )
{
if (!TableExists(rPos.Tab()))
return ScRefCellValue(); // empty
return maTabs[rPos.Tab()]->GetRefCellValue(rPos.Col(), rPos.Row());
}
ScRefCellValue ScDocument::GetRefCellValue( const ScAddress& rPos, sc::ColumnBlockPosition& rBlockPos )
{
if (!TableExists(rPos.Tab()))
return ScRefCellValue(); // empty
return maTabs[rPos.Tab()]->GetRefCellValue(rPos.Col(), rPos.Row(), rBlockPos);
}
svl::SharedStringPool& ScDocument::GetSharedStringPool()
{
return *mpCellStringPool;
}
const svl::SharedStringPool& ScDocument::GetSharedStringPool() const
{
return *mpCellStringPool;
}
bool ScDocument::GetPrintArea( SCTAB nTab, SCCOL& rEndCol, SCROW& rEndRow,
bool bNotes ) const
{
if (ValidTab(nTab) && nTab < static_cast<SCTAB>(maTabs.size()) && maTabs[nTab])
{
bool bAny = maTabs[nTab]->GetPrintArea( rEndCol, rEndRow, bNotes );
if (mpDrawLayer)
{
ScRange aDrawRange(0,0,nTab, MaxCol(),MaxRow(),nTab);
if (DrawGetPrintArea( aDrawRange, true, true ))
{
if (aDrawRange.aEnd.Col()>rEndCol) rEndCol=aDrawRange.aEnd.Col();
if (aDrawRange.aEnd.Row()>rEndRow) rEndRow=aDrawRange.aEnd.Row();
bAny = true;
}
}
return bAny;
}
rEndCol = 0;
rEndRow = 0;
return false;
}
bool ScDocument::GetPrintAreaHor( SCTAB nTab, SCROW nStartRow, SCROW nEndRow,
SCCOL& rEndCol ) const
{
if (ValidTab(nTab) && nTab < static_cast<SCTAB>(maTabs.size()) && maTabs[nTab])
{
bool bAny = maTabs[nTab]->GetPrintAreaHor( nStartRow, nEndRow, rEndCol );
if (mpDrawLayer)
{
ScRange aDrawRange(0,nStartRow,nTab, MaxCol(),nEndRow,nTab);
if (DrawGetPrintArea( aDrawRange, true, false ))
{
if (aDrawRange.aEnd.Col()>rEndCol) rEndCol=aDrawRange.aEnd.Col();
bAny = true;
}
}
return bAny;
}
rEndCol = 0;
return false;
}
bool ScDocument::GetPrintAreaVer( SCTAB nTab, SCCOL nStartCol, SCCOL nEndCol,
SCROW& rEndRow, bool bNotes ) const
{
if (ValidTab(nTab) && nTab < static_cast<SCTAB>(maTabs.size()) && maTabs[nTab])
{
bool bAny = maTabs[nTab]->GetPrintAreaVer( nStartCol, nEndCol, rEndRow, bNotes );
if (mpDrawLayer)
{
ScRange aDrawRange(nStartCol,0,nTab, nEndCol,MaxRow(),nTab);
if (DrawGetPrintArea( aDrawRange, false, true ))
{
if (aDrawRange.aEnd.Row()>rEndRow) rEndRow=aDrawRange.aEnd.Row();
bAny = true;
}
}
return bAny;
}
rEndRow = 0;
return false;
}
bool ScDocument::GetDataStart( SCTAB nTab, SCCOL& rStartCol, SCROW& rStartRow ) const
{
if (ValidTab(nTab) && nTab < static_cast<SCTAB>(maTabs.size()) && maTabs[nTab])
{
bool bAny = maTabs[nTab]->GetDataStart( rStartCol, rStartRow );
if (mpDrawLayer)
{
ScRange aDrawRange(0,0,nTab, MaxCol(),MaxRow(),nTab);
if (DrawGetPrintArea( aDrawRange, true, true ))
{
if (aDrawRange.aStart.Col()<rStartCol) rStartCol=aDrawRange.aStart.Col();
if (aDrawRange.aStart.Row()<rStartRow) rStartRow=aDrawRange.aStart.Row();
bAny = true;
}
}
return bAny;
}
rStartCol = 0;
rStartRow = 0;
return false;
}
void ScDocument::GetTiledRenderingArea(SCTAB nTab, SCCOL& rEndCol, SCROW& rEndRow) const
{
bool bHasPrintArea = GetPrintArea(nTab, rEndCol, rEndRow, false);
// we need some reasonable minimal document size
ScViewData* pViewData = ScDocShell::GetViewData();
if (!pViewData)
{
if (!bHasPrintArea)
{
rEndCol = 20;
rEndRow = 50;
}
else
{
rEndCol += 20;
rEndRow += 50;
}
}
else if (!bHasPrintArea)
{
rEndCol = pViewData->GetMaxTiledCol();
rEndRow = pViewData->GetMaxTiledRow();
}
else
{
rEndCol = std::max(rEndCol, pViewData->GetMaxTiledCol());
rEndRow = std::max(rEndRow, pViewData->GetMaxTiledRow());
}
}
bool ScDocument::MoveTab( SCTAB nOldPos, SCTAB nNewPos, ScProgress* pProgress )
{
if (nOldPos == nNewPos)
return false;
SCTAB nTabCount = static_cast<SCTAB>(maTabs.size());
if(nTabCount < 2)
return false;
bool bValid = false;
if (ValidTab(nOldPos) && nOldPos < nTabCount )
{
if (maTabs[nOldPos])
{
sc::AutoCalcSwitch aACSwitch(*this, false);
SetNoListening( true );
if (nNewPos == SC_TAB_APPEND || nNewPos >= nTabCount)
nNewPos = nTabCount-1;
// Update Reference
// TODO: combine with UpdateReference!
sc::RefUpdateMoveTabContext aCxt( *this, nOldPos, nNewPos);
SCTAB nDz = nNewPos - nOldPos;
ScRange aSourceRange( 0,0,nOldPos, MaxCol(),MaxRow(),nOldPos );
if (pRangeName)
pRangeName->UpdateMoveTab(aCxt);
pDBCollection->UpdateMoveTab( nOldPos, nNewPos );
xColNameRanges->UpdateReference( URM_REORDER, this, aSourceRange, 0,0,nDz );
xRowNameRanges->UpdateReference( URM_REORDER, this, aSourceRange, 0,0,nDz );
if (pDPCollection)
pDPCollection->UpdateReference( URM_REORDER, aSourceRange, 0,0,nDz );
if (pDetOpList)
pDetOpList->UpdateReference( this, URM_REORDER, aSourceRange, 0,0,nDz );
UpdateChartRef( URM_REORDER,
0,0,nOldPos, MaxCol(),MaxRow(),nOldPos, 0,0,nDz );
UpdateRefAreaLinks( URM_REORDER, aSourceRange, 0,0,nDz );
if ( pValidationList )
pValidationList->UpdateMoveTab(aCxt);
if ( pUnoBroadcaster )
pUnoBroadcaster->Broadcast( ScUpdateRefHint( URM_REORDER,
aSourceRange, 0,0,nDz ) );
ScTableUniquePtr pSaveTab = std::move(maTabs[nOldPos]);
maTabs.erase(maTabs.begin()+nOldPos);
maTabs.insert(maTabs.begin()+nNewPos, std::move(pSaveTab));
for (SCTAB i = 0; i < nTabCount; i++)
if (maTabs[i])
maTabs[i]->UpdateMoveTab(aCxt, i, pProgress);
for (auto& rxTab : maTabs)
if (rxTab)
rxTab->UpdateCompile();
SetNoListening( false );
StartAllListeners();
sc::SetFormulaDirtyContext aFormulaDirtyCxt;
SetAllFormulasDirty(aFormulaDirtyCxt);
if (mpDrawLayer)
mpDrawLayer->ScMovePage( static_cast<sal_uInt16>(nOldPos), static_cast<sal_uInt16>(nNewPos) );
bValid = true;
}
}
return bValid;
}
bool ScDocument::CopyTab( SCTAB nOldPos, SCTAB nNewPos, const ScMarkData* pOnlyMarked )
{
if (SC_TAB_APPEND == nNewPos || nNewPos >= static_cast<SCTAB>(maTabs.size()))
nNewPos = static_cast<SCTAB>(maTabs.size());
OUString aName;
GetName(nOldPos, aName);
// check first if Prefix is valid; if not, then only avoid duplicates
bool bPrefix = ValidTabName( aName );
OSL_ENSURE(bPrefix, "invalid table name");
SCTAB nDummy;
CreateValidTabName(aName);
bool bValid;
if (bPrefix)
bValid = ValidNewTabName(aName);
else
bValid = !GetTable( aName, nDummy );
sc::AutoCalcSwitch aACSwitch(*this, false);
sc::RefUpdateInsertTabContext aCxt( *this, nNewPos, 1);
if (bValid)
{
if (nNewPos >= static_cast<SCTAB>(maTabs.size()))
{
nNewPos = static_cast<SCTAB>(maTabs.size());
maTabs.emplace_back(new ScTable(this, nNewPos, aName));
}
else
{
if (ValidTab(nNewPos) && (nNewPos < static_cast<SCTAB>(maTabs.size())))
{
SetNoListening( true );
ScRange aRange( 0,0,nNewPos, MaxCol(),MaxRow(),MAXTAB );
xColNameRanges->UpdateReference( URM_INSDEL, this, aRange, 0,0,1 );
xRowNameRanges->UpdateReference( URM_INSDEL, this, aRange, 0,0,1 );
if (pRangeName)
pRangeName->UpdateInsertTab(aCxt);
pDBCollection->UpdateReference(
URM_INSDEL, 0,0,nNewPos, MaxCol(),MaxRow(),MAXTAB, 0,0,1 );
if (pDPCollection)
pDPCollection->UpdateReference( URM_INSDEL, aRange, 0,0,1 );
if (pDetOpList)
pDetOpList->UpdateReference( this, URM_INSDEL, aRange, 0,0,1 );
UpdateChartRef( URM_INSDEL, 0,0,nNewPos, MaxCol(),MaxRow(),MAXTAB, 0,0,1 );
UpdateRefAreaLinks( URM_INSDEL, aRange, 0,0,1 );
if ( pUnoBroadcaster )
pUnoBroadcaster->Broadcast( ScUpdateRefHint( URM_INSDEL, aRange, 0,0,1 ) );
for (TableContainer::iterator it = maTabs.begin(); it != maTabs.end(); ++it)
if (*it && it != (maTabs.begin() + nOldPos))
(*it)->UpdateInsertTab(aCxt);
if (nNewPos <= nOldPos)
nOldPos++;
maTabs.emplace(maTabs.begin() + nNewPos, new ScTable(this, nNewPos, aName));
bValid = true;
for (TableContainer::iterator it = maTabs.begin(); it != maTabs.end(); ++it)
if (*it && it != maTabs.begin()+nOldPos && it != maTabs.begin() + nNewPos)
(*it)->UpdateCompile();
SetNoListening( false );
sc::StartListeningContext aSLCxt(*this);
for (TableContainer::iterator it = maTabs.begin(); it != maTabs.end(); ++it)
if (*it && it != maTabs.begin()+nOldPos && it != maTabs.begin()+nNewPos)
(*it)->StartListeners(aSLCxt, true);
if (pValidationList)
pValidationList->UpdateInsertTab(aCxt);
}
else
bValid = false;
}
}
if (bValid)
{
SetNoListening( true ); // not yet at CopyToTable/Insert
const bool bGlobalNamesToLocal = true;
const SCTAB nRealOldPos = (nNewPos < nOldPos) ? nOldPos - 1 : nOldPos;
const ScRangeName* pNames = GetRangeName( nOldPos);
if (pNames)
pNames->CopyUsedNames( nOldPos, nRealOldPos, nNewPos, *this, *this, bGlobalNamesToLocal);
GetRangeName()->CopyUsedNames( -1, nRealOldPos, nNewPos, *this, *this, bGlobalNamesToLocal);
sc::CopyToDocContext aCopyDocCxt(*this);
maTabs[nOldPos]->CopyToTable(aCopyDocCxt, 0, 0, MaxCol(), MaxRow(), InsertDeleteFlags::ALL,
(pOnlyMarked != nullptr), maTabs[nNewPos].get(), pOnlyMarked,
false /*bAsLink*/, true /*bColRowFlags*/, bGlobalNamesToLocal, false /*bCopyCaptions*/ );
maTabs[nNewPos]->SetTabBgColor(maTabs[nOldPos]->GetTabBgColor());
SCTAB nDz = nNewPos - nOldPos;
sc::RefUpdateContext aRefCxt(*this);
aRefCxt.meMode = URM_COPY;
aRefCxt.maRange = ScRange(0, 0, nNewPos, MaxCol(), MaxRow(), nNewPos);
aRefCxt.mnTabDelta = nDz;
maTabs[nNewPos]->UpdateReference(aRefCxt);
maTabs[nNewPos]->UpdateInsertTabAbs(nNewPos); // move all paragraphs up by one!!
maTabs[nOldPos]->UpdateInsertTab(aCxt);
maTabs[nOldPos]->UpdateCompile();
maTabs[nNewPos]->UpdateCompile( true ); // maybe already compiled in Clone, but used names need recompilation
SetNoListening( false );
sc::StartListeningContext aSLCxt(*this);
maTabs[nOldPos]->StartListeners(aSLCxt, true);
maTabs[nNewPos]->StartListeners(aSLCxt, true);
sc::SetFormulaDirtyContext aFormulaDirtyCxt;
SetAllFormulasDirty(aFormulaDirtyCxt);
if (mpDrawLayer) // Skip cloning Note caption object
// page is already created in ScTable ctor
mpDrawLayer->ScCopyPage( static_cast<sal_uInt16>(nOldPos), static_cast<sal_uInt16>(nNewPos) );
if (pDPCollection)
pDPCollection->CopyToTab(nOldPos, nNewPos);
maTabs[nNewPos]->SetPageStyle( maTabs[nOldPos]->GetPageStyle() );
maTabs[nNewPos]->SetPendingRowHeights( maTabs[nOldPos]->IsPendingRowHeights() );
// Copy the custom print range if exists.
maTabs[nNewPos]->CopyPrintRange(*maTabs[nOldPos]);
// Copy the RTL settings
maTabs[nNewPos]->SetLayoutRTL(maTabs[nOldPos]->IsLayoutRTL());
maTabs[nNewPos]->SetLoadingRTL(maTabs[nOldPos]->IsLoadingRTL());
// Finally copy the note captions, which need
// 1. the updated source ScColumn::nTab members if nNewPos <= nOldPos
// 2. row heights and column widths of the destination
// 3. RTL settings of the destination
maTabs[nOldPos]->CopyCaptionsToTable( 0, 0, MaxCol(), MaxRow(), maTabs[nNewPos].get(), true /*bCloneCaption*/);
}
return bValid;
}
sal_uLong ScDocument::TransferTab( ScDocument* pSrcDoc, SCTAB nSrcPos,
SCTAB nDestPos, bool bInsertNew,
bool bResultsOnly )
{
sal_uLong nRetVal = 1; // 0 => error 1 = ok
// 3 => NameBox
// 4 => both
if (pSrcDoc->mpShell->GetMedium())
{
pSrcDoc->maFileURL = pSrcDoc->mpShell->GetMedium()->GetURLObject().GetMainURL(INetURLObject::DecodeMechanism::ToIUri);
// for unsaved files use the title name and adjust during save of file
if (pSrcDoc->maFileURL.isEmpty())
pSrcDoc->maFileURL = pSrcDoc->mpShell->GetName();
}
else
{
pSrcDoc->maFileURL = pSrcDoc->mpShell->GetName();
}
bool bValid = true;
if (bInsertNew) // re-insert
{
OUString aName;
pSrcDoc->GetName(nSrcPos, aName);
CreateValidTabName(aName);
bValid = InsertTab(nDestPos, aName);
// Copy the RTL settings
maTabs[nDestPos]->SetLayoutRTL(pSrcDoc->maTabs[nSrcPos]->IsLayoutRTL());
maTabs[nDestPos]->SetLoadingRTL(pSrcDoc->maTabs[nSrcPos]->IsLoadingRTL());
}
else // replace existing tables
{
if (ValidTab(nDestPos) && nDestPos < static_cast<SCTAB>(maTabs.size()) && maTabs[nDestPos])
{
maTabs[nDestPos]->DeleteArea( 0,0, MaxCol(),MaxRow(), InsertDeleteFlags::ALL );
}
else
bValid = false;
}
if (bValid)
{
bool bOldAutoCalcSrc = false;
bool bOldAutoCalc = GetAutoCalc();
SetAutoCalc( false ); // avoid repeated calculations
SetNoListening( true );
if ( bResultsOnly )
{
bOldAutoCalcSrc = pSrcDoc->GetAutoCalc();
pSrcDoc->SetAutoCalc( true ); // in case something needs calculation
}
{
NumFmtMergeHandler aNumFmtMergeHdl(this, pSrcDoc);
sc::CopyToDocContext aCxt(*this);
nDestPos = std::min(nDestPos, static_cast<SCTAB>(GetTableCount() - 1));
{ // scope for bulk broadcast
ScBulkBroadcast aBulkBroadcast( pBASM.get(), SfxHintId::ScDataChanged);
if (!bResultsOnly)
{
const bool bGlobalNamesToLocal = false;
const ScRangeName* pNames = pSrcDoc->GetRangeName( nSrcPos);
if (pNames)
pNames->CopyUsedNames( nSrcPos, nSrcPos, nDestPos, *pSrcDoc, *this, bGlobalNamesToLocal);
pSrcDoc->GetRangeName()->CopyUsedNames( -1, nSrcPos, nDestPos, *pSrcDoc, *this, bGlobalNamesToLocal);
}
pSrcDoc->maTabs[nSrcPos]->CopyToTable(aCxt, 0, 0, MaxCol(), MaxRow(),
( bResultsOnly ? InsertDeleteFlags::ALL & ~InsertDeleteFlags::FORMULA : InsertDeleteFlags::ALL),
false, maTabs[nDestPos].get(), /*pMarkData*/nullptr, /*bAsLink*/false, /*bColRowFlags*/true,
/*bGlobalNamesToLocal*/false, /*bCopyCaptions*/true );
}
}
maTabs[nDestPos]->SetTabNo(nDestPos);
maTabs[nDestPos]->SetTabBgColor(pSrcDoc->maTabs[nSrcPos]->GetTabBgColor());
if ( !bResultsOnly )
{
sc::RefUpdateContext aRefCxt(*this);
aRefCxt.meMode = URM_COPY;
aRefCxt.maRange = ScRange(0, 0, nDestPos, MaxCol(), MaxRow(), nDestPos);
aRefCxt.mnTabDelta = nDestPos - nSrcPos;
maTabs[nDestPos]->UpdateReference(aRefCxt);
// Readjust self-contained absolute references to this sheet
maTabs[nDestPos]->TestTabRefAbs(nSrcPos);
sc::CompileFormulaContext aFormulaCxt(this);
maTabs[nDestPos]->CompileAll(aFormulaCxt);
}
SetNoListening( false );
if ( !bResultsOnly )
{
sc::StartListeningContext aSLCxt(*this);
maTabs[nDestPos]->StartListeners(aSLCxt, true);
}
SetDirty( ScRange( 0, 0, nDestPos, MaxCol(), MaxRow(), nDestPos), false);
if ( bResultsOnly )
pSrcDoc->SetAutoCalc( bOldAutoCalcSrc );
SetAutoCalc( bOldAutoCalc );
// copy Drawing
if (bInsertNew)
TransferDrawPage( pSrcDoc, nSrcPos, nDestPos );
maTabs[nDestPos]->SetPendingRowHeights( pSrcDoc->maTabs[nSrcPos]->IsPendingRowHeights() );
}
if (!bValid)
nRetVal = 0;
bool bVbaEnabled = IsInVBAMode();
if ( bVbaEnabled )
{
SfxObjectShell* pSrcShell = pSrcDoc->GetDocumentShell();
if ( pSrcShell )
{
OUString aLibName("Standard");
const BasicManager *pBasicManager = pSrcShell->GetBasicManager();
if (pBasicManager && !pBasicManager->GetName().isEmpty())
{
aLibName = pSrcShell->GetBasicManager()->GetName();
}
OUString sSource;
uno::Reference< script::XLibraryContainer > xLibContainer = pSrcShell->GetBasicContainer();
uno::Reference< container::XNameContainer > xLib;
if( xLibContainer.is() )
{
uno::Any aLibAny = xLibContainer->getByName(aLibName);
aLibAny >>= xLib;
}
if( xLib.is() )
{
OUString sSrcCodeName;
pSrcDoc->GetCodeName( nSrcPos, sSrcCodeName );
OUString sRTLSource;
xLib->getByName( sSrcCodeName ) >>= sRTLSource;
sSource = sRTLSource;
}
VBA_InsertModule( *this, nDestPos, sSource );
}
}
return nRetVal;
}
void ScDocument::SetError( SCCOL nCol, SCROW nRow, SCTAB nTab, const FormulaError nError)
{
if (ValidTab(nTab) && nTab < static_cast<SCTAB>(maTabs.size()))
if (maTabs[nTab])
maTabs[nTab]->SetError( nCol, nRow, nError );
}
void ScDocument::SetFormula(
const ScAddress& rPos, const ScTokenArray& rArray )
{
if (!TableExists(rPos.Tab()))
return;
maTabs[rPos.Tab()]->SetFormula(rPos.Col(), rPos.Row(), rArray, formula::FormulaGrammar::GRAM_DEFAULT);
}
void ScDocument::SetFormula(
const ScAddress& rPos, const OUString& rFormula, formula::FormulaGrammar::Grammar eGram )
{
if (!TableExists(rPos.Tab()))
return;
maTabs[rPos.Tab()]->SetFormula(rPos.Col(), rPos.Row(), rFormula, eGram);
}
ScFormulaCell* ScDocument::SetFormulaCell( const ScAddress& rPos, ScFormulaCell* pCell )
{
if (!TableExists(rPos.Tab()))
{
delete pCell;
return nullptr;
}
return maTabs[rPos.Tab()]->SetFormulaCell(rPos.Col(), rPos.Row(), pCell);
}
bool ScDocument::SetFormulaCells( const ScAddress& rPos, std::vector<ScFormulaCell*>& rCells )
{
if (rCells.empty())
return false;
ScTable* pTab = FetchTable(rPos.Tab());
if (!pTab)
return false;
return pTab->SetFormulaCells(rPos.Col(), rPos.Row(), rCells);
}
void ScDocument::SetConsolidateDlgData( std::unique_ptr<ScConsolidateParam> pData )
{
pConsolidateDlgData = std::move(pData);
}
void ScDocument::SetChangeViewSettings(const ScChangeViewSettings& rNew)
{
if (pChangeViewSettings==nullptr)
pChangeViewSettings.reset( new ScChangeViewSettings );
*pChangeViewSettings=rNew;
}
std::unique_ptr<ScFieldEditEngine> ScDocument::CreateFieldEditEngine()
{
std::unique_ptr<ScFieldEditEngine> pNewEditEngine;
if (!pCacheFieldEditEngine)
{
pNewEditEngine.reset( new ScFieldEditEngine(
this, GetEnginePool(), GetEditPool(), false) );
}
else
{
if ( !bImportingXML )
{
// #i66209# previous use might not have restored update mode,
// ensure same state as for a new EditEngine (UpdateMode = true)
if ( !pCacheFieldEditEngine->GetUpdateMode() )
pCacheFieldEditEngine->SetUpdateMode(true);
}
pNewEditEngine = std::move(pCacheFieldEditEngine);
}
return pNewEditEngine;
}
void ScDocument::DisposeFieldEditEngine(std::unique_ptr<ScFieldEditEngine>& rpEditEngine)
{
if (!pCacheFieldEditEngine && rpEditEngine)
{
pCacheFieldEditEngine = std::move( rpEditEngine );
pCacheFieldEditEngine->Clear();
}
else
rpEditEngine.reset();
}
ScRecursionHelper* ScDocument::CreateRecursionHelperInstance()
{
return new ScRecursionHelper;
}
ScLookupCache & ScDocument::GetLookupCache( const ScRange & rRange, ScInterpreterContext* pContext )
{
ScLookupCache* pCache = nullptr;
ScLookupCacheMap*& rpCacheMap = pContext->mScLookupCache;
if (!rpCacheMap)
rpCacheMap = new ScLookupCacheMap;
// insert with temporary value to avoid doing two lookups
auto [findIt, bInserted] = rpCacheMap->aCacheMap.emplace(rRange, nullptr);
if (bInserted)
{
findIt->second = std::make_unique<ScLookupCache>(this, rRange, *rpCacheMap);
pCache = findIt->second.get();
// The StartListeningArea() call is not thread-safe, as all threads
// would access the same SvtBroadcaster.
osl::MutexGuard guard( mScLookupMutex );
StartListeningArea(rRange, false, pCache);
}
else
pCache = (*findIt).second.get();
return *pCache;
}
void ScDocument::RemoveLookupCache( ScLookupCache & rCache )
{
// Data changes leading to this should never happen during calculation (they are either
// a result of user input or recalc). If it turns out this can be the case, locking is needed
// here and also in ScLookupCache::Notify().
assert(!IsThreadedGroupCalcInProgress());
auto & cacheMap = rCache.getCacheMap();
auto it(cacheMap.aCacheMap.find(rCache.getRange()));
if (it != cacheMap.aCacheMap.end())
{
ScLookupCache* pCache = (*it).second.release();
cacheMap.aCacheMap.erase(it);
assert(!IsThreadedGroupCalcInProgress()); // EndListeningArea() is not thread-safe
EndListeningArea(pCache->getRange(), false, &rCache);
return;
}
OSL_FAIL( "ScDocument::RemoveLookupCache: range not found in hash map");
}
void ScDocument::ClearLookupCaches()
{
assert(!IsThreadedGroupCalcInProgress());
DELETEZ(GetNonThreadedContext().mScLookupCache);
// Clear lookup cache in all interpreter-contexts in the (threaded/non-threaded) pools.
ScInterpreterContextPool::ClearLookupCaches();
}
bool ScDocument::IsCellInChangeTrack(const ScAddress &cell,Color *pColCellBorder)
{
ScChangeTrack* pTrack = GetChangeTrack();
ScChangeViewSettings* pSettings = GetChangeViewSettings();
if ( !pTrack || !pTrack->GetFirst() || !pSettings || !pSettings->ShowChanges() )
return false; // missing or turned-off
ScActionColorChanger aColorChanger(*pTrack);
// Clipping happens from outside
//! TODO: without Clipping; only paint affected cells ??!??!?
const ScChangeAction* pAction = pTrack->GetFirst();
while (pAction)
{
ScChangeActionType eType;
if ( pAction->IsVisible() )
{
eType = pAction->GetType();
const ScBigRange& rBig = pAction->GetBigRange();
if ( rBig.aStart.Tab() == cell.Tab())
{
ScRange aRange = rBig.MakeRange();
if ( eType == SC_CAT_DELETE_ROWS )
aRange.aEnd.SetRow( aRange.aStart.Row() );
else if ( eType == SC_CAT_DELETE_COLS )
aRange.aEnd.SetCol( aRange.aStart.Col() );
if (ScViewUtil::IsActionShown( *pAction, *pSettings, *this ) )
{
if (aRange.In(cell))
{
if (pColCellBorder != nullptr)
{
aColorChanger.Update( *pAction );
Color aColor( aColorChanger.GetColor() );
*pColCellBorder = aColor;
}
return true;
}
}
}
if ( eType == SC_CAT_MOVE &&
static_cast<const ScChangeActionMove*>(pAction)->
GetFromRange().aStart.Tab() == cell.Col() )
{
ScRange aRange = static_cast<const ScChangeActionMove*>(pAction)->
GetFromRange().MakeRange();
if (ScViewUtil::IsActionShown( *pAction, *pSettings, *this ) )
{
if (aRange.In(cell))
{
if (pColCellBorder != nullptr)
{
aColorChanger.Update( *pAction );
Color aColor( aColorChanger.GetColor() );
*pColCellBorder = aColor;
}
return true;
}
}
}
}
pAction = pAction->GetNext();
}
return false;
}
void ScDocument::GetCellChangeTrackNote( const ScAddress &aCellPos, OUString &aTrackText,bool &bLeftEdge)
{
aTrackText.clear();
// Change-Tracking
ScChangeTrack* pTrack = GetChangeTrack();
ScChangeViewSettings* pSettings = GetChangeViewSettings();
if ( pTrack && pTrack->GetFirst() && pSettings && pSettings->ShowChanges())
{
const ScChangeAction* pFound = nullptr;
const ScChangeAction* pFoundContent = nullptr;
const ScChangeAction* pFoundMove = nullptr;
const ScChangeAction* pAction = pTrack->GetFirst();
while (pAction)
{
if ( pAction->IsVisible() &&
ScViewUtil::IsActionShown( *pAction, *pSettings, *this ) )
{
ScChangeActionType eType = pAction->GetType();
const ScBigRange& rBig = pAction->GetBigRange();
if ( rBig.aStart.Tab() == aCellPos.Tab())
{
ScRange aRange = rBig.MakeRange();
if ( eType == SC_CAT_DELETE_ROWS )
aRange.aEnd.SetRow( aRange.aStart.Row() );
else if ( eType == SC_CAT_DELETE_COLS )
aRange.aEnd.SetCol( aRange.aStart.Col() );
if ( aRange.In( aCellPos ) )
{
pFound = pAction; // the last wins
switch ( eType )
{
case SC_CAT_CONTENT :
pFoundContent = pAction;
break;
case SC_CAT_MOVE :
pFoundMove = pAction;
break;
default:
break;
}
}
}
if ( eType == SC_CAT_MOVE )
{
ScRange aRange =
static_cast<const ScChangeActionMove*>(pAction)->
GetFromRange().MakeRange();
if ( aRange.In( aCellPos ) )
{
pFound = pAction;
}
}
}
pAction = pAction->GetNext();
}
if ( pFound )
{
if ( pFoundContent && pFound->GetType() != SC_CAT_CONTENT )
pFound = pFoundContent; // Content wins
if ( pFoundMove && pFound->GetType() != SC_CAT_MOVE &&
pFoundMove->GetActionNumber() >
pFound->GetActionNumber() )
pFound = pFoundMove; // Move wins
// for deleted columns: arrow on left side of row
if ( pFound->GetType() == SC_CAT_DELETE_COLS )
bLeftEdge = true;
DateTime aDT = pFound->GetDateTime();
aTrackText = pFound->GetUser();
aTrackText += ", ";
aTrackText += ScGlobal::getLocaleDataPtr()->getDate(aDT);
aTrackText += " ";
aTrackText += ScGlobal::getLocaleDataPtr()->getTime(aDT);
aTrackText += ":\n";
OUString aComStr = pFound->GetComment();
if(!aComStr.isEmpty())
{
aTrackText += aComStr;
aTrackText += "\n( ";
}
pFound->GetDescription( aTrackText, this );
if (!aComStr.isEmpty())
{
aTrackText += ")";
}
}
}
}
void ScDocument::SetPreviewFont( std::unique_ptr<SfxItemSet> pFont )
{
pPreviewFont = std::move(pFont);
}
void ScDocument::SetPreviewSelection( const ScMarkData& rSel )
{
maPreviewSelection = rSel;
}
SfxItemSet* ScDocument::GetPreviewFont( SCCOL nCol, SCROW nRow, SCTAB nTab )
{
SfxItemSet* pRet = nullptr;
if ( pPreviewFont )
{
ScMarkData aSel = GetPreviewSelection();
if ( aSel.IsCellMarked( nCol, nRow ) && aSel.GetFirstSelected() == nTab )
pRet = pPreviewFont.get();
}
return pRet;
}
ScStyleSheet* ScDocument::GetPreviewCellStyle( SCCOL nCol, SCROW nRow, SCTAB nTab )
{
ScStyleSheet* pRet = nullptr;
ScMarkData aSel = GetPreviewSelection();
if ( pPreviewCellStyle && aSel.IsCellMarked( nCol, nRow ) && aSel.GetFirstSelected() == nTab )
pRet = pPreviewCellStyle;
return pRet;
}
sc::IconSetBitmapMap& ScDocument::GetIconSetBitmapMap()
{
if (!m_pIconSetBitmapMap)
{
m_pIconSetBitmapMap.reset(new sc::IconSetBitmapMap);
}
return *m_pIconSetBitmapMap;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|