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
|
/* -*- 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 <com/sun/star/text/XTextTable.hpp>
#include <com/sun/star/text/XTextSection.hpp>
#include <hintids.hxx>
#include <rtl/ustrbuf.hxx>
#include <xmloff/xmlnmspe.hxx>
#include <xmloff/xmltoken.hxx>
#include <xmloff/xmluconv.hxx>
#include <xmloff/numehelp.hxx>
#include <svl/cntnrsrt.hxx>
#include <svl/zforlist.hxx>
#include <editeng/brshitem.hxx>
#include <editeng/boxitem.hxx>
#include <fmtrowsplt.hxx>
#include <editeng/frmdiritem.hxx>
#include <list>
#include "swtable.hxx"
#include "doc.hxx"
#include "pam.hxx"
#include "frmfmt.hxx"
#include "wrtswtbl.hxx"
#include "fmtfsize.hxx"
#include "fmtornt.hxx"
#include "cellatr.hxx"
#include "ddefld.hxx"
#include "swddetbl.hxx"
#include <ndole.hxx>
#include <xmloff/nmspmap.hxx>
#include <sfx2/linkmgr.hxx> // for cTokenSeperator
#include "unotbl.hxx"
#include "xmltexte.hxx"
#include "xmlexp.hxx"
using ::rtl::OUString;
using ::rtl::OUStringBuffer;
using namespace ::com::sun::star;
using namespace ::com::sun::star::uno;
using namespace ::com::sun::star::text;
using namespace ::com::sun::star::beans;
using namespace ::com::sun::star::lang;
using namespace ::com::sun::star::container;
using namespace ::xmloff::token;
using table::XCell;
using ::std::vector;
using ::std::advance;
class SwXMLTableColumn_Impl : public SwWriteTableCol
{
OUString sStyleName;
sal_uInt32 nRelWidth;
public:
SwXMLTableColumn_Impl( sal_uInt32 nPosition ) :
SwWriteTableCol( nPosition ),
nRelWidth( 0UL )
{};
void SetStyleName( const OUString& rName ) { sStyleName = rName; }
const OUString& GetStyleName() const { return sStyleName; }
void SetRelWidth( sal_uInt32 nSet ) { nRelWidth = nSet; }
sal_uInt32 GetRelWidth() const { return nRelWidth; }
};
sal_Int32 SwXMLTableColumnCmpWidth_Impl( const SwXMLTableColumn_Impl& r1,
const SwXMLTableColumn_Impl& r2 )
{
sal_Int32 n = (sal_Int32)r1.GetWidthOpt() - (sal_Int32)r2.GetWidthOpt();
if( !n )
n = (sal_Int32)r1.GetRelWidth() - (sal_Int32)r2.GetRelWidth();
return n;
}
// ---------------------------------------------------------------------
typedef SwXMLTableColumn_Impl *SwXMLTableColumnPtr;
SV_DECL_PTRARR_SORT_DEL( SwXMLTableColumns_Impl, SwXMLTableColumnPtr, 5, 5 )
SV_IMPL_OP_PTRARR_SORT( SwXMLTableColumns_Impl, SwXMLTableColumnPtr )
DECLARE_CONTAINER_SORT( SwXMLTableColumnsSortByWidth_Impl,
SwXMLTableColumn_Impl )
IMPL_CONTAINER_SORT( SwXMLTableColumnsSortByWidth_Impl, SwXMLTableColumn_Impl,
SwXMLTableColumnCmpWidth_Impl )
class SwXMLTableLines_Impl
{
SwXMLTableColumns_Impl aCols;
const SwTableLines *pLines;
sal_uInt32 nWidth;
public:
SwXMLTableLines_Impl( const SwTableLines& rLines );
~SwXMLTableLines_Impl() {}
sal_uInt32 GetWidth() const { return nWidth; }
const SwTableLines *GetLines() const { return pLines; }
const SwXMLTableColumns_Impl& GetColumns() const { return aCols; }
};
SwXMLTableLines_Impl::SwXMLTableLines_Impl( const SwTableLines& rLines ) :
pLines( &rLines ),
nWidth( 0UL )
{
#if OSL_DEBUG_LEVEL > 0
sal_uInt32 nEndCPos = 0U;
#endif
sal_uInt16 nLines = rLines.Count();
sal_uInt16 nLine;
for( nLine=0U; nLine<nLines; nLine++ )
{
const SwTableLine *pLine = rLines[nLine];
const SwTableBoxes& rBoxes = pLine->GetTabBoxes();
sal_uInt16 nBoxes = rBoxes.Count();
sal_uInt32 nCPos = 0U;
for( sal_uInt16 nBox=0U; nBox<nBoxes; nBox++ )
{
const SwTableBox *pBox = rBoxes[nBox];
if( nBox < nBoxes-1U || nWidth==0UL )
{
nCPos = nCPos + SwWriteTable::GetBoxWidth( pBox );
SwXMLTableColumn_Impl *pCol =
new SwXMLTableColumn_Impl( nCPos );
if( !aCols.Insert( pCol ) )
delete pCol;
if( nBox==nBoxes-1U )
{
OSL_ENSURE( nLine==0U && nWidth==0UL,
"parent width will be lost" );
nWidth = nCPos;
}
}
else
{
#if OSL_DEBUG_LEVEL > 0
sal_uInt32 nCheckPos =
nCPos + SwWriteTable::GetBoxWidth( pBox );
if( !nEndCPos )
{
nEndCPos = nCheckPos;
}
#endif
nCPos = nWidth;
#if OSL_DEBUG_LEVEL > 0
SwXMLTableColumn_Impl aCol( nWidth );
OSL_ENSURE( aCols.Seek_Entry(&aCol), "couldn't find last column" );
OSL_ENSURE( SwXMLTableColumn_Impl(nCheckPos) ==
SwXMLTableColumn_Impl(nCPos),
"rows have different total widths" );
#endif
}
}
}
}
// ---------------------------------------------------------------------
typedef vector< SwFrmFmt* > SwXMLFrmFmts_Impl;
class SwXMLTableFrmFmtsSort_Impl
{
private:
SwXMLFrmFmts_Impl aFormatList;
public:
SwXMLTableFrmFmtsSort_Impl ( sal_uInt16 /* nInit */, sal_uInt16 /*nGrow*/ )
{}
sal_Bool AddRow( SwFrmFmt& rFrmFmt, const OUString& rNamePrefix, sal_uInt32 nLine );
sal_Bool AddCell( SwFrmFmt& rFrmFmt, const OUString& rNamePrefix,
sal_uInt32 nCol, sal_uInt32 nRow, sal_Bool bTop );
};
sal_Bool SwXMLTableFrmFmtsSort_Impl::AddRow( SwFrmFmt& rFrmFmt,
const OUString& rNamePrefix,
sal_uInt32 nLine )
{
const SwFmtFrmSize *pFrmSize = 0;
const SwFmtRowSplit* pRowSplit = 0;
const SvxBrushItem *pBrush = 0;
const SfxItemSet& rItemSet = rFrmFmt.GetAttrSet();
const SfxPoolItem *pItem;
if( SFX_ITEM_SET == rItemSet.GetItemState( RES_FRM_SIZE, sal_False, &pItem ) )
pFrmSize = (const SwFmtFrmSize *)pItem;
if( SFX_ITEM_SET == rItemSet.GetItemState( RES_ROW_SPLIT, sal_False, &pItem ) )
pRowSplit = (const SwFmtRowSplit *)pItem;
if( SFX_ITEM_SET == rItemSet.GetItemState( RES_BACKGROUND, sal_False, &pItem ) )
pBrush = (const SvxBrushItem *)pItem;
// empty styles have not to be exported
if( !pFrmSize && !pBrush && !pRowSplit )
return sal_False;
// order is: -/brush, size/-, size/brush
sal_Bool bInsert = sal_True;
SwXMLFrmFmts_Impl::iterator i;
for( i = aFormatList.begin(); i < aFormatList.end(); ++i )
{
const SwFmtFrmSize *pTestFrmSize = 0;
const SwFmtRowSplit* pTestRowSplit = 0;
const SvxBrushItem *pTestBrush = 0;
const SwFrmFmt *pTestFmt = *i;
const SfxItemSet& rTestSet = pTestFmt->GetAttrSet();
if( SFX_ITEM_SET == rTestSet.GetItemState( RES_FRM_SIZE, sal_False,
&pItem ) )
{
if( !pFrmSize )
break;
pTestFrmSize = (const SwFmtFrmSize *)pItem;
}
else
{
if( pFrmSize )
continue;
}
if( SFX_ITEM_SET == rTestSet.GetItemState( RES_BACKGROUND, sal_False,
&pItem ) )
{
if( !pBrush )
break;
pTestBrush = (const SvxBrushItem *)pItem;
}
else
{
if( pBrush )
continue;
}
if( SFX_ITEM_SET == rTestSet.GetItemState( RES_ROW_SPLIT, sal_False,
&pItem ) )
{
if( !pRowSplit )
break;
pTestRowSplit = (const SwFmtRowSplit *)pItem;
}
else
{
if( pRowSplit )
continue;
}
if( pFrmSize &&
( pFrmSize->GetHeightSizeType() != pTestFrmSize->GetHeightSizeType() ||
pFrmSize->GetHeight() != pTestFrmSize->GetHeight() ) )
continue;
if( pBrush && (*pBrush != *pTestBrush) )
continue;
if( pRowSplit && (!pRowSplit->GetValue() != !pTestRowSplit->GetValue()) )
continue;
// found!
const String& rFmtName = pTestFmt->GetName();
rFrmFmt.SetName( rFmtName );
bInsert = sal_False;
break;
}
if( bInsert )
{
OUStringBuffer sBuffer( rNamePrefix.getLength() + 4UL );
sBuffer.append( rNamePrefix );
sBuffer.append( (sal_Unicode)'.' );
sBuffer.append( (sal_Int32)(nLine+1UL) );
rFrmFmt.SetName( sBuffer.makeStringAndClear() );
if ( i != aFormatList.end() ) ++i;
aFormatList.insert( i, &rFrmFmt );
}
return bInsert;
}
void lcl_GetTblBoxColStr( sal_uInt16 nCol, String& rNm );
void lcl_xmltble_appendBoxPrefix( OUStringBuffer& rBuffer,
const OUString& rNamePrefix,
sal_uInt32 nCol, sal_uInt32 nRow, sal_Bool bTop )
{
rBuffer.append( rNamePrefix );
rBuffer.append( (sal_Unicode)'.' );
if( bTop )
{
String sTmp;
lcl_GetTblBoxColStr( (sal_uInt16)nCol, sTmp );
rBuffer.append( sTmp );
}
else
{
rBuffer.append( (sal_Int32)(nCol + 1));
rBuffer.append( (sal_Unicode)'.' );
}
rBuffer.append( (sal_Int32)(nRow + 1));
}
sal_Bool SwXMLTableFrmFmtsSort_Impl::AddCell( SwFrmFmt& rFrmFmt,
const OUString& rNamePrefix,
sal_uInt32 nCol, sal_uInt32 nRow, sal_Bool bTop )
{
const SwFmtVertOrient *pVertOrient = 0;
const SvxBrushItem *pBrush = 0;
const SvxBoxItem *pBox = 0;
const SwTblBoxNumFormat *pNumFmt = 0;
const SvxFrameDirectionItem *pFrameDir = 0;
const SfxItemSet& rItemSet = rFrmFmt.GetAttrSet();
const SfxPoolItem *pItem;
if( SFX_ITEM_SET == rItemSet.GetItemState( RES_VERT_ORIENT, sal_False,
&pItem ) )
pVertOrient = (const SwFmtVertOrient *)pItem;
if( SFX_ITEM_SET == rItemSet.GetItemState( RES_BACKGROUND, sal_False, &pItem ) )
pBrush = (const SvxBrushItem *)pItem;
if( SFX_ITEM_SET == rItemSet.GetItemState( RES_BOX, sal_False, &pItem ) )
pBox = (const SvxBoxItem *)pItem;
if ( SFX_ITEM_SET == rItemSet.GetItemState( RES_BOXATR_FORMAT,
sal_False, &pItem ) )
pNumFmt = (const SwTblBoxNumFormat *)pItem;
if ( SFX_ITEM_SET == rItemSet.GetItemState( RES_FRAMEDIR,
sal_False, &pItem ) )
pFrameDir = (const SvxFrameDirectionItem *)pItem;
// empty styles have not to be exported
if( !pVertOrient && !pBrush && !pBox && !pNumFmt && !pFrameDir )
return sal_False;
// order is: -/-/-/num,
// -/-/box/-, --/-/box/num,
// -/brush/-/-, -/brush/-/num, -/brush/box/-, -/brush/box/num,
// vert/-/-/-, vert/-/-/num, vert/-/box/-, ver/-/box/num,
// vert/brush/-/-, vert/brush/-/num, vert/brush/box/-,
// vert/brush/box/num
sal_Bool bInsert = sal_True;
SwXMLFrmFmts_Impl::iterator i;
for( i = aFormatList.begin(); i < aFormatList.end(); ++i )
{
const SwFmtVertOrient *pTestVertOrient = 0;
const SvxBrushItem *pTestBrush = 0;
const SvxBoxItem *pTestBox = 0;
const SwTblBoxNumFormat *pTestNumFmt = 0;
const SvxFrameDirectionItem *pTestFrameDir = 0;
const SwFrmFmt* pTestFmt = *i;
const SfxItemSet& rTestSet = pTestFmt->GetAttrSet();
if( SFX_ITEM_SET == rTestSet.GetItemState( RES_VERT_ORIENT, sal_False,
&pItem ) )
{
if( !pVertOrient )
break;
pTestVertOrient = (const SwFmtVertOrient *)pItem;
}
else
{
if( pVertOrient )
continue;
}
if( SFX_ITEM_SET == rTestSet.GetItemState( RES_BACKGROUND, sal_False,
&pItem ) )
{
if( !pBrush )
break;
pTestBrush = (const SvxBrushItem *)pItem;
}
else
{
if( pBrush )
continue;
}
if( SFX_ITEM_SET == rTestSet.GetItemState( RES_BOX, sal_False, &pItem ) )
{
if( !pBox )
break;
pTestBox = (const SvxBoxItem *)pItem;
}
else
{
if( pBox )
continue;
}
if ( SFX_ITEM_SET == rTestSet.GetItemState( RES_BOXATR_FORMAT,
sal_False, &pItem ) )
{
if( !pNumFmt )
break;
pTestNumFmt = (const SwTblBoxNumFormat *)pItem;
}
else
{
if( pNumFmt )
continue;
}
if ( SFX_ITEM_SET == rTestSet.GetItemState( RES_FRAMEDIR,
sal_False, &pItem ) )
{
if( !pFrameDir )
break;
pTestFrameDir = (const SvxFrameDirectionItem *)pItem;
}
else
{
if( pFrameDir )
continue;
}
if( pVertOrient &&
pVertOrient->GetVertOrient() != pTestVertOrient->GetVertOrient() )
continue;
if( pBrush && ( *pBrush != *pTestBrush ) )
continue;
if( pBox && ( *pBox != *pTestBox ) )
continue;
if( pNumFmt && pNumFmt->GetValue() != pTestNumFmt->GetValue() )
continue;
if( pFrameDir && pFrameDir->GetValue() != pTestFrameDir->GetValue() )
continue;
// found!
const String& rFmtName = pTestFmt->GetName();
rFrmFmt.SetName( rFmtName );
bInsert = sal_False;
break;
}
if( bInsert )
{
OUStringBuffer sBuffer( rNamePrefix.getLength() + 8UL );
lcl_xmltble_appendBoxPrefix( sBuffer, rNamePrefix, nCol, nRow, bTop );
rFrmFmt.SetName( sBuffer.makeStringAndClear() );
if ( i != aFormatList.end() ) ++i;
aFormatList.insert( i, &rFrmFmt );
}
return bInsert;
}
// ---------------------------------------------------------------------
class SwXMLTableInfo_Impl
{
const SwTable *pTable;
Reference < XTextSection > xBaseSection;
sal_Bool bBaseSectionValid;
public:
inline SwXMLTableInfo_Impl( const SwTable *pTbl );
const SwTable *GetTable() const { return pTable; }
const SwFrmFmt *GetTblFmt() const { return pTable->GetFrmFmt(); }
sal_Bool IsBaseSectionValid() const { return bBaseSectionValid; }
const Reference < XTextSection >& GetBaseSection() const { return xBaseSection; }
inline void SetBaseSection( const Reference < XTextSection >& rBase );
};
inline SwXMLTableInfo_Impl::SwXMLTableInfo_Impl( const SwTable *pTbl ) :
pTable( pTbl ),
bBaseSectionValid( sal_False )
{
}
inline void SwXMLTableInfo_Impl::SetBaseSection(
const Reference < XTextSection >& rBaseSection )
{
xBaseSection = rBaseSection;
bBaseSectionValid = sal_True;
}
// ---------------------------------------------------------------------
void SwXMLExport::ExportTableColumnStyle( const SwXMLTableColumn_Impl& rCol )
{
// <style:style ...>
CheckAttrList();
// style:name="..."
sal_Bool bEncoded = sal_False;
AddAttribute( XML_NAMESPACE_STYLE, XML_NAME,
EncodeStyleName( rCol.GetStyleName(), &bEncoded ) );
if( bEncoded )
AddAttribute( XML_NAMESPACE_STYLE, XML_DISPLAY_NAME, rCol.GetStyleName() );
// style:family="table-column"
AddAttribute( XML_NAMESPACE_STYLE, XML_FAMILY, XML_TABLE_COLUMN );
{
SvXMLElementExport aElem( *this, XML_NAMESPACE_STYLE, XML_STYLE, sal_True,
sal_True );
OUStringBuffer sValue;
if( rCol.GetWidthOpt() )
{
GetTwipUnitConverter().convertMeasureToXML( sValue,
rCol.GetWidthOpt() );
AddAttribute( XML_NAMESPACE_STYLE, XML_COLUMN_WIDTH,
sValue.makeStringAndClear() );
}
if( rCol.GetRelWidth() )
{
sValue.append( (sal_Int32)rCol.GetRelWidth() );
sValue.append( (sal_Unicode)'*' );
AddAttribute( XML_NAMESPACE_STYLE, XML_REL_COLUMN_WIDTH,
sValue.makeStringAndClear() );
}
{
SvXMLElementExport aElemExport( *this, XML_NAMESPACE_STYLE,
XML_TABLE_COLUMN_PROPERTIES,
sal_True, sal_True );
}
}
}
void SwXMLExport::ExportTableLinesAutoStyles( const SwTableLines& rLines,
sal_uInt32 nAbsWidth, sal_uInt32 nBaseWidth,
const OUString& rNamePrefix,
SwXMLTableColumnsSortByWidth_Impl& rExpCols,
SwXMLTableFrmFmtsSort_Impl& rExpRows,
SwXMLTableFrmFmtsSort_Impl& rExpCells,
SwXMLTableInfo_Impl& rTblInfo,
sal_Bool bTop )
{
// pass 1: calculate columns
SwXMLTableLines_Impl *pLines = new SwXMLTableLines_Impl( rLines );
if( !pTableLines )
pTableLines = new SwXMLTableLinesCache_Impl();
pTableLines->push_back( pLines );
OUStringBuffer sBuffer( rNamePrefix.getLength() + 8L );
// pass 2: export column styles
{
const SwXMLTableColumns_Impl& rCols = pLines->GetColumns();
sal_uInt32 nCPos = 0U;
sal_uInt16 nColumns = rCols.Count();
for( sal_uInt16 nColumn=0U; nColumn<nColumns; nColumn++ )
{
SwXMLTableColumn_Impl *pColumn = rCols[nColumn];
sal_uInt32 nOldCPos = nCPos;
nCPos = pColumn->GetPos();
sal_uInt32 nWidth = nCPos - nOldCPos;
// If a base width is given, the table has either an automatic
// or margin alignment, or an percentage width. In either case,
// relative widths should be exported.
if( nBaseWidth )
{
pColumn->SetRelWidth( nWidth );
}
// If an absolute width is given, the table either has a fixed
// width, or the current width is known from the layout. In the
// later case, a base width is set in addition and must be used
// to "absoultize" the relative column width.
if( nAbsWidth )
{
sal_uInt32 nColAbsWidth = nWidth;
if( nBaseWidth )
{
nColAbsWidth *= nAbsWidth;
nColAbsWidth += (nBaseWidth/2UL);
nColAbsWidth /= nBaseWidth;
}
pColumn->SetWidthOpt( nColAbsWidth, sal_False );
}
sal_uLong nExpPos = 0;
if( rExpCols.Seek_Entry( pColumn, &nExpPos ) )
{
pColumn->SetStyleName(
rExpCols.GetObject(nExpPos)->GetStyleName() );
}
else
{
sBuffer.append( rNamePrefix );
sBuffer.append( (sal_Unicode)'.' );
if( bTop )
{
String sTmp;
lcl_GetTblBoxColStr( nColumn, sTmp );
sBuffer.append( sTmp );
}
else
{
sBuffer.append( (sal_Int32)(nColumn + 1U) );
}
pColumn->SetStyleName( sBuffer.makeStringAndClear() );
ExportTableColumnStyle( *pColumn );
rExpCols.Insert( pColumn );
}
}
}
// pass 3: export line/rows
sal_uInt16 nLines = rLines.Count();
for( sal_uInt16 nLine=0U; nLine<nLines; nLine++ )
{
SwTableLine *pLine = rLines[nLine];
SwFrmFmt *pFrmFmt = pLine->GetFrmFmt();
if( rExpRows.AddRow( *pFrmFmt, rNamePrefix, nLine ) )
ExportFmt( *pFrmFmt, XML_TABLE_ROW );
const SwTableBoxes& rBoxes = pLine->GetTabBoxes();
sal_uInt16 nBoxes = rBoxes.Count();
sal_uInt32 nCPos = 0U;
sal_uInt16 nCol = 0U;
for( sal_uInt16 nBox=0U; nBox<nBoxes; nBox++ )
{
SwTableBox *pBox = rBoxes[nBox];
if( nBox < nBoxes-1U )
nCPos = nCPos + SwWriteTable::GetBoxWidth( pBox );
else
nCPos = pLines->GetWidth();
// Und ihren Index
sal_uInt16 nOldCol = nCol;
SwXMLTableColumn_Impl aCol( nCPos );
bool const bFound = pLines->GetColumns().Seek_Entry( &aCol, &nCol );
OSL_ENSURE( bFound, "couldn't find column" );
(void) bFound; // unused in non-debug
const SwStartNode *pBoxSttNd = pBox->GetSttNd();
if( pBoxSttNd )
{
SwFrmFmt *pFrmFmt2 = pBox->GetFrmFmt();
if( rExpCells.AddCell( *pFrmFmt2, rNamePrefix, nOldCol, nLine,
bTop) )
ExportFmt( *pFrmFmt2, XML_TABLE_CELL );
Reference < XCell > xCell = SwXCell::CreateXCell(
(SwFrmFmt *)rTblInfo.GetTblFmt(),
pBox,
(SwTable *)rTblInfo.GetTable() );
if (xCell.is())
{
Reference < XText > xText( xCell, UNO_QUERY );
if( !rTblInfo.IsBaseSectionValid() )
{
Reference<XPropertySet> xCellPropertySet( xCell,
UNO_QUERY );
OUString sTextSection( RTL_CONSTASCII_USTRINGPARAM("TextSection") );
Any aAny = xCellPropertySet->getPropertyValue(sTextSection);
Reference < XTextSection > xTextSection;
aAny >>= xTextSection;
rTblInfo.SetBaseSection( xTextSection );
}
const bool bExportContent = (getExportFlags() & EXPORT_CONTENT ) != 0;
if ( !bExportContent )
{
// AUTOSTYLES - not needed anymore if we are currently exporting content.xml
GetTextParagraphExport()->collectTextAutoStyles(
xText, rTblInfo.GetBaseSection(), IsShowProgress() );
}
}
else {
OSL_FAIL("here should be a XCell");
}
}
else
{
lcl_xmltble_appendBoxPrefix( sBuffer, rNamePrefix, nOldCol,
nLine, bTop );
ExportTableLinesAutoStyles( pBox->GetTabLines(),
nAbsWidth, nBaseWidth,
sBuffer.makeStringAndClear(),
rExpCols, rExpRows, rExpCells,
rTblInfo );
}
nCol++;
}
}
}
void SwXMLExport::ExportTableAutoStyles( const SwTableNode& rTblNd )
{
const SwTable& rTbl = rTblNd.GetTable();
const SwFrmFmt *pTblFmt = rTbl.GetFrmFmt();
if( pTblFmt )
{
sal_Int16 eTabHoriOri = pTblFmt->GetHoriOrient().GetHoriOrient();
const SwFmtFrmSize& rFrmSize = pTblFmt->GetFrmSize();
sal_uInt32 nAbsWidth = rFrmSize.GetSize().Width();
sal_uInt32 nBaseWidth = 0UL;
sal_Int8 nPrcWidth = rFrmSize.GetWidthPercent();
sal_Bool bFixAbsWidth = nPrcWidth != 0 || /*text::*/HoriOrientation::NONE == eTabHoriOri
|| /*text::*/HoriOrientation::FULL == eTabHoriOri;
if( bFixAbsWidth )
{
nBaseWidth = nAbsWidth;
nAbsWidth = pTblFmt->FindLayoutRect(sal_True).Width();
if( !nAbsWidth )
{
// TODO???
}
}
ExportTableFmt( *pTblFmt, nAbsWidth );
OUString sName( pTblFmt->GetName() );
SwXMLTableColumnsSortByWidth_Impl aExpCols( 10, 10 );
SwXMLTableFrmFmtsSort_Impl aExpRows( 10, 10 );
SwXMLTableFrmFmtsSort_Impl aExpCells( 10, 10 );
SwXMLTableInfo_Impl aTblInfo( &rTbl );
ExportTableLinesAutoStyles( rTbl.GetTabLines(), nAbsWidth, nBaseWidth,
sName, aExpCols, aExpRows, aExpCells,
aTblInfo, sal_True);
}
}
// ---------------------------------------------------------------------
void SwXMLExport::ExportTableBox( const SwTableBox& rBox,
sal_uInt16 nColSpan,
sal_uInt16 nRowSpan,
SwXMLTableInfo_Impl& rTblInfo )
{
const SwStartNode *pBoxSttNd = rBox.GetSttNd();
if( pBoxSttNd )
{
const SwFrmFmt *pFrmFmt = rBox.GetFrmFmt();
if( pFrmFmt )
{
const String& rName = pFrmFmt->GetName();
if( rName.Len() )
{
AddAttribute( XML_NAMESPACE_TABLE, XML_STYLE_NAME, EncodeStyleName(rName) );
}
}
}
if( nRowSpan != 1 )
{
OUStringBuffer sTmp;
sTmp.append( (sal_Int32)nRowSpan );
AddAttribute( XML_NAMESPACE_TABLE, XML_NUMBER_ROWS_SPANNED,
sTmp.makeStringAndClear() );
}
if( nColSpan != 1 )
{
OUStringBuffer sTmp;
sTmp.append( (sal_Int32)nColSpan );
AddAttribute( XML_NAMESPACE_TABLE, XML_NUMBER_COLUMNS_SPANNED,
sTmp.makeStringAndClear() );
}
{
if( pBoxSttNd )
{
// start node -> normal cell
// get cell range for table
Reference<XCell> xCell = SwXCell::CreateXCell( (SwFrmFmt *)rTblInfo.GetTblFmt(),
(SwTableBox *)&rBox,
(SwTable *)rTblInfo.GetTable() );
if (xCell.is())
{
Reference<XText> xText( xCell, UNO_QUERY );
// get formula (and protection)
OUString sCellFormula = xCell->getFormula();
// if this cell has a formula, export it
// (with value and number format)
if (sCellFormula.getLength()>0)
{
OUString sQValue =
GetNamespaceMap().GetQNameByKey(
XML_NAMESPACE_OOOW, sCellFormula, sal_False );
// formula
AddAttribute(XML_NAMESPACE_TABLE, XML_FORMULA, sQValue );
}
// value and format (if NumberFormat != -1)
Reference<XPropertySet> xCellPropertySet(xCell,
UNO_QUERY);
if (xCellPropertySet.is())
{
sal_Int32 nNumberFormat = 0;
Any aAny = xCellPropertySet->getPropertyValue(sNumberFormat);
aAny >>= nNumberFormat;
if (NUMBERFORMAT_TEXT == nNumberFormat)
{
// text format
AddAttribute( XML_NAMESPACE_OFFICE,
XML_VALUE_TYPE, XML_STRING );
}
else if ( (-1 != nNumberFormat) && (xText->getString().getLength() > 0) )
{
// number format key:
// (export values only if cell contains text;)
XMLNumberFormatAttributesExportHelper::
SetNumberFormatAttributes(
*this, nNumberFormat, xCell->getValue(),
sal_True );
}
// else: invalid key; ignore
// cell protection
aAny = xCellPropertySet->getPropertyValue(sIsProtected);
if (*(sal_Bool*)aAny.getValue())
{
AddAttribute( XML_NAMESPACE_TABLE, XML_PROTECTED,
XML_TRUE );
}
if( !rTblInfo.IsBaseSectionValid() )
{
OUString sTextSection( RTL_CONSTASCII_USTRINGPARAM("TextSection") );
aAny = xCellPropertySet->getPropertyValue(sTextSection);
Reference < XTextSection > xTextSection;
aAny >>= xTextSection;
rTblInfo.SetBaseSection( xTextSection );
}
}
// export cell element
SvXMLElementExport aElem( *this, XML_NAMESPACE_TABLE,
XML_TABLE_CELL, sal_True, sal_True );
// export cell content
GetTextParagraphExport()->exportText( xText,
rTblInfo.GetBaseSection(),
IsShowProgress() );
}
else
{
OSL_FAIL("here should be a XCell");
ClearAttrList();
}
}
else
{
// no start node -> merged cells: export subtable in cell
SvXMLElementExport aElem( *this, XML_NAMESPACE_TABLE,
XML_TABLE_CELL, sal_True, sal_True );
{
AddAttribute( XML_NAMESPACE_TABLE, XML_IS_SUB_TABLE,
GetXMLToken( XML_TRUE ) );
SvXMLElementExport aElemExport( *this, XML_NAMESPACE_TABLE,
XML_TABLE, sal_True, sal_True );
ExportTableLines( rBox.GetTabLines(), rTblInfo );
}
}
}
}
void SwXMLExport::ExportTableLine( const SwTableLine& rLine,
const SwXMLTableLines_Impl& rLines,
SwXMLTableInfo_Impl& rTblInfo )
{
if( rLine.hasSoftPageBreak() )
{
SvXMLElementExport aElem( *this, XML_NAMESPACE_TEXT,
XML_SOFT_PAGE_BREAK, sal_True, sal_True );
}
const SwFrmFmt *pFrmFmt = rLine.GetFrmFmt();
if( pFrmFmt )
{
const String& rName = pFrmFmt->GetName();
if( rName.Len() )
{
AddAttribute( XML_NAMESPACE_TABLE, XML_STYLE_NAME, EncodeStyleName(rName) );
}
}
{
SvXMLElementExport aElem( *this, XML_NAMESPACE_TABLE,
XML_TABLE_ROW, sal_True, sal_True );
const SwTableBoxes& rBoxes = rLine.GetTabBoxes();
sal_uInt16 nBoxes = rBoxes.Count();
sal_uInt32 nCPos = 0U;
sal_uInt16 nCol = 0U;
for( sal_uInt16 nBox=0U; nBox<nBoxes; nBox++ )
{
const SwTableBox *pBox = rBoxes[nBox];
// NEW TABLES
const long nRowSpan = pBox->getRowSpan();
if( nRowSpan < 1 )
{
SvXMLElementExport aElem2( *this, XML_NAMESPACE_TABLE,
XML_COVERED_TABLE_CELL, sal_True,
sal_False );
}
if( nBox < nBoxes-1U )
nCPos = nCPos + SwWriteTable::GetBoxWidth( pBox );
else
nCPos = rLines.GetWidth();
// Und ihren Index
const sal_uInt16 nOldCol = nCol;
{
SwXMLTableColumn_Impl aCol( nCPos );
const bool bFound =
rLines.GetColumns().Seek_Entry( &aCol, &nCol );
OSL_ENSURE( bFound, "couldn't find column" );
(void) bFound; // unused in non-debug
}
// #i95726# - Some fault tolerance, if table is somehow corrupted.
if ( nCol < nOldCol )
{
OSL_FAIL( "table and/or table information seems to be corrupted." );
if ( nBox == nBoxes - 1 )
{
nCol = rLines.GetColumns().Count() - 1;
}
else
{
nCol = nOldCol;
}
}
sal_uInt16 nColSpan = nCol - nOldCol + 1U;
if ( nRowSpan >= 1 )
ExportTableBox( *pBox, nColSpan, static_cast< sal_uInt16 >(nRowSpan), rTblInfo );
for( sal_uInt16 i=nOldCol; i<nCol; i++ )
{
SvXMLElementExport aElemExport( *this, XML_NAMESPACE_TABLE,
XML_COVERED_TABLE_CELL, sal_True,
sal_False );
}
nCol++;
}
}
}
void SwXMLExport::ExportTableLines( const SwTableLines& rLines,
SwXMLTableInfo_Impl& rTblInfo,
sal_uInt16 nHeaderRows )
{
OSL_ENSURE( pTableLines && !pTableLines->empty(),
"SwXMLExport::ExportTableLines: table columns infos missing" );
if( !pTableLines || pTableLines->empty() )
return;
SwXMLTableLines_Impl* pLines = NULL;
size_t nInfoPos;
for( nInfoPos=0; nInfoPos < pTableLines->size(); nInfoPos++ )
{
if( pTableLines->at( nInfoPos )->GetLines() == &rLines )
{
pLines = pTableLines->at( nInfoPos );
break;
}
}
OSL_ENSURE( pLines,
"SwXMLExport::ExportTableLines: table columns info missing" );
OSL_ENSURE( 0==nInfoPos,
"SwXMLExport::ExportTableLines: table columns infos are unsorted" );
if( !pLines )
return;
SwXMLTableLinesCache_Impl::iterator it = pTableLines->begin();
advance( it, nInfoPos );
pTableLines->erase( it );
if( pTableLines->empty() )
{
delete pTableLines ;
pTableLines = NULL;
}
// pass 2: export columns
const SwXMLTableColumns_Impl& rCols = pLines->GetColumns();
sal_uInt16 nColumn = 0U;
sal_uInt16 nColumns = rCols.Count();
sal_uInt16 nColRep = 1U;
SwXMLTableColumn_Impl *pColumn = (nColumns > 0) ? rCols[0U] : 0;
while( pColumn )
{
nColumn++;
SwXMLTableColumn_Impl *pNextColumn =
(nColumn < nColumns) ? rCols[nColumn] : 0;
if( pNextColumn &&
pNextColumn->GetStyleName() == pColumn->GetStyleName() )
{
nColRep++;
}
else
{
AddAttribute( XML_NAMESPACE_TABLE, XML_STYLE_NAME,
EncodeStyleName(pColumn->GetStyleName()) );
if( nColRep > 1U )
{
OUStringBuffer sTmp(4);
sTmp.append( (sal_Int32)nColRep );
AddAttribute( XML_NAMESPACE_TABLE, XML_NUMBER_COLUMNS_REPEATED,
sTmp.makeStringAndClear() );
}
{
SvXMLElementExport aElem( *this, XML_NAMESPACE_TABLE,
XML_TABLE_COLUMN, sal_True, sal_True );
}
nColRep = 1U;
}
pColumn = pNextColumn;
}
// pass 3: export line/rows
sal_uInt16 nLines = rLines.Count();
// export header rows, if present
if( nHeaderRows > 0 )
{
SvXMLElementExport aElem( *this, XML_NAMESPACE_TABLE,
XML_TABLE_HEADER_ROWS, sal_True, sal_True );
OSL_ENSURE( nHeaderRows <= nLines, "more headers then lines?" );
for( sal_uInt16 nLine = 0U; nLine < nHeaderRows; nLine++ )
ExportTableLine( *(rLines[nLine]), *pLines, rTblInfo );
}
// export remaining rows
for( sal_uInt16 nLine = nHeaderRows; nLine < nLines; nLine++ )
{
ExportTableLine( *(rLines[nLine]), *pLines, rTblInfo );
}
delete pLines;
}
sal_Bool lcl_xmltble_ClearName_Line( const SwTableLine*& rpLine, void* );
sal_Bool lcl_xmltble_ClearName_Box( const SwTableBox*& rpBox, void* )
{
if( !rpBox->GetSttNd() )
{
((SwTableBox *)rpBox)->GetTabLines().ForEach(
&lcl_xmltble_ClearName_Line, 0 );
}
else
{
SwFrmFmt *pFrmFmt = ((SwTableBox *)rpBox)->GetFrmFmt();
if( pFrmFmt && pFrmFmt->GetName().Len() )
pFrmFmt->SetName( aEmptyStr );
}
return sal_True;
}
sal_Bool lcl_xmltble_ClearName_Line( const SwTableLine*& rpLine, void* )
{
((SwTableLine *)rpLine)->GetTabBoxes().ForEach(
&lcl_xmltble_ClearName_Box, 0 );
return sal_True;
}
void SwXMLExport::ExportTable( const SwTableNode& rTblNd )
{
const SwTable& rTbl = rTblNd.GetTable();
const SwFrmFmt *pTblFmt = rTbl.GetFrmFmt();
if( pTblFmt && pTblFmt->GetName().Len() )
{
AddAttribute( XML_NAMESPACE_TABLE, XML_NAME, pTblFmt->GetName() );
AddAttribute( XML_NAMESPACE_TABLE, XML_STYLE_NAME,
EncodeStyleName( pTblFmt->GetName() ) );
}
{
SvXMLElementExport aElem( *this, XML_NAMESPACE_TABLE, XML_TABLE,
sal_True, sal_True );
// export DDE source (if this is a DDE table)
if ( rTbl.ISA(SwDDETable) )
{
// get DDE Field Type (contains the DDE connection)
const SwDDEFieldType* pDDEFldType =
((SwDDETable&)rTbl).GetDDEFldType();
// connection name
AddAttribute( XML_NAMESPACE_OFFICE, XML_NAME,
pDDEFldType->GetName() );
// DDE command
const String sCmd = pDDEFldType->GetCmd();
AddAttribute( XML_NAMESPACE_OFFICE, XML_DDE_APPLICATION,
sCmd.GetToken(0, sfx2::cTokenSeperator) );
AddAttribute( XML_NAMESPACE_OFFICE, XML_DDE_ITEM,
sCmd.GetToken(1, sfx2::cTokenSeperator) );
AddAttribute( XML_NAMESPACE_OFFICE, XML_DDE_TOPIC,
sCmd.GetToken(2, sfx2::cTokenSeperator) );
// auto update
if (pDDEFldType->GetType() == sfx2::LINKUPDATE_ALWAYS)
{
AddAttribute( XML_NAMESPACE_OFFICE,
XML_AUTOMATIC_UPDATE, XML_TRUE );
}
// DDE source element (always empty)
SvXMLElementExport aSource(*this, XML_NAMESPACE_OFFICE,
XML_DDE_SOURCE, sal_True, sal_False);
}
SwXMLTableInfo_Impl aTblInfo( &rTbl );
ExportTableLines( rTbl.GetTabLines(), aTblInfo, rTbl.GetRowsToRepeat() );
((SwTable &)rTbl).GetTabLines().ForEach( &lcl_xmltble_ClearName_Line,
0 );
}
}
void SwXMLTextParagraphExport::exportTable(
const Reference < XTextContent > & rTextContent,
sal_Bool bAutoStyles, sal_Bool _bProgress )
{
sal_Bool bOldShowProgress = ((SwXMLExport&)GetExport()).IsShowProgress();
((SwXMLExport&)GetExport()).SetShowProgress( _bProgress );
Reference < XTextTable > xTxtTbl( rTextContent, UNO_QUERY );
OSL_ENSURE( xTxtTbl.is(), "text table missing" );
if( xTxtTbl.is() )
{
const SwXTextTable *pXTable = 0;
Reference<XUnoTunnel> xTableTunnel( rTextContent, UNO_QUERY);
if( xTableTunnel.is() )
{
pXTable = reinterpret_cast< SwXTextTable * >(
sal::static_int_cast< sal_IntPtr >( xTableTunnel->getSomething( SwXTextTable::getUnoTunnelId() )));
OSL_ENSURE( pXTable, "SwXTextTable missing" );
}
if( pXTable )
{
SwFrmFmt *pFmt = pXTable->GetFrmFmt();
OSL_ENSURE( pFmt, "table format missing" );
const SwTable *pTbl = SwTable::FindTable( pFmt );
OSL_ENSURE( pTbl, "table missing" );
const SwTableNode *pTblNd = pTbl->GetTableNode();
OSL_ENSURE( pTblNd, "table node missing" );
if( bAutoStyles )
{
SwNodeIndex aIdx( *pTblNd );
// AUTOSTYLES: Optimization: Do not export table autostyle if
// we are currently exporting the content.xml stuff and
// the table is located in header/footer:
// During the flat XML export (used e.g. by .sdw-export)
// ALL flags are set at the same time.
const bool bExportStyles = ( GetExport().getExportFlags() & EXPORT_STYLES ) != 0;
if ( bExportStyles || !pFmt->GetDoc()->IsInHeaderFooter( aIdx ) )
((SwXMLExport&)GetExport()).ExportTableAutoStyles( *pTblNd );
}
else
{
((SwXMLExport&)GetExport()).ExportTable( *pTblNd );
}
}
}
((SwXMLExport&)GetExport()).SetShowProgress( bOldShowProgress );
}
void SwXMLExport::DeleteTableLines()
{
if ( pTableLines )
{
for ( size_t i = 0, n = pTableLines->size(); i < n; ++i )
delete pTableLines->at( i );
pTableLines->clear();
delete pTableLines;
}
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|