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
|
/* -*- 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 ---------------------------------------------------------------
#include "xmlcelli.hxx"
#include "xmlimprt.hxx"
#include "xmltabi.hxx"
#include "xmlstyli.hxx"
#include "xmlannoi.hxx"
#include "global.hxx"
#include "document.hxx"
#include "cellsuno.hxx"
#include "docuno.hxx"
#include "unonames.hxx"
#include "postit.hxx"
#include "sheetdata.hxx"
#include "XMLTableShapeImportHelper.hxx"
#include "XMLTextPContext.hxx"
#include "XMLStylesImportHelper.hxx"
#include "arealink.hxx"
#include <sfx2/linkmgr.hxx>
#include "convuno.hxx"
#include "XMLConverter.hxx"
#include "scerrors.hxx"
#include "editutil.hxx"
#include "cell.hxx"
#include <xmloff/xmltkmap.hxx>
#include <xmloff/xmltoken.hxx>
#include <xmloff/nmspmap.hxx>
#include <xmloff/xmluconv.hxx>
#include <xmloff/families.hxx>
#include <xmloff/numehelp.hxx>
#include <xmloff/xmlnmspe.hxx>
#include <svl/zforlist.hxx>
#include <svx/svdocapt.hxx>
#include <editeng/outlobj.hxx>
#include <editeng/editobj.hxx>
#include <svx/unoapi.hxx>
#include <svl/languageoptions.hxx>
#include <sax/tools/converter.hxx>
#include <com/sun/star/frame/XModel.hpp>
#include <com/sun/star/text/XText.hpp>
#include <com/sun/star/sheet/XSpreadsheets.hpp>
#include <com/sun/star/sheet/XSpreadsheet.hpp>
#include <com/sun/star/sheet/XCellRangeAddressable.hpp>
#include <com/sun/star/util/XMergeable.hpp>
#include <com/sun/star/sheet/XSheetCondition.hpp>
#include <com/sun/star/table/XCellRange.hpp>
#include <com/sun/star/table/CellAddress.hpp>
#include <com/sun/star/util/NumberFormat.hpp>
#include <com/sun/star/util/XNumberFormatsSupplier.hpp>
#include <com/sun/star/util/XNumberFormatTypes.hpp>
#include <com/sun/star/util/Date.hpp>
#include <com/sun/star/lang/Locale.hpp>
#include <com/sun/star/text/ControlCharacter.hpp>
#include <rtl/ustrbuf.hxx>
#include <tools/date.hxx>
#include <i18npool/lang.h>
#include <comphelper/extract.hxx>
#define SC_CURRENCYSYMBOL "CurrencySymbol"
using namespace com::sun::star;
using namespace xmloff::token;
using rtl::OUString;
//------------------------------------------------------------------
ScXMLTableRowCellContext::ScXMLTableRowCellContext( ScXMLImport& rImport,
sal_uInt16 nPrfx,
const ::rtl::OUString& rLName,
const ::com::sun::star::uno::Reference<
::com::sun::star::xml::sax::XAttributeList>& xAttrList,
const bool bTempIsCovered,
const sal_Int32 nTempRepeatedRows ) :
SvXMLImportContext( rImport, nPrfx, rLName ),
pContentValidationName(NULL),
pDetectiveObjVec(NULL),
pCellRangeSource(NULL),
fValue(0.0),
nMergedRows(1),
nMergedCols(1),
nRepeatedRows(nTempRepeatedRows),
nCellsRepeated(1),
rXMLImport((ScXMLImport&)rImport),
eGrammar( formula::FormulaGrammar::GRAM_STORAGE_DEFAULT),
nCellType(util::NumberFormat::TEXT),
bIsMerged(false),
bIsMatrix(false),
bHasSubTable(false),
bIsCovered(bTempIsCovered),
bIsEmpty(true),
bHasTextImport(false),
bIsFirstTextImport(false),
bSolarMutexLocked(false),
bFormulaTextResult(false)
{
rXMLImport.SetRemoveLastChar(false);
rXMLImport.GetTables().AddColumn(bTempIsCovered);
const sal_Int16 nAttrCount = xAttrList.is() ? xAttrList->getLength() : 0;
rtl::OUString aLocalName;
rtl::OUString* pStyleName = NULL;
rtl::OUString* pCurrencySymbol = NULL;
const SvXMLTokenMap& rTokenMap = rImport.GetTableRowCellAttrTokenMap();
for (sal_Int16 i = 0; i < nAttrCount; ++i)
{
sal_uInt16 nAttrPrefix = rImport.GetNamespaceMap().GetKeyByAttrName(
xAttrList->getNameByIndex(i), &aLocalName);
const rtl::OUString& sValue = xAttrList->getValueByIndex(i);
sal_uInt16 nToken = rTokenMap.Get(nAttrPrefix, aLocalName);
switch (nToken)
{
case XML_TOK_TABLE_ROW_CELL_ATTR_STYLE_NAME:
pStyleName = new rtl::OUString(sValue);
break;
case XML_TOK_TABLE_ROW_CELL_ATTR_CONTENT_VALIDATION_NAME:
OSL_ENSURE(!pContentValidationName, "here should be only one Validation Name");
pContentValidationName = new rtl::OUString(sValue);
break;
case XML_TOK_TABLE_ROW_CELL_ATTR_SPANNED_ROWS:
bIsMerged = true;
nMergedRows = sValue.toInt32();
break;
case XML_TOK_TABLE_ROW_CELL_ATTR_SPANNED_COLS:
bIsMerged = true;
nMergedCols = sValue.toInt32();
break;
case XML_TOK_TABLE_ROW_CELL_ATTR_SPANNED_MATRIX_COLS:
bIsMatrix = true;
nMatrixCols = sValue.toInt32();
break;
case XML_TOK_TABLE_ROW_CELL_ATTR_SPANNED_MATRIX_ROWS:
bIsMatrix = true;
nMatrixRows = sValue.toInt32();
break;
case XML_TOK_TABLE_ROW_CELL_ATTR_REPEATED:
nCellsRepeated = std::max( sValue.toInt32(), (sal_Int32) 1 );
break;
case XML_TOK_TABLE_ROW_CELL_ATTR_VALUE_TYPE:
nCellType = GetScImport().GetCellType(sValue);
bIsEmpty = false;
break;
case XML_TOK_TABLE_ROW_CELL_ATTR_VALUE:
{
if (sValue.getLength())
{
::sax::Converter::convertDouble(fValue, sValue);
bIsEmpty = false;
}
}
break;
case XML_TOK_TABLE_ROW_CELL_ATTR_DATE_VALUE:
{
if (sValue.getLength() && rXMLImport.SetNullDateOnUnitConverter())
{
rXMLImport.GetMM100UnitConverter().convertDateTime(fValue, sValue);
bIsEmpty = false;
}
}
break;
case XML_TOK_TABLE_ROW_CELL_ATTR_TIME_VALUE:
{
if (sValue.getLength())
{
::sax::Converter::convertDuration(fValue, sValue);
bIsEmpty = false;
}
}
break;
case XML_TOK_TABLE_ROW_CELL_ATTR_STRING_VALUE:
{
if (sValue.getLength())
{
OSL_ENSURE(!pOUTextValue, "here should be only one string value");
pOUTextValue.reset(sValue);
bIsEmpty = false;
}
}
break;
case XML_TOK_TABLE_ROW_CELL_ATTR_BOOLEAN_VALUE:
{
if (sValue.getLength())
{
if ( IsXMLToken(sValue, XML_TRUE) )
fValue = 1.0;
else if ( IsXMLToken(sValue, XML_FALSE) )
fValue = 0.0;
else
::sax::Converter::convertDouble(fValue, sValue);
bIsEmpty = false;
}
}
break;
case XML_TOK_TABLE_ROW_CELL_ATTR_FORMULA:
{
if (sValue.getLength())
{
OSL_ENSURE(!pOUFormula, "here should be only one formula");
rtl::OUString aFormula, aFormulaNmsp;
rXMLImport.ExtractFormulaNamespaceGrammar( aFormula, aFormulaNmsp, eGrammar, sValue );
pOUFormula.reset( FormulaWithNamespace( aFormula, aFormulaNmsp ) );
}
}
break;
case XML_TOK_TABLE_ROW_CELL_ATTR_CURRENCY:
pCurrencySymbol = new rtl::OUString(sValue);
break;
default:
;
}
}
if (pOUFormula)
{
if (nCellType == util::NumberFormat::TEXT)
bFormulaTextResult = true;
nCellType = util::NumberFormat::UNDEFINED;
}
rXMLImport.GetStylesImportHelper()->SetAttributes(pStyleName, pCurrencySymbol, nCellType);
}
ScXMLTableRowCellContext::~ScXMLTableRowCellContext()
{
if (pContentValidationName)
delete pContentValidationName;
if (pDetectiveObjVec)
delete pDetectiveObjVec;
if (pCellRangeSource)
delete pCellRangeSource;
}
void ScXMLTableRowCellContext::LockSolarMutex()
{
if (!bSolarMutexLocked)
{
GetScImport().LockSolarMutex();
bSolarMutexLocked = true;
}
}
void ScXMLTableRowCellContext::UnlockSolarMutex()
{
if (bSolarMutexLocked)
{
GetScImport().UnlockSolarMutex();
bSolarMutexLocked = false;
}
}
void ScXMLTableRowCellContext::SetCursorOnTextImport(const rtl::OUString& rOUTempText)
{
com::sun::star::table::CellAddress aCellPos = rXMLImport.GetTables().GetRealCellPos();
if (CellExists(aCellPos))
{
uno::Reference<table::XCellRange> xCellRange(rXMLImport.GetTables().GetCurrentXCellRange());
if (xCellRange.is())
{
xBaseCell.set(xCellRange->getCellByPosition(aCellPos.Column, aCellPos.Row));
if (xBaseCell.is())
{
xLockable.set(xBaseCell, uno::UNO_QUERY);
if (xLockable.is())
xLockable->addActionLock();
uno::Reference<text::XText> xText(xBaseCell, uno::UNO_QUERY);
if (xText.is())
{
uno::Reference<text::XTextCursor> xTextCursor(xText->createTextCursor());
if (xTextCursor.is())
{
xTextCursor->setString(rOUTempText);
xTextCursor->gotoEnd(false);
rXMLImport.GetTextImport()->SetCursor(xTextCursor);
}
}
}
}
}
else
{
OSL_FAIL("this method should only be called for a existing cell");
}
}
SvXMLImportContext *ScXMLTableRowCellContext::CreateChildContext( sal_uInt16 nPrefix,
const ::rtl::OUString& rLName,
const ::com::sun::star::uno::Reference<
::com::sun::star::xml::sax::XAttributeList>& xAttrList )
{
SvXMLImportContext *pContext = 0;
const SvXMLTokenMap& rTokenMap = rXMLImport.GetTableRowCellElemTokenMap();
bool bTextP(false);
switch( rTokenMap.Get( nPrefix, rLName ) )
{
case XML_TOK_TABLE_ROW_CELL_P:
{
bIsEmpty = false;
bTextP = true;
com::sun::star::table::CellAddress aCellPos = rXMLImport.GetTables().GetRealCellPos();
if (((nCellType == util::NumberFormat::TEXT) || bFormulaTextResult) &&
!rXMLImport.GetTables().IsPartOfMatrix(aCellPos.Column, aCellPos.Row))
{
if (!bHasTextImport)
{
bIsFirstTextImport = true;
bHasTextImport = true;
pContext = new ScXMLTextPContext(rXMLImport, nPrefix, rLName, xAttrList, this);
}
else
{
// com::sun::star::table::CellAddress aCellPos = rXMLImport.GetTables().GetRealCellPos();
if (CellExists(aCellPos))
{
if (bIsFirstTextImport && !rXMLImport.GetRemoveLastChar())
{
if (pOUTextContent)
{
SetCursorOnTextImport(*pOUTextContent);
pOUTextContent.reset();
}
else
SetCursorOnTextImport(rtl::OUString());
rXMLImport.SetRemoveLastChar(true);
uno::Reference < text::XTextCursor > xTextCursor(rXMLImport.GetTextImport()->GetCursor());
if (xTextCursor.is())
{
uno::Reference < text::XText > xText (xTextCursor->getText());
uno::Reference < text::XTextRange > xTextRange (xTextCursor, uno::UNO_QUERY);
if (xText.is() && xTextRange.is())
xText->insertControlCharacter(xTextRange, text::ControlCharacter::PARAGRAPH_BREAK, false);
}
}
pContext = rXMLImport.GetTextImport()->CreateTextChildContext(
rXMLImport, nPrefix, rLName, xAttrList);
bIsFirstTextImport = false;
}
}
}
}
break;
case XML_TOK_TABLE_ROW_CELL_TABLE:
{
const sal_Int16 nAttrCount = xAttrList.is() ? xAttrList->getLength() : 0;
rtl::OUString aLocalName;
for( sal_Int16 i=0; i < nAttrCount; i++ )
{
sal_uInt16 nAttrPrefix = rXMLImport.GetNamespaceMap().GetKeyByAttrName(
xAttrList->getNameByIndex( i ), &aLocalName );
if ( nAttrPrefix == XML_NAMESPACE_TABLE
&& IsXMLToken(aLocalName, XML_IS_SUB_TABLE))
{
bHasSubTable = IsXMLToken(xAttrList->getValueByIndex( i ), XML_TRUE);
}
}
OSL_ENSURE(bHasSubTable, "it should be a subtable");
pContext = new ScXMLTableContext( rXMLImport , nPrefix,
rLName, xAttrList,
true, nMergedCols);
nMergedCols = 1;
bIsMerged = false;
}
break;
case XML_TOK_TABLE_ROW_CELL_ANNOTATION:
{
bIsEmpty = false;
OSL_ENSURE( !mxAnnotationData.get(), "ScXMLTableRowCellContext::CreateChildContext - multiple annotations in one cell" );
mxAnnotationData.reset( new ScXMLAnnotationData );
pContext = new ScXMLAnnotationContext( rXMLImport, nPrefix, rLName,
xAttrList, *mxAnnotationData, this);
}
break;
case XML_TOK_TABLE_ROW_CELL_DETECTIVE:
{
bIsEmpty = false;
if (!pDetectiveObjVec)
pDetectiveObjVec = new ScMyImpDetectiveObjVec();
pContext = new ScXMLDetectiveContext(
rXMLImport, nPrefix, rLName, pDetectiveObjVec );
}
break;
case XML_TOK_TABLE_ROW_CELL_CELL_RANGE_SOURCE:
{
bIsEmpty = false;
if (!pCellRangeSource)
pCellRangeSource = new ScMyImpCellRangeSource();
pContext = new ScXMLCellRangeSourceContext(
rXMLImport, nPrefix, rLName, xAttrList, pCellRangeSource );
}
break;
}
if (!pContext && !bTextP)
{
com::sun::star::table::CellAddress aCellPos = rXMLImport.GetTables().GetRealCellPos();
uno::Reference<drawing::XShapes> xShapes (rXMLImport.GetTables().GetCurrentXShapes());
if (xShapes.is())
{
if (aCellPos.Column > MAXCOL)
aCellPos.Column = MAXCOL;
if (aCellPos.Row > MAXROW)
aCellPos.Row = MAXROW;
XMLTableShapeImportHelper* pTableShapeImport = (XMLTableShapeImportHelper*)rXMLImport.GetShapeImport().get();
pTableShapeImport->SetOnTable(false);
pTableShapeImport->SetCell(aCellPos);
pContext = rXMLImport.GetShapeImport()->CreateGroupChildContext(
rXMLImport, nPrefix, rLName, xAttrList, xShapes);
if (pContext)
{
bIsEmpty = false;
rXMLImport.ProgressBarIncrement(false);
}
}
}
if( !pContext )
pContext = new SvXMLImportContext( GetImport(), nPrefix, rLName );
return pContext;
}
bool ScXMLTableRowCellContext::IsMerged (const uno::Reference <table::XCellRange>& xCellRange, const sal_Int32 nCol, const sal_Int32 nRow,
table::CellRangeAddress& aCellAddress) const
{
table::CellAddress aCell; // don't need to set the sheet, because every sheet can contain the same count of cells.
aCell.Column = nCol;
aCell.Row = nRow;
if (CellExists(aCell))
{
uno::Reference<sheet::XSheetCellRange> xMergeSheetCellRange (xCellRange->getCellRangeByPosition(nCol,nRow,nCol,nRow), uno::UNO_QUERY);
uno::Reference<sheet::XSpreadsheet> xTable (xMergeSheetCellRange->getSpreadsheet());
uno::Reference<sheet::XSheetCellCursor> xMergeSheetCursor (xTable->createCursorByRange(xMergeSheetCellRange));
if (xMergeSheetCursor.is())
{
xMergeSheetCursor->collapseToMergedArea();
uno::Reference<sheet::XCellRangeAddressable> xMergeCellAddress (xMergeSheetCursor, uno::UNO_QUERY);
if (xMergeCellAddress.is())
{
aCellAddress = xMergeCellAddress->getRangeAddress();
if (aCellAddress.StartColumn == nCol && aCellAddress.EndColumn == nCol &&
aCellAddress.StartRow == nRow && aCellAddress.EndRow == nRow)
return false;
else
return true;
}
}
}
return false;
}
void ScXMLTableRowCellContext::DoMerge(const com::sun::star::table::CellAddress& aCellPos,
const sal_Int32 nCols, const sal_Int32 nRows)
{
if (CellExists(aCellPos))
{
uno::Reference<table::XCellRange> xCellRange(rXMLImport.GetTables().GetCurrentXCellRange());
if ( xCellRange.is() )
{
// Stored merge range may actually be of a larger extend than what
// we support, in which case getCellRangeByPosition() throws
// IndexOutOfBoundsException. Do nothing then.
try
{
table::CellRangeAddress aCellAddress;
if (IsMerged(xCellRange, aCellPos.Column, aCellPos.Row, aCellAddress))
{
//unmerge
uno::Reference <util::XMergeable> xMergeable (xCellRange->getCellRangeByPosition(aCellAddress.StartColumn, aCellAddress.StartRow,
aCellAddress.EndColumn, aCellAddress.EndRow), uno::UNO_QUERY);
if (xMergeable.is())
xMergeable->merge(false);
}
//merge
uno::Reference <util::XMergeable> xMergeable (xCellRange->getCellRangeByPosition(aCellAddress.StartColumn, aCellAddress.StartRow,
aCellAddress.EndColumn + nCols, aCellAddress.EndRow + nRows), uno::UNO_QUERY);
if (xMergeable.is())
xMergeable->merge(true);
}
catch ( lang::IndexOutOfBoundsException & )
{
OSL_FAIL("ScXMLTableRowCellContext::DoMerge: range to be merged larger than what we support");
}
}
}
}
void ScXMLTableRowCellContext::SetContentValidation(com::sun::star::uno::Reference<com::sun::star::beans::XPropertySet>& xPropSet)
{
if (pContentValidationName)
{
ScMyImportValidation aValidation;
aValidation.eGrammar1 = aValidation.eGrammar2 = GetScImport().GetDocument()->GetStorageGrammar();
if (rXMLImport.GetValidation(*pContentValidationName, aValidation))
{
uno::Reference<beans::XPropertySet> xPropertySet(xPropSet->getPropertyValue(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(SC_UNONAME_VALIXML))), uno::UNO_QUERY);
if (xPropertySet.is())
{
if (aValidation.sErrorMessage.getLength())
xPropertySet->setPropertyValue(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(SC_UNONAME_ERRMESS)), uno::makeAny(aValidation.sErrorMessage));
if (aValidation.sErrorTitle.getLength())
xPropertySet->setPropertyValue(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(SC_UNONAME_ERRTITLE)), uno::makeAny(aValidation.sErrorTitle));
if (aValidation.sImputMessage.getLength())
xPropertySet->setPropertyValue(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(SC_UNONAME_INPMESS)), uno::makeAny(aValidation.sImputMessage));
if (aValidation.sImputTitle.getLength())
xPropertySet->setPropertyValue(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(SC_UNONAME_INPTITLE)), uno::makeAny(aValidation.sImputTitle));
xPropertySet->setPropertyValue(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(SC_UNONAME_SHOWERR)), uno::makeAny(aValidation.bShowErrorMessage));
xPropertySet->setPropertyValue(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(SC_UNONAME_SHOWINP)), uno::makeAny(aValidation.bShowImputMessage));
xPropertySet->setPropertyValue(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(SC_UNONAME_TYPE)), uno::makeAny(aValidation.aValidationType));
xPropertySet->setPropertyValue(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(SC_UNONAME_IGNOREBL)), uno::makeAny(aValidation.bIgnoreBlanks));
xPropertySet->setPropertyValue(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(SC_UNONAME_SHOWLIST)), uno::makeAny(aValidation.nShowList));
xPropertySet->setPropertyValue(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(SC_UNONAME_ERRALSTY)), uno::makeAny(aValidation.aAlertStyle));
uno::Reference<sheet::XSheetCondition> xCondition(xPropertySet, uno::UNO_QUERY);
if (xCondition.is())
{
xCondition->setFormula1(aValidation.sFormula1);
xCondition->setFormula2(aValidation.sFormula2);
xCondition->setOperator(aValidation.aOperator);
// source position must be set as string, because it may
// refer to a sheet that hasn't been loaded yet.
xPropertySet->setPropertyValue(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(SC_UNONAME_SOURCESTR)), uno::makeAny(aValidation.sBaseCellAddress));
// Transport grammar and formula namespace
xPropertySet->setPropertyValue(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(SC_UNONAME_FORMULANMSP1)), uno::makeAny(aValidation.sFormulaNmsp1));
xPropertySet->setPropertyValue(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(SC_UNONAME_FORMULANMSP2)), uno::makeAny(aValidation.sFormulaNmsp2));
xPropertySet->setPropertyValue(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(SC_UNONAME_GRAMMAR1)), uno::makeAny(static_cast<sal_Int32>(aValidation.eGrammar1)));
xPropertySet->setPropertyValue(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(SC_UNONAME_GRAMMAR2)), uno::makeAny(static_cast<sal_Int32>(aValidation.eGrammar2)));
}
}
xPropSet->setPropertyValue(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(SC_UNONAME_VALIXML)), uno::makeAny(xPropertySet));
// For now, any sheet with validity is blocked from stream-copying.
// Later, the validation names could be stored along with the style names.
ScSheetSaveData* pSheetData = ScModelObj::getImplementation(GetImport().GetModel())->GetSheetSaveData();
pSheetData->BlockSheet( GetScImport().GetTables().GetCurrentSheet() );
}
}
}
void ScXMLTableRowCellContext::SetCellProperties(const uno::Reference<table::XCellRange>& xCellRange,
const table::CellAddress& aCellAddress)
{
if (CellExists(aCellAddress) && pContentValidationName && pContentValidationName->getLength())
{
sal_Int32 nBottom = aCellAddress.Row + nRepeatedRows - 1;
sal_Int32 nRight = aCellAddress.Column + nCellsRepeated - 1;
if (nBottom > MAXROW)
nBottom = MAXROW;
if (nRight > MAXCOL)
nRight = MAXCOL;
uno::Reference <beans::XPropertySet> xProperties (xCellRange->getCellRangeByPosition(aCellAddress.Column, aCellAddress.Row,
nRight, nBottom), uno::UNO_QUERY);
if (xProperties.is())
SetContentValidation(xProperties);
}
}
void ScXMLTableRowCellContext::SetCellProperties(const uno::Reference<table::XCell>& xCell)
{
if (pContentValidationName && pContentValidationName->getLength())
{
uno::Reference <beans::XPropertySet> xProperties (xCell, uno::UNO_QUERY);
if (xProperties.is())
SetContentValidation(xProperties);
}
}
void ScXMLTableRowCellContext::SetAnnotation(const table::CellAddress& aCellAddress)
{
ScDocument* pDoc = rXMLImport.GetDocument();
if( !pDoc || !mxAnnotationData.get() )
return;
LockSolarMutex();
ScAddress aPos;
ScUnoConversion::FillScAddress( aPos, aCellAddress );
ScPostIt* pNote = 0;
uno::Reference< drawing::XShapes > xShapes = rXMLImport.GetTables().GetCurrentXShapes();
uno::Reference< container::XIndexAccess > xShapesIA( xShapes, uno::UNO_QUERY );
sal_Int32 nOldShapeCount = xShapesIA.is() ? xShapesIA->getCount() : 0;
OSL_ENSURE( !mxAnnotationData->mxShape.is() || mxAnnotationData->mxShapes.is(),
"ScXMLTableRowCellContext::SetAnnotation - shape without drawing page" );
if( mxAnnotationData->mxShape.is() && mxAnnotationData->mxShapes.is() )
{
OSL_ENSURE( mxAnnotationData->mxShapes.get() == xShapes.get(), "ScXMLTableRowCellContext::SetAnnotation - diffenet drawing pages" );
SdrObject* pObject = ::GetSdrObjectFromXShape( mxAnnotationData->mxShape );
OSL_ENSURE( pObject, "ScXMLTableRowCellContext::SetAnnotation - cannot get SdrObject from shape" );
/* Try to reuse the drawing object already created (but only if the
note is visible, and the object is a caption object). */
if( mxAnnotationData->mbShown && mxAnnotationData->mbUseShapePos )
{
if( SdrCaptionObj* pCaption = dynamic_cast< SdrCaptionObj* >( pObject ) )
{
OSL_ENSURE( !pCaption->GetLogicRect().IsEmpty(), "ScXMLTableRowCellContext::SetAnnotation - invalid caption rectangle" );
// create the cell note with the caption object
pNote = ScNoteUtil::CreateNoteFromCaption( *pDoc, aPos, *pCaption, true );
// forget pointer to object (do not create note again below)
pObject = 0;
}
}
// drawing object has not been used to create a note -> use shape data
if( pObject )
{
// rescue settings from drawing object before the shape is removed
::std::auto_ptr< SfxItemSet > xItemSet( new SfxItemSet( pObject->GetMergedItemSet() ) );
::std::auto_ptr< OutlinerParaObject > xOutlinerObj;
if( OutlinerParaObject* pOutlinerObj = pObject->GetOutlinerParaObject() )
xOutlinerObj.reset( new OutlinerParaObject( *pOutlinerObj ) );
Rectangle aCaptionRect;
if( mxAnnotationData->mbUseShapePos )
aCaptionRect = pObject->GetLogicRect();
// remove the shape from the drawing page, this invalidates pObject
mxAnnotationData->mxShapes->remove( mxAnnotationData->mxShape );
pObject = 0;
// update current number of existing objects
if( xShapesIA.is() )
nOldShapeCount = xShapesIA->getCount();
// an outliner object is required (empty note captions not allowed)
if( xOutlinerObj.get() )
{
// create cell note with all data from drawing object
pNote = ScNoteUtil::CreateNoteFromObjectData( *pDoc, aPos,
xItemSet.release(), xOutlinerObj.release(),
aCaptionRect, mxAnnotationData->mbShown, false );
}
}
}
else if( mxAnnotationData->maSimpleText.getLength() > 0 )
{
// create note from simple text
pNote = ScNoteUtil::CreateNoteFromString( *pDoc, aPos,
mxAnnotationData->maSimpleText, mxAnnotationData->mbShown, false );
}
// set author and date
if( pNote )
{
double fDate;
rXMLImport.GetMM100UnitConverter().convertDateTime( fDate, mxAnnotationData->maCreateDate );
SvNumberFormatter* pNumForm = pDoc->GetFormatTable();
sal_uInt32 nfIndex = pNumForm->GetFormatIndex( NF_DATE_SYS_DDMMYYYY, LANGUAGE_SYSTEM );
String aDate;
Color* pColor = 0;
Color** ppColor = &pColor;
pNumForm->GetOutputString( fDate, nfIndex, aDate, ppColor );
pNote->SetDate( aDate );
pNote->SetAuthor( mxAnnotationData->maAuthor );
}
// register a shape that has been newly created in the ScNoteUtil functions
if( xShapesIA.is() && (nOldShapeCount < xShapesIA->getCount()) )
{
uno::Reference< drawing::XShape > xShape;
rXMLImport.GetShapeImport()->shapeWithZIndexAdded( xShape, xShapesIA->getCount() );
}
// store the style names for stream copying
ScSheetSaveData* pSheetData = ScModelObj::getImplementation(rXMLImport.GetModel())->GetSheetSaveData();
pSheetData->HandleNoteStyles( mxAnnotationData->maStyleName, mxAnnotationData->maTextStyle, aPos );
std::vector<ScXMLAnnotationStyleEntry>::const_iterator aIter = mxAnnotationData->maContentStyles.begin();
std::vector<ScXMLAnnotationStyleEntry>::const_iterator aEnd = mxAnnotationData->maContentStyles.end();
while (aIter != aEnd)
{
pSheetData->AddNoteContentStyle( aIter->mnFamily, aIter->maName, aPos, aIter->maSelection );
++aIter;
}
}
// core implementation
void ScXMLTableRowCellContext::SetDetectiveObj( const table::CellAddress& rPosition )
{
if( CellExists(rPosition) && pDetectiveObjVec && pDetectiveObjVec->size() )
{
LockSolarMutex();
ScDetectiveFunc aDetFunc( rXMLImport.GetDocument(), rPosition.Sheet );
uno::Reference<container::XIndexAccess> xShapesIndex (rXMLImport.GetTables().GetCurrentXShapes(), uno::UNO_QUERY); // make draw page
ScMyImpDetectiveObjVec::iterator aItr(pDetectiveObjVec->begin());
ScMyImpDetectiveObjVec::iterator aEndItr(pDetectiveObjVec->end());
while(aItr != aEndItr)
{
ScAddress aScAddress;
ScUnoConversion::FillScAddress( aScAddress, rPosition );
aDetFunc.InsertObject( aItr->eObjType, aScAddress, aItr->aSourceRange, aItr->bHasError );
if (xShapesIndex.is())
{
sal_Int32 nShapes = xShapesIndex->getCount();
uno::Reference < drawing::XShape > xShape;
rXMLImport.GetShapeImport()->shapeWithZIndexAdded(xShape, nShapes);
}
++aItr;
}
}
}
// core implementation
void ScXMLTableRowCellContext::SetCellRangeSource( const table::CellAddress& rPosition )
{
if( CellExists(rPosition) && pCellRangeSource && pCellRangeSource->sSourceStr.getLength() &&
pCellRangeSource->sFilterName.getLength() && pCellRangeSource->sURL.getLength() )
{
ScDocument* pDoc = rXMLImport.GetDocument();
if (pDoc)
{
LockSolarMutex();
ScRange aDestRange( static_cast<SCCOL>(rPosition.Column), static_cast<SCROW>(rPosition.Row), rPosition.Sheet,
static_cast<SCCOL>(rPosition.Column + pCellRangeSource->nColumns - 1),
static_cast<SCROW>(rPosition.Row + pCellRangeSource->nRows - 1), rPosition.Sheet );
String sFilterName( pCellRangeSource->sFilterName );
String sSourceStr( pCellRangeSource->sSourceStr );
ScAreaLink* pLink = new ScAreaLink( pDoc->GetDocumentShell(), pCellRangeSource->sURL,
sFilterName, pCellRangeSource->sFilterOptions, sSourceStr, aDestRange, pCellRangeSource->nRefresh );
sfx2::LinkManager* pLinkManager = pDoc->GetLinkManager();
pLinkManager->InsertFileLink( *pLink, OBJECT_CLIENT_FILE, pCellRangeSource->sURL, &sFilterName, &sSourceStr );
}
}
}
bool lcl_IsEmptyOrNote( ScDocument* pDoc, const table::CellAddress& rCurrentPos )
{
ScAddress aScAddress;
ScUnoConversion::FillScAddress( aScAddress, rCurrentPos );
ScBaseCell* pCell = pDoc->GetCell( aScAddress );
return ( !pCell || pCell->GetCellType() == CELLTYPE_NOTE );
}
void ScXMLTableRowCellContext::EndElement()
{
if (!bHasSubTable)
{
if (bHasTextImport && rXMLImport.GetRemoveLastChar())
{
UniReference< XMLTextImportHelper > aTextImport = rXMLImport.GetTextImport();
if (aTextImport->GetCursor().is())
{
//aTextImport->GetCursor()->gotoEnd(false);
if( aTextImport->GetCursor()->goLeft( 1, true ) )
{
aTextImport->GetText()->insertString(
aTextImport->GetCursorAsRange(), rtl::OUString(),
true );
}
aTextImport->ResetCursor();
}
}
ScMyTables& rTables = rXMLImport.GetTables();
table::CellAddress aCellPos = rTables.GetRealCellPos();
if (aCellPos.Column > 0 && nRepeatedRows > 1)
aCellPos.Row -= (nRepeatedRows - 1);
uno::Reference<table::XCellRange> xCellRange(rTables.GetCurrentXCellRange());
if (xCellRange.is())
{
if (bIsMerged)
DoMerge(aCellPos, nMergedCols - 1, nMergedRows - 1);
if ( !pOUFormula )
{
::boost::optional< rtl::OUString > pOUText;
if(nCellType == util::NumberFormat::TEXT)
{
if (xLockable.is())
xLockable->removeActionLock();
// #i61702# The formatted text content of xBaseCell / xLockable is invalidated,
// so it can't be used after calling removeActionLock (getString always uses the document).
if (CellExists(aCellPos) && ((nCellsRepeated > 1) || (nRepeatedRows > 1)))
{
if (!xBaseCell.is())
{
try
{
xBaseCell.set(xCellRange->getCellByPosition(aCellPos.Column, aCellPos.Row));
}
catch (lang::IndexOutOfBoundsException&)
{
OSL_FAIL("It seems here are to many columns or rows");
}
}
uno::Reference <text::XText> xTempText (xBaseCell, uno::UNO_QUERY);
if (xTempText.is())
{
pOUText.reset(xTempText->getString());
}
}
if (!pOUTextContent && !pOUText && !pOUTextValue)
bIsEmpty = true;
}
bool bWasEmpty = bIsEmpty;
// uno::Reference <table::XCell> xCell;
table::CellAddress aCurrentPos( aCellPos );
if ((pContentValidationName && pContentValidationName->getLength()) ||
mxAnnotationData.get() || pDetectiveObjVec || pCellRangeSource)
bIsEmpty = false;
for (sal_Int32 i = 0; i < nCellsRepeated; ++i)
{
aCurrentPos.Column = aCellPos.Column + i;
if (i > 0)
rTables.AddColumn(false);
if (!bIsEmpty)
{
for (sal_Int32 j = 0; j < nRepeatedRows; ++j)
{
aCurrentPos.Row = aCellPos.Row + j;
if ((aCurrentPos.Column == 0) && (j > 0))
{
rTables.AddRow();
rTables.AddColumn(false);
}
if (CellExists(aCurrentPos))
{
// test - bypass the API
// if (xBaseCell.is() && (aCurrentPos == aCellPos))
// xCell.set(xBaseCell);
// else
// {
// try
// {
// xCell.set(xCellRange->getCellByPosition(aCurrentPos.Column, aCurrentPos.Row));
// }
// catch (lang::IndexOutOfBoundsException&)
// {
// OSL_FAIL("It seems here are to many columns or rows");
// }
// }
// test - bypass the API
// if ((!(bIsCovered) || (xCell->getType() == table::CellContentType_EMPTY)))
if ((!(bIsCovered) || lcl_IsEmptyOrNote( rXMLImport.GetDocument(), aCurrentPos )))
{
switch (nCellType)
{
case util::NumberFormat::TEXT:
{
bool bDoIncrement = true;
if (rTables.IsPartOfMatrix(aCurrentPos.Column, aCurrentPos.Row))
{
LockSolarMutex();
// test - bypass the API
// ScCellObj* pCellObj = (ScCellObj*)ScCellRangesBase::getImplementation(xCell);
// if (pCellObj)
// {
// if(pOUTextValue && pOUTextValue->getLength())
// pCellObj->SetFormulaResultString(*pOUTextValue);
// else if (pOUTextContent && pOUTextContent->getLength())
// pCellObj->SetFormulaResultString(*pOUTextContent);
// else if ( i > 0 && pOUText && pOUText->getLength() )
// {
// pCellObj->SetFormulaResultString(*pOUText);
// }
// else
// bDoIncrement = false;
// }
// else
// bDoIncrement = false;
ScAddress aScAddress;
ScUnoConversion::FillScAddress( aScAddress, aCurrentPos );
ScBaseCell* pCell = rXMLImport.GetDocument()->GetCell( aScAddress );
bDoIncrement = ( pCell && pCell->GetCellType() == CELLTYPE_FORMULA );
if ( bDoIncrement )
{
ScFormulaCell* pFCell = static_cast<ScFormulaCell*>(pCell);
if (pOUTextValue && pOUTextValue->getLength())
pFCell->SetHybridString( *pOUTextValue );
else if (pOUTextContent && pOUTextContent->getLength())
pFCell->SetHybridString( *pOUTextContent );
else if ( i > 0 && pOUText && pOUText->getLength() )
pFCell->SetHybridString( *pOUText );
else
bDoIncrement = false;
}
}
else
{
// test - bypass the API
// uno::Reference <text::XText> xText (xCell, uno::UNO_QUERY);
// if (xText.is())
// {
// if(pOUTextValue && pOUTextValue->getLength())
// xText->setString(*pOUTextValue);
// else if (pOUTextContent && pOUTextContent->getLength())
// xText->setString(*pOUTextContent);
// else if ( i > 0 && pOUText && pOUText->getLength() )
// {
// xText->setString(*pOUText);
// }
// else
// bDoIncrement = false;
// }
LockSolarMutex();
ScBaseCell* pNewCell = NULL;
ScDocument* pDoc = rXMLImport.GetDocument();
if (pOUTextValue && pOUTextValue->getLength())
pNewCell = ScBaseCell::CreateTextCell( *pOUTextValue, pDoc );
else if (pOUTextContent && pOUTextContent->getLength())
pNewCell = ScBaseCell::CreateTextCell( *pOUTextContent, pDoc );
else if ( i > 0 && pOUText && pOUText->getLength() )
pNewCell = ScBaseCell::CreateTextCell( *pOUText, pDoc );
bDoIncrement = pNewCell != NULL;
if ( bDoIncrement )
{
ScAddress aScAddress;
ScUnoConversion::FillScAddress( aScAddress, aCurrentPos );
pDoc->PutCell( aScAddress, pNewCell );
}
}
// #i56027# This is about setting simple text, not edit cells,
// so ProgressBarIncrement must be called with bEditCell = FALSE.
// Formatted text that is put into the cell by the child context
// is handled below (bIsEmpty is true then).
if (bDoIncrement || bHasTextImport)
rXMLImport.ProgressBarIncrement(false);
}
break;
case util::NumberFormat::NUMBER:
case util::NumberFormat::PERCENT:
case util::NumberFormat::CURRENCY:
case util::NumberFormat::TIME:
case util::NumberFormat::DATETIME:
case util::NumberFormat::LOGICAL:
{
if (rTables.IsPartOfMatrix(aCurrentPos.Column, aCurrentPos.Row))
{
LockSolarMutex();
// test - bypass the API
// ScCellObj* pCellObj = (ScCellObj*)ScCellRangesBase::getImplementation(xCell);
// if (pCellObj)
// pCellObj->SetFormulaResultDouble(fValue);
ScAddress aScAddress;
ScUnoConversion::FillScAddress( aScAddress, aCurrentPos );
ScBaseCell* pCell = rXMLImport.GetDocument()->GetCell( aScAddress );
if ( pCell && pCell->GetCellType() == CELLTYPE_FORMULA )
static_cast<ScFormulaCell*>(pCell)->SetHybridDouble( fValue );
}
else
{
// test - bypass the API
// xCell->setValue(fValue);
LockSolarMutex();
// #i62435# Initialize the value cell's script type
// if the default style's number format is latin-only.
// If the cell uses a different format, the script type
// will be reset when the style is applied.
ScBaseCell* pNewCell = new ScValueCell(fValue);
if ( rXMLImport.IsLatinDefaultStyle() )
pNewCell->SetScriptType( SCRIPTTYPE_LATIN );
rXMLImport.GetDocument()->PutCell(
sal::static_int_cast<SCCOL>( aCurrentPos.Column ),
sal::static_int_cast<SCROW>( aCurrentPos.Row ),
sal::static_int_cast<SCTAB>( aCurrentPos.Sheet ),
pNewCell );
}
rXMLImport.ProgressBarIncrement(false);
}
break;
default:
{
OSL_FAIL("no cell type given");
}
break;
}
}
SetAnnotation(aCurrentPos);
SetDetectiveObj( aCurrentPos );
SetCellRangeSource( aCurrentPos );
}
else
{
if (!bWasEmpty || mxAnnotationData.get())
{
if (aCurrentPos.Row > MAXROW)
rXMLImport.SetRangeOverflowType(SCWARN_IMPORT_ROW_OVERFLOW);
else
rXMLImport.SetRangeOverflowType(SCWARN_IMPORT_COLUMN_OVERFLOW);
}
}
}
}
else
{
// #i56027# If the child context put formatted text into the cell,
// bIsEmpty is true and ProgressBarIncrement has to be called
// with bEditCell = TRUE.
if (bHasTextImport)
rXMLImport.ProgressBarIncrement(true);
if ((i == 0) && (aCellPos.Column == 0))
for (sal_Int32 j = 1; j < nRepeatedRows; ++j)
{
rTables.AddRow();
rTables.AddColumn(false);
}
}
}
if (nCellsRepeated > 1 || nRepeatedRows > 1)
{
SetCellProperties(xCellRange, aCellPos); // set now only the validation for the complete range with the given cell as start cell
//SetType(xCellRange, aCellPos);
SCCOL nStartCol(aCellPos.Column < MAXCOL ? static_cast<SCCOL>(aCellPos.Column) : MAXCOL);
SCROW nStartRow(aCellPos.Row < MAXROW ? static_cast<SCROW>(aCellPos.Row) : MAXROW);
SCCOL nEndCol(aCellPos.Column + nCellsRepeated - 1 < MAXCOL ? static_cast<SCCOL>(aCellPos.Column + nCellsRepeated - 1) : MAXCOL);
SCROW nEndRow(aCellPos.Row + nRepeatedRows - 1 < MAXROW ? static_cast<SCROW>(aCellPos.Row + nRepeatedRows - 1) : MAXROW);
ScRange aScRange( nStartCol, nStartRow, aCellPos.Sheet,
nEndCol, nEndRow, aCellPos.Sheet );
rXMLImport.GetStylesImportHelper()->AddRange(aScRange);
}
else if (CellExists(aCellPos))
{
rXMLImport.GetStylesImportHelper()->AddCell(aCellPos);
// test - bypass the API
// SetCellProperties(xCell); // set now only the validation
SetCellProperties(xCellRange, aCellPos);
//SetType(xTempCell);
}
}
else // if ( !pOUFormula )
{
if (CellExists(aCellPos))
{
uno::Reference <table::XCell> xCell;
try
{
xCell.set(xCellRange->getCellByPosition(aCellPos.Column , aCellPos.Row));
}
catch (lang::IndexOutOfBoundsException&)
{
OSL_FAIL("It seems here are to many columns or rows");
}
if (xCell.is())
{
SetCellProperties(xCell); // set now only the validation
OSL_ENSURE(((nCellsRepeated == 1) && (nRepeatedRows == 1)), "repeated cells with formula not possible now");
rXMLImport.GetStylesImportHelper()->AddCell(aCellPos);
if (!bIsMatrix)
{
LockSolarMutex();
ScAddress aScAddress;
ScUnoConversion::FillScAddress( aScAddress, aCellPos );
ScDocument* pDoc = rXMLImport.GetDocument();
rtl::OUString aText = pOUFormula->first;
rtl::OUString aFormulaNmsp = pOUFormula->second;
::boost::scoped_ptr<ScExternalRefManager::ApiGuard> pExtRefGuard;
pExtRefGuard.reset(new ScExternalRefManager::ApiGuard(pDoc));
ScBaseCell* pNewCell = NULL;
if ( !aText.isEmpty() )
{
if ( aText[0] == '=' && aText.getLength() > 1 )
{
// temporary formula string as string tokens
ScTokenArray* pCode = new ScTokenArray;
pCode->AddStringXML( aText );
if( (eGrammar == formula::FormulaGrammar::GRAM_EXTERNAL) && (aFormulaNmsp.getLength() > 0) )
pCode->AddStringXML( aFormulaNmsp );
pDoc->IncXMLImportedFormulaCount( aText.getLength() );
pNewCell = new ScFormulaCell( pDoc, aScAddress, pCode, eGrammar, MM_NONE );
delete pCode;
}
else if ( aText[0] == '\'' && aText.getLength() > 1 )
{
// for bEnglish, "'" at the beginning is always interpreted as text
// marker and stripped
pNewCell = ScBaseCell::CreateTextCell( aText.copy( 1 ), pDoc );
}
else
{
SvNumberFormatter* pFormatter = pDoc->GetFormatTable();
sal_uInt32 nEnglish = pFormatter->GetStandardIndex(LANGUAGE_ENGLISH_US);
double fVal;
if ( pFormatter->IsNumberFormat( aText, nEnglish, fVal ) )
{
pNewCell = new ScValueCell( fVal );
}
else
pNewCell = ScBaseCell::CreateTextCell( aText, pDoc );
// das (englische) Zahlformat wird nicht gesetzt
//! passendes lokales Format suchen und setzen???
}
if (pNewCell)
pDoc->PutCell( aScAddress, pNewCell );
ScBaseCell* pCell = rXMLImport.GetDocument()->GetCell( aScAddress );
if ( pCell && pCell->GetCellType() == CELLTYPE_FORMULA )
{
if (bFormulaTextResult && pOUTextValue && pOUTextValue->getLength())
static_cast<ScFormulaCell*>(pCell)->SetHybridString( *pOUTextValue );
else
static_cast<ScFormulaCell*>(pCell)->SetHybridDouble( fValue );
}
}
}
else
{
if (nMatrixCols > 0 && nMatrixRows > 0)
{
rTables.AddMatrixRange(
aCellPos.Column, aCellPos.Row,
aCellPos.Column + nMatrixCols - 1,
aCellPos.Row + nMatrixRows - 1,
pOUFormula->first, pOUFormula->second, eGrammar);
}
}
SetAnnotation( aCellPos );
SetDetectiveObj( aCellPos );
SetCellRangeSource( aCellPos );
rXMLImport.ProgressBarIncrement(false);
}
}
else
{
if (aCellPos.Row > MAXROW)
rXMLImport.SetRangeOverflowType(SCWARN_IMPORT_ROW_OVERFLOW);
else
rXMLImport.SetRangeOverflowType(SCWARN_IMPORT_COLUMN_OVERFLOW);
}
} // if ( !pOUFormula )
}
UnlockSolarMutex();
}
bIsMerged = false;
bHasSubTable = false;
nMergedCols = 1;
nMergedRows = 1;
nCellsRepeated = 1;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|