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 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409
|
/* -*- 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 <stdlib.h>
#include <hintids.hxx>
#include <comphelper/string.hxx>
#include <svl/urihelper.hxx>
#include <rtl/tencinfo.h>
#include <vcl/wrkwin.hxx>
#include <sfx2/linkmgr.hxx>
#include <svtools/htmlcfg.hxx>
#include <vcl/svapp.hxx>
#include <i18npool/mslangid.hxx>
#include <sfx2/frmhtmlw.hxx>
#include <svx/xoutbmp.hxx>
#include <svx/htmlmode.hxx>
#include <editeng/lrspitem.hxx>
#include <editeng/colritem.hxx>
#include <editeng/brshitem.hxx>
#include <editeng/fontitem.hxx>
#include <editeng/scripttypeitem.hxx>
#include <editeng/langitem.hxx>
#include <svl/stritem.hxx>
#include <editeng/frmdiritem.hxx>
#include <com/sun/star/document/XDocumentPropertiesSupplier.hpp>
#include <com/sun/star/document/XDocumentProperties.hpp>
#include <com/sun/star/form/XFormsSupplier.hpp>
#include <com/sun/star/form/XForm.hpp>
#include <com/sun/star/form/XImageProducerSupplier.hpp>
#include <com/sun/star/form/XFormController.hpp>
#include <com/sun/star/container/XContainer.hpp>
#include <com/sun/star/container/XIndexContainer.hpp>
#include <com/sun/star/container/XSet.hpp>
#include <fmthdft.hxx>
#include <fmtfld.hxx>
#include <fmtpdsc.hxx>
#include <txatbase.hxx>
#include <frmatr.hxx>
#include <charfmt.hxx>
#include <docary.hxx>
#include <pam.hxx>
#include <doc.hxx>
#include <ndtxt.hxx>
#include <mdiexp.hxx> // ...Percent()
#include <fltini.hxx>
#include <viewopt.hxx>
#include <IMark.hxx> // fuer SwBookmark ...
#include <poolfmt.hxx>
#include <pagedesc.hxx>
#include <section.hxx>
#include <swtable.hxx>
#include <fldbas.hxx>
#include <fmtclds.hxx>
#include <docsh.hxx>
#include <wrthtml.hxx>
#include <htmlnum.hxx>
#include <htmlfly.hxx>
#include <swmodule.hxx>
#include <statstr.hrc> // ResId fuer Statusleiste
#include <swerror.h>
#include <rtl/strbuf.hxx>
#define MAX_INDENT_LEVEL 20
#if defined(UNX)
const sal_Char SwHTMLWriter::sNewLine = '\012';
#else
const sal_Char SwHTMLWriter::sNewLine[] = "\015\012";
#endif
static sal_Char sIndentTabs[MAX_INDENT_LEVEL+2] =
"\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t";
SwHTMLWriter::SwHTMLWriter( const String& rBaseURL )
{
SetBaseURL( rBaseURL );
bFirstLine = sal_True;
nBkmkTabPos = -1;
pDfltColor = 0;
nImgMapCnt = 1;
pStartNdIdx = 0;
pTemplate = 0;
pNumRuleInfo = new SwHTMLNumRuleInfo;
pNextNumRuleInfo = 0;
pFootEndNotes = 0;
pFmtFtn = 0;
eDestEnc = RTL_TEXTENCODING_MS_1252;
nDirection = FRMDIR_HORI_LEFT_TOP;
}
SwHTMLWriter::~SwHTMLWriter()
{
delete pNumRuleInfo;
}
sal_uLong SwHTMLWriter::WriteStream()
{
// neue Konfiguration setzen
SvxHtmlOptions& rHtmlOptions = SvxHtmlOptions::Get();
// die Fontgroessen 1-7
aFontHeights[0] = rHtmlOptions.GetFontSize( 0 ) * 20;
aFontHeights[1] = rHtmlOptions.GetFontSize( 1 ) * 20;
aFontHeights[2] = rHtmlOptions.GetFontSize( 2 ) * 20;
aFontHeights[3] = rHtmlOptions.GetFontSize( 3 ) * 20;
aFontHeights[4] = rHtmlOptions.GetFontSize( 4 ) * 20;
aFontHeights[5] = rHtmlOptions.GetFontSize( 5 ) * 20;
aFontHeights[6] = rHtmlOptions.GetFontSize( 6 ) * 20;
// ueberhaupt Styles ausgeben
// (dann auch obere und untere Absatz-Abstaende)
nExportMode = rHtmlOptions.GetExportMode();
nHTMLMode = GetHtmlMode(0);
if( HTML_CFG_WRITER==nExportMode ||
HTML_CFG_NS40==nExportMode )
nHTMLMode |= HTMLMODE_BLOCK_SPACER;
if( HTML_CFG_WRITER==nExportMode || HTML_CFG_MSIE==nExportMode )
nHTMLMode |= (HTMLMODE_FLOAT_FRAME | HTMLMODE_LSPACE_IN_NUMBUL);
if( HTML_CFG_MSIE==nExportMode )
nHTMLMode |= HTMLMODE_NBSP_IN_TABLES;
if( HTML_CFG_WRITER==nExportMode || HTML_CFG_NS40==nExportMode ||
HTML_CFG_MSIE==nExportMode )
nHTMLMode |= HTMLMODE_ABS_POS_FLY|HTMLMODE_ABS_POS_DRAW;
if( HTML_CFG_WRITER==nExportMode )
nHTMLMode |= HTMLMODE_FLY_MARGINS;
if( HTML_CFG_NS40==nExportMode )
nHTMLMode |= HTMLMODE_BORDER_NONE;
nHTMLMode |= HTMLMODE_FONT_GENERIC;
if( HTML_CFG_NS40==nExportMode )
nHTMLMode |= HTMLMODE_NO_CONTROL_CENTERING;
bCfgOutStyles = IsHTMLMode(HTMLMODE_SOME_STYLES |
HTMLMODE_FULL_STYLES);
bCfgNetscape4 = (HTML_CFG_NS40==nExportMode);
if( IsHTMLMode(HTMLMODE_SOME_STYLES | HTMLMODE_FULL_STYLES) )
nHTMLMode |= HTMLMODE_PRINT_EXT;
const sal_Char *pHelpHack = getenv( "HelpEx" );
if( pHelpHack )
{
rtl::OString aTmp(pHelpHack);
if (aTmp.equalsIgnoreAsciiCase("Hilfe"))
nHTMLMode |= HTMLMODE_NO_BR_AT_PAREND;
}
eCSS1Unit = (FieldUnit)SW_MOD()->GetMetric( pDoc->get(IDocumentSettingAccess::HTML_MODE) );
sal_Bool bWriteUTF8 = bWriteClipboardDoc;
eDestEnc = bWriteUTF8 ? RTL_TEXTENCODING_UTF8
: rHtmlOptions.GetTextEncoding();
const sal_Char *pCharSet =
rtl_getBestMimeCharsetFromTextEncoding( eDestEnc );
eDestEnc = rtl_getTextEncodingFromMimeCharset( pCharSet );
// Nur noch fuer den MS-IE ziehen wir den Export von Styles vor.
bCfgPreferStyles = HTML_CFG_MSIE==nExportMode;
bCfgStarBasic = rHtmlOptions.IsStarBasic();
bCfgFormFeed = !IsHTMLMode(HTMLMODE_PRINT_EXT);
bCfgCpyLinkedGrfs = rHtmlOptions.IsSaveGraphicsLocal();
// die HTML-Vorlage holen
sal_Bool bOldHTMLMode = sal_False;
sal_uInt16 nOldTxtFmtCollCnt = 0, nOldCharFmtCnt = 0;
OSL_ENSURE( !pTemplate, "Wo kommt denn die HTML-Vorlage hier her?" );
pTemplate = ((HTMLReader*)ReadHTML)->GetTemplateDoc();
if( pTemplate )
{
pTemplate->acquire();
bOldHTMLMode = pTemplate->get(IDocumentSettingAccess::HTML_MODE);
pTemplate->set(IDocumentSettingAccess::HTML_MODE, true);
nOldTxtFmtCollCnt = pTemplate->GetTxtFmtColls()->Count();
nOldCharFmtCnt = pTemplate->GetCharFmts()->Count();
}
if( bShowProgress )
::StartProgress( STR_STATSTR_W4WWRITE, 0, pDoc->GetNodes().Count(),
pDoc->GetDocShell());
pDfltColor = 0;
pFootEndNotes = 0;
pFmtFtn = 0;
bOutTable = bOutHeader = bOutFooter = bOutFlyFrame = sal_False;
pxFormComps = 0;
nFormCntrlCnt = 0;
bPreserveForm = sal_False;
bClearLeft = bClearRight = sal_False;
bLFPossible = sal_False;
nLeftMargin = nDfltLeftMargin = nDfltRightMargin = 0;
nDfltTopMargin = nDfltBottomMargin = 0;
nFirstLineIndent = nDfltFirstLineIndent = 0;
bPoolCollTextModified = sal_False;
bFirstCSS1Property = bFirstCSS1Rule = sal_False;
bCSS1IgnoreFirstPageDesc = sal_False;
nIndentLvl = 0;
nWhishLineLen = 70;
nLastLFPos = 0;
nDefListLvl = 0;
nDefListMargin = ((pTemplate && !bCfgOutStyles) ? pTemplate : pDoc)
->GetTxtCollFromPool( RES_POOLCOLL_HTML_DD, false )
->GetLRSpace().GetTxtLeft();
nHeaderFooterSpace = 0;
nTxtAttrsToIgnore = 0;
nCSS1OutMode = 0;
sal_uInt16 nScript = SvtLanguageOptions::GetScriptTypeOfLanguage(
static_cast< LanguageType >( GetAppLanguage() ) );
switch( nScript )
{
case SCRIPTTYPE_ASIAN:
nCSS1Script = CSS1_OUTMODE_CJK;
break;
case SCRIPTTYPE_COMPLEX:
nCSS1Script = CSS1_OUTMODE_CTL;
break;
default:
nCSS1Script = CSS1_OUTMODE_WESTERN;
break;
}
eLang = ((const SvxLanguageItem&)pDoc
->GetDefault(GetLangWhichIdFromScript(nCSS1Script))).GetLanguage();
nFootNote = nEndNote = 0;
nWarn = 0;
GetNumInfo().Clear();
pNextNumRuleInfo = 0;
rtl::OString aStartTags;
// Tabellen und Bereiche am Doc.-Anfang beachten
{
SwTableNode * pTNd = pCurPam->GetNode()->FindTableNode();
if( pTNd && bWriteAll )
{
// mit dem Tabellen-Node anfangen !!
pCurPam->GetPoint()->nNode = *pTNd;
if( bWriteOnlyFirstTable )
pCurPam->GetMark()->nNode = *pTNd->EndOfSectionNode();
}
// erster Node (der einen Seitenumbruch enthalten darf)
pStartNdIdx = new SwNodeIndex( pCurPam->GetPoint()->nNode );
SwSectionNode * pSNd = pCurPam->GetNode()->FindSectionNode();
while( pSNd )
{
if( bWriteAll )
{
// mit dem Section-Node anfangen !!
pCurPam->GetPoint()->nNode = *pSNd;
}
else
{
OSL_ENSURE( FILE_LINK_SECTION != pSNd->GetSection().GetType(),
"Export gelinkter Bereiche am Dok-Anfang ist nicht implemntiert" );
// nur das Tag fuer die Section merken
rtl::OString aName = HTMLOutFuncs::ConvertStringToHTML(
pSNd->GetSection().GetSectionName(), eDestEnc,
&aNonConvertableCharacters );
rtl::OStringBuffer sOut;
sOut.append('<').append(OOO_STRING_SVTOOLS_HTML_division)
.append(' ').append(OOO_STRING_SVTOOLS_HTML_O_id)
.append("=\"").append(aName).append('\"').append('>')
.append(aStartTags);
aStartTags = sOut.makeStringAndClear();
}
// FindSectionNode() an einem SectionNode liefert den selben!
pSNd = pSNd->StartOfSectionNode()->FindSectionNode();
}
}
// Tabelle fuer die freifliegenden Rahmen erzeugen, aber nur wenn
// das gesamte Dokument geschrieben wird
pHTMLPosFlyFrms = 0;
CollectFlyFrms();
nLastParaToken = 0;
GetControls();
CollectLinkTargets();
sal_uInt16 nHeaderAttrs = 0;
pCurrPageDesc = MakeHeader( nHeaderAttrs );
bLFPossible = sal_True;
// Formulare, die nur HiddenControls enthalten ausgeben.
OutHiddenForms();
if( !aStartTags.isEmpty() )
Strm() << aStartTags.getStr();
const SfxPoolItem *pItem;
const SfxItemSet& rPageItemSet = pCurrPageDesc->GetMaster().GetAttrSet();
if( !bWriteClipboardDoc && pDoc->GetDocShell() &&
(!pDoc->get(IDocumentSettingAccess::HTML_MODE) &&
!pDoc->get(IDocumentSettingAccess::BROWSE_MODE)) &&
SFX_ITEM_SET == rPageItemSet.GetItemState( RES_HEADER, sal_True, &pItem) )
{
const SwFrmFmt *pHeaderFmt =
((const SwFmtHeader *)pItem)->GetHeaderFmt();
if( pHeaderFmt )
OutHTML_HeaderFooter( *this, *pHeaderFmt, sal_True );
}
nTxtAttrsToIgnore = nHeaderAttrs;
Out_SwDoc( pOrigPam );
nTxtAttrsToIgnore = 0;
if( pxFormComps && pxFormComps->is() )
OutForm( sal_False, *pxFormComps );
if( pFootEndNotes )
OutFootEndNotes();
if( !bWriteClipboardDoc && pDoc->GetDocShell() &&
(!pDoc->get(IDocumentSettingAccess::HTML_MODE) && !pDoc->get(IDocumentSettingAccess::BROWSE_MODE)) &&
SFX_ITEM_SET == rPageItemSet.GetItemState( RES_FOOTER, sal_True, &pItem) )
{
const SwFrmFmt *pFooterFmt =
((const SwFmtFooter *)pItem)->GetFooterFmt();
if( pFooterFmt )
OutHTML_HeaderFooter( *this, *pFooterFmt, sal_False );
}
if( bLFPossible )
OutNewLine();
HTMLOutFuncs::Out_AsciiTag( Strm(), OOO_STRING_SVTOOLS_HTML_body, sal_False );
OutNewLine();
HTMLOutFuncs::Out_AsciiTag( Strm(), OOO_STRING_SVTOOLS_HTML_html, sal_False );
// loesche die Tabelle mit den freifliegenden Rahmen
sal_uInt16 i;
OSL_ENSURE( !pHTMLPosFlyFrms, "Wurden nicht alle Rahmen ausgegeben" );
if( pHTMLPosFlyFrms )
{
pHTMLPosFlyFrms->DeleteAndDestroy( 0, pHTMLPosFlyFrms->Count() );
delete pHTMLPosFlyFrms;
pHTMLPosFlyFrms = 0;
}
if( aHTMLControls.Count() )
aHTMLControls.DeleteAndDestroy( sal_uInt16(0), aHTMLControls.Count() );
if( aChrFmtInfos.Count() )
aChrFmtInfos.DeleteAndDestroy( sal_uInt16(0), aChrFmtInfos.Count() );
if( aTxtCollInfos.Count() )
aTxtCollInfos.DeleteAndDestroy( sal_uInt16(0), aTxtCollInfos.Count() );
if( aImgMapNames.Count() )
aImgMapNames.DeleteAndDestroy( sal_uInt16(0), aImgMapNames.Count() );
aImplicitMarks.clear();
aOutlineMarks.clear();
aOutlineMarkPoss.clear();
aNumRuleNames.clear();
aScriptParaStyles.clear();
aScriptTextStyles.clear();
delete pDfltColor;
pDfltColor = 0;
delete pStartNdIdx;
pStartNdIdx = 0;
delete pxFormComps;
pxFormComps = 0;
OSL_ENSURE( !pFootEndNotes,
"SwHTMLWriter::Write: Ftns nicht durch OutFootEndNotes geloescht" );
pCurrPageDesc = 0;
ClearNextNumInfo();
for( i=0; i<MAXLEVEL; i++ )
aBulletGrfs[i].Erase();
aNonConvertableCharacters.Erase();
if( bShowProgress )
::EndProgress( pDoc->GetDocShell() );
if( pTemplate )
{
// Waehrend des Exports angelegte Zeichen- und Abastzvorlagen
// loeschen
sal_uInt16 nTxtFmtCollCnt = pTemplate->GetTxtFmtColls()->Count();
while( nTxtFmtCollCnt > nOldTxtFmtCollCnt )
pTemplate->DelTxtFmtColl( --nTxtFmtCollCnt );
OSL_ENSURE( pTemplate->GetTxtFmtColls()->Count() == nOldTxtFmtCollCnt,
"falsche Anzahl TxtFmtColls geloescht" );
sal_uInt16 nCharFmtCnt = pTemplate->GetCharFmts()->Count();
while( nCharFmtCnt > nOldCharFmtCnt )
pTemplate->DelCharFmt( --nCharFmtCnt );
OSL_ENSURE( pTemplate->GetCharFmts()->Count() == nOldCharFmtCnt,
"falsche Anzahl CharFmts geloescht" );
// HTML-Modus wieder restaurieren
pTemplate->set(IDocumentSettingAccess::HTML_MODE, bOldHTMLMode);
if( 0 == pTemplate->release() )
delete pTemplate;
pTemplate = 0;
}
return nWarn;
}
const SwFmtCol *lcl_html_GetFmtCol( const SwHTMLWriter& rHTMLWrt,
const SwSection& rSection,
const SwSectionFmt& rFmt )
{
const SwFmtCol *pCol = 0;
const SfxPoolItem* pItem;
if( rHTMLWrt.IsHTMLMode( HTMLMODE_FRM_COLUMNS ) &&
FILE_LINK_SECTION != rSection.GetType() &&
SFX_ITEM_SET == rFmt.GetAttrSet().GetItemState(RES_COL,sal_False,&pItem) &&
((const SwFmtCol *)pItem)->GetNumCols() > 1 )
{
pCol = (const SwFmtCol *)pItem;
}
return pCol;
}
sal_Bool lcl_html_IsMultiColStart( const SwHTMLWriter& rHTMLWrt, sal_uLong nIndex )
{
sal_Bool bRet = sal_False;
const SwSectionNode *pSectNd =
rHTMLWrt.pDoc->GetNodes()[nIndex]->GetSectionNode();
if( pSectNd )
{
const SwSection& rSection = pSectNd->GetSection();
const SwSectionFmt *pFmt = rSection.GetFmt();
if( pFmt && lcl_html_GetFmtCol( rHTMLWrt, rSection, *pFmt ) )
bRet = sal_True;
}
return bRet;
}
sal_Bool lcl_html_IsMultiColEnd( const SwHTMLWriter& rHTMLWrt, sal_uLong nIndex )
{
sal_Bool bRet = sal_False;
const SwEndNode *pEndNd = rHTMLWrt.pDoc->GetNodes()[nIndex]->GetEndNode();
if( pEndNd )
bRet = lcl_html_IsMultiColStart( rHTMLWrt,
pEndNd->StartOfSectionIndex() );
return bRet;
}
void lcl_html_OutSectionStartTag( SwHTMLWriter& rHTMLWrt,
const SwSection& rSection,
const SwSectionFmt& rFmt,
const SwFmtCol *pCol,
sal_Bool bContinued=sal_False )
{
OSL_ENSURE( pCol || !bContinued, "Continuation of DIV" );
if( rHTMLWrt.bLFPossible )
rHTMLWrt.OutNewLine();
const sal_Char *pTag = pCol ? OOO_STRING_SVTOOLS_HTML_multicol : OOO_STRING_SVTOOLS_HTML_division;
rtl::OStringBuffer sOut;
sOut.append('<').append(pTag);
const String& rName = rSection.GetSectionName();
if( rName.Len() && !bContinued )
{
sOut.append(' ').append(OOO_STRING_SVTOOLS_HTML_O_id).
append(RTL_CONSTASCII_STRINGPARAM("=\""));
rHTMLWrt.Strm() << sOut.makeStringAndClear().getStr();
HTMLOutFuncs::Out_String( rHTMLWrt.Strm(), rName, rHTMLWrt.eDestEnc, &rHTMLWrt.aNonConvertableCharacters );
sOut.append('\"');
}
sal_uInt16 nDir = rHTMLWrt.GetHTMLDirection( rFmt.GetAttrSet() );
rHTMLWrt.Strm() << sOut.makeStringAndClear().getStr();
rHTMLWrt.OutDirection( nDir );
if( FILE_LINK_SECTION == rSection.GetType() )
{
sOut.append(' ').append(OOO_STRING_SVTOOLS_HTML_O_href).
append(RTL_CONSTASCII_STRINGPARAM("=\""));
rHTMLWrt.Strm() << sOut.makeStringAndClear().getStr();
const String& aFName = rSection.GetLinkFileName();
String aURL( aFName.GetToken(0,sfx2::cTokenSeperator) );
String aFilter( aFName.GetToken(1,sfx2::cTokenSeperator) );
String aSection( aFName.GetToken(2,sfx2::cTokenSeperator) );
String aEncURL( URIHelper::simpleNormalizedMakeRelative(rHTMLWrt.GetBaseURL(), aURL ) );
sal_Unicode cDelim = 255U;
sal_Bool bURLContainsDelim =
(STRING_NOTFOUND != aEncURL.Search( cDelim ) );
HTMLOutFuncs::Out_String( rHTMLWrt.Strm(), aEncURL,
rHTMLWrt.eDestEnc,
&rHTMLWrt.aNonConvertableCharacters );
const sal_Char *pDelim = "ÿ";
if( aFilter.Len() || aSection.Len() || bURLContainsDelim )
rHTMLWrt.Strm() << pDelim;
if( aFilter.Len() )
HTMLOutFuncs::Out_String( rHTMLWrt.Strm(), aFilter,
rHTMLWrt.eDestEnc, &rHTMLWrt.aNonConvertableCharacters );
if( aSection.Len() || bURLContainsDelim )
rHTMLWrt.Strm() << pDelim;
if( aSection.Len() )
{
xub_StrLen nPos = aSection.Search( '%' );
while( STRING_NOTFOUND != nPos )
{
aSection.Erase( nPos, 1 );
aSection.InsertAscii( "%25", nPos );
nPos = aSection.Search( '%', nPos+3 );
}
nPos = aSection.Search( cDelim );
while( STRING_NOTFOUND != nPos )
{
aSection.Erase( nPos, 1 );
aSection.InsertAscii( "%FF", nPos );
nPos = aSection.Search( cDelim, nPos+3 );
}
HTMLOutFuncs::Out_String( rHTMLWrt.Strm(), aSection,
rHTMLWrt.eDestEnc, &rHTMLWrt.aNonConvertableCharacters );
}
sOut.append('\"');
}
else if( pCol )
{
sOut.append(' ').append(OOO_STRING_SVTOOLS_HTML_O_cols).
append('=').append(static_cast<sal_Int32>(pCol->GetNumCols()));
// minumum gutter width
sal_uInt16 nGutter = pCol->GetGutterWidth( sal_True );
if( nGutter!=USHRT_MAX )
{
if( nGutter && Application::GetDefaultDevice() )
{
nGutter = (sal_uInt16)Application::GetDefaultDevice()
->LogicToPixel( Size(nGutter,0),
MapMode(MAP_TWIP) ).Width();
}
sOut.append(' ').append(OOO_STRING_SVTOOLS_HTML_O_gutter).
append('=').append(static_cast<sal_Int32>(nGutter));
}
}
rHTMLWrt.Strm() << sOut.makeStringAndClear().getStr();
if( rHTMLWrt.IsHTMLMode( rHTMLWrt.bCfgOutStyles ) )
rHTMLWrt.OutCSS1_SectionFmtOptions( rFmt );
rHTMLWrt.Strm() << '>';
rHTMLWrt.bLFPossible = sal_True;
if( rName.Len() && !bContinued )
rHTMLWrt.OutImplicitMark( rName, pMarkToRegion );
rHTMLWrt.IncIndentLevel();
}
void lcl_html_OutSectionEndTag( SwHTMLWriter& rHTMLWrt,
const SwFmtCol *pCol )
{
const sal_Char *pTag = pCol ? OOO_STRING_SVTOOLS_HTML_multicol : OOO_STRING_SVTOOLS_HTML_division;
rHTMLWrt.DecIndentLevel();
if( rHTMLWrt.bLFPossible )
rHTMLWrt.OutNewLine();
HTMLOutFuncs::Out_AsciiTag( rHTMLWrt.Strm(), pTag, sal_False );
rHTMLWrt.bLFPossible = sal_True;
}
static Writer& OutHTML_Section( Writer& rWrt, const SwSectionNode& rSectNd )
{
SwHTMLWriter& rHTMLWrt = (SwHTMLWriter&)rWrt;
// End <PRE> and any <DL>, because a definition list's level may
// change inside the section.
rHTMLWrt.ChangeParaToken( 0 );
rHTMLWrt.OutAndSetDefList( 0 );
const SwSection& rSection = rSectNd.GetSection();
const SwSectionFmt *pFmt = rSection.GetFmt();
OSL_ENSURE( pFmt, "Section without a format?" );
sal_Bool bStartTag = sal_True;
sal_Bool bEndTag = sal_True;
const SwSectionFmt *pSurrFmt = 0;
const SwSectionNode *pSurrSectNd = 0;
const SwSection *pSurrSection = 0;
const SwFmtCol *pSurrCol = 0;
sal_uInt32 nSectSttIdx = rSectNd.GetIndex();
sal_uInt32 nSectEndIdx = rSectNd.EndOfSectionIndex();
const SwFmtCol *pCol = lcl_html_GetFmtCol( rHTMLWrt, rSection, *pFmt );
if( pCol )
{
// If the next node is a columned section node, too, don't export
// an empty section.
if( lcl_html_IsMultiColStart( rHTMLWrt, nSectSttIdx+1 ) )
bStartTag = sal_False;
// The same applies if the section end with another columned section.
if( lcl_html_IsMultiColEnd( rHTMLWrt, nSectEndIdx-1 ) )
bEndTag = sal_False;
//.is there a columned section arround this one?
const SwStartNode *pSttNd = rSectNd.StartOfSectionNode();
if( pSttNd )
{
pSurrSectNd = pSttNd->FindSectionNode();
if( pSurrSectNd )
{
const SwStartNode *pBoxSttNd = pSttNd->FindTableBoxStartNode();
if( !pBoxSttNd ||
pBoxSttNd->GetIndex() < pSurrSectNd->GetIndex() )
{
pSurrSection = &pSurrSectNd->GetSection();
pSurrFmt = pSurrSection->GetFmt();
if( pSurrFmt )
pSurrCol = lcl_html_GetFmtCol( rHTMLWrt, *pSurrSection,
*pSurrFmt );
}
}
}
}
// The surrounding section must be closed before the current one is
// opended, except that it start immediatly before the current one or
// another end immediately before the current one
if( pSurrCol && nSectSttIdx - pSurrSectNd->GetIndex() > 1 &&
!lcl_html_IsMultiColEnd( rHTMLWrt, nSectSttIdx-1 ) )
lcl_html_OutSectionEndTag( rHTMLWrt, pSurrCol );
if( bStartTag )
lcl_html_OutSectionStartTag( rHTMLWrt, rSection, *pFmt, pCol );
{
HTMLSaveData aSaveData( rHTMLWrt,
rHTMLWrt.pCurPam->GetPoint()->nNode.GetIndex()+1,
rSectNd.EndOfSectionIndex(),
sal_False, pFmt );
rHTMLWrt.Out_SwDoc( rHTMLWrt.pCurPam );
}
rHTMLWrt.pCurPam->GetPoint()->nNode = *rSectNd.EndOfSectionNode();
if( bEndTag )
lcl_html_OutSectionEndTag( rHTMLWrt, pCol );
// The surrounding section must be started again, except that it ends
// immeditaly behind the current one.
if( pSurrCol &&
pSurrSectNd->EndOfSectionIndex() - nSectEndIdx > 1 &&
!lcl_html_IsMultiColStart( rHTMLWrt, nSectEndIdx+1 ) )
lcl_html_OutSectionStartTag( rHTMLWrt, *pSurrSection, *pSurrFmt,
pSurrCol, sal_True );
return rWrt;
}
void SwHTMLWriter::Out_SwDoc( SwPaM* pPam )
{
sal_Bool bSaveWriteAll = bWriteAll; // sichern
// suche die naechste text::Bookmark-Position aus der text::Bookmark-Tabelle
nBkmkTabPos = bWriteAll ? FindPos_Bkmk( *pCurPam->GetPoint() ) : -1;
// gebe alle Bereiche des Pams in das HTML-File aus.
do {
bWriteAll = bSaveWriteAll;
bFirstLine = sal_True;
// suche den ersten am Pam-auszugebenen FlyFrame
// fehlt noch:
while( pCurPam->GetPoint()->nNode.GetIndex() < pCurPam->GetMark()->nNode.GetIndex() ||
(pCurPam->GetPoint()->nNode.GetIndex() == pCurPam->GetMark()->nNode.GetIndex() &&
pCurPam->GetPoint()->nContent.GetIndex() <= pCurPam->GetMark()->nContent.GetIndex()) )
{
SwNode * pNd = pCurPam->GetNode();
OSL_ENSURE( !(pNd->IsGrfNode() || pNd->IsOLENode()),
"Grf- oder OLE-Node hier unerwartet" );
if( pNd->IsTxtNode() )
{
SwTxtNode* pTxtNd = pNd->GetTxtNode();
if( !bFirstLine )
pCurPam->GetPoint()->nContent.Assign( pTxtNd, 0 );
OutHTML_SwTxtNode( *this, *pTxtNd );
}
else if( pNd->IsTableNode() )
{
OutHTML_SwTblNode( *this, *pNd->GetTableNode(), 0 );
nBkmkTabPos = bWriteAll ? FindPos_Bkmk( *pCurPam->GetPoint() ) : -1;
}
else if( pNd->IsSectionNode() )
{
OutHTML_Section( *this, *pNd->GetSectionNode() );
nBkmkTabPos = bWriteAll ? FindPos_Bkmk( *pCurPam->GetPoint() ) : -1;
}
else if( pNd == &pDoc->GetNodes().GetEndOfContent() )
break;
pCurPam->GetPoint()->nNode++; // Bewegen
sal_uInt32 nPos = pCurPam->GetPoint()->nNode.GetIndex();
if( bShowProgress )
::SetProgressState( nPos, pDoc->GetDocShell() ); // Wie weit ?
/* sollen nur die Selectierten Bereiche gesichert werden, so
* duerfen nur die vollstaendigen Nodes gespeichert werde,
* d.H. der 1. und n. Node teilweise, der 2. bis n-1. Node
* vollstaendig. (vollstaendig heisst mit allen Formaten! )
*/
bWriteAll = bSaveWriteAll ||
nPos != pCurPam->GetMark()->nNode.GetIndex();
bFirstLine = sal_False;
bOutFooter = sal_False; // Nach einem Node keine Fusszeile mehr
}
ChangeParaToken( 0 ); // MIB 8.7.97: Machen wir jetzt hier und nicht
// beim Aufrufer
OutAndSetDefList( 0 );
} while( CopyNextPam( &pPam ) ); // bis alle PaM's bearbeitet
bWriteAll = bSaveWriteAll; // wieder auf alten Wert zurueck
}
// schreibe die StyleTabelle, algemeine Angaben,Header/Footer/Footnotes
static void OutBodyColor( const sal_Char *pTag, const SwFmt *pFmt,
SwHTMLWriter& rHWrt )
{
const SwFmt *pRefFmt = 0;
if( rHWrt.pTemplate )
pRefFmt = SwHTMLWriter::GetTemplateFmt( pFmt->GetPoolFmtId(),
rHWrt.pTemplate );
const SvxColorItem *pColorItem = 0;
const SfxItemSet& rItemSet = pFmt->GetAttrSet();
const SfxPoolItem *pRefItem = 0, *pItem = 0;
sal_Bool bItemSet = SFX_ITEM_SET == rItemSet.GetItemState( RES_CHRATR_COLOR,
sal_True, &pItem);
sal_Bool bRefItemSet = pRefFmt &&
SFX_ITEM_SET == pRefFmt->GetAttrSet().GetItemState( RES_CHRATR_COLOR,
sal_True, &pRefItem);
if( bItemSet )
{
// wenn das Item nur in der Vorlage des aktuellen Doks gesetzt
// ist oder einen anderen Wert hat, als in der HTML-Vorlage,
// wird es gesetzt
const SvxColorItem *pCItem = (const SvxColorItem*)pItem;
if( !bRefItemSet )
{
pColorItem = pCItem;
}
else
{
Color aColor( pCItem->GetValue() );
if( COL_AUTO == aColor.GetColor() )
aColor.SetColor( COL_BLACK );
Color aRefColor( ((const SvxColorItem*)pRefItem)->GetValue() );
if( COL_AUTO == aRefColor.GetColor() )
aRefColor.SetColor( COL_BLACK );
if( !aColor.IsRGBEqual( aRefColor ) )
pColorItem = pCItem;
}
}
else if( bRefItemSet )
{
// Das Item war in der HTML-Vorlage noch gesetzt, also geben wir
// das Default aus
pColorItem = (const SvxColorItem*)&rItemSet.GetPool()
->GetDefaultItem( RES_CHRATR_COLOR );
}
if( pColorItem )
{
rtl::OStringBuffer sOut;
sOut.append(' ').append(pTag).append('=');
rHWrt.Strm() << sOut.makeStringAndClear().getStr();
Color aColor( pColorItem->GetValue() );
if( COL_AUTO == aColor.GetColor() )
aColor.SetColor( COL_BLACK );
HTMLOutFuncs::Out_Color( rHWrt.Strm(), aColor, rHWrt.eDestEnc );
if( RES_POOLCOLL_STANDARD==pFmt->GetPoolFmtId() )
rHWrt.pDfltColor = new Color( aColor );
}
}
sal_uInt16 SwHTMLWriter::OutHeaderAttrs()
{
sal_uLong nIdx = pCurPam->GetPoint()->nNode.GetIndex();
sal_uLong nEndIdx = pCurPam->GetMark()->nNode.GetIndex();
SwTxtNode *pTxtNd = 0;
while( nIdx<=nEndIdx &&
0==(pTxtNd=pDoc->GetNodes()[nIdx]->GetTxtNode()) )
nIdx++;
OSL_ENSURE( pTxtNd, "Kein Text-Node gefunden" );
if( !pTxtNd || !pTxtNd->HasHints() )
return 0;
sal_uInt16 nAttrs = 0;
sal_uInt16 nCntAttr = pTxtNd->GetSwpHints().Count();
xub_StrLen nOldPos = 0;
for( sal_uInt16 i=0; i<nCntAttr; i++ )
{
const SwTxtAttr *pHt = pTxtNd->GetSwpHints()[i];
if( !pHt->GetEnd() )
{
xub_StrLen nPos = *pHt->GetStart();
if( nPos-nOldPos > 1 || RES_TXTATR_FIELD != pHt->Which() )
break;
sal_uInt16 nFldWhich = ((const SwFmtFld&)pHt->GetAttr()).GetFld()
->GetTyp()->Which();
if( RES_POSTITFLD!=nFldWhich &&
RES_SCRIPTFLD!=nFldWhich )
break;
OutNewLine();
OutHTML_SwFmtFld( *this, pHt->GetAttr() );
nOldPos = nPos;
nAttrs++;
}
}
return nAttrs;
}
const SwPageDesc *SwHTMLWriter::MakeHeader( sal_uInt16 &rHeaderAttrs )
{
rtl::OStringBuffer sOut;
sOut.append(OOO_STRING_SVTOOLS_HTML_doctype).append(' ')
.append(OOO_STRING_SVTOOLS_HTML_doctype40);
HTMLOutFuncs::Out_AsciiTag( Strm(), sOut.makeStringAndClear().getStr() );
// baue den Vorspann
OutNewLine();
HTMLOutFuncs::Out_AsciiTag( Strm(), OOO_STRING_SVTOOLS_HTML_html );
OutNewLine();
HTMLOutFuncs::Out_AsciiTag( Strm(), OOO_STRING_SVTOOLS_HTML_head );
IncIndentLevel(); // Inhalt von <HEAD> einruecken
// DokumentInfo
rtl::OString sIndent = GetIndentString();
using namespace ::com::sun::star;
uno::Reference<document::XDocumentProperties> xDocProps;
SwDocShell *pDocShell(pDoc->GetDocShell());
if (pDocShell)
{
uno::Reference<document::XDocumentPropertiesSupplier> xDPS(
pDocShell->GetModel(), uno::UNO_QUERY_THROW);
xDocProps.set(xDPS->getDocumentProperties());
}
// xDocProps may be null here (when copying)
SfxFrameHTMLWriter::Out_DocInfo( Strm(), GetBaseURL(), xDocProps,
sIndent.getStr(), eDestEnc,
&aNonConvertableCharacters );
// Kommentare und Meta-Tags des ersten Absatzes
rHeaderAttrs = OutHeaderAttrs();
OutFootEndNoteInfo();
const SwPageDesc *pPageDesc = 0;
// In Nicht-HTML-Dokumenten wird die erste gesetzte Seitenvorlage
// exportiert und wenn keine gesetzt ist die Standard-Vorlage
sal_uLong nNodeIdx = pCurPam->GetPoint()->nNode.GetIndex();
while( nNodeIdx < pDoc->GetNodes().Count() )
{
SwNode *pNd = pDoc->GetNodes()[ nNodeIdx ];
if( pNd->IsCntntNode() )
{
pPageDesc = ((const SwFmtPageDesc &)pNd->GetCntntNode()
->GetAttr(RES_PAGEDESC)).GetPageDesc();
break;
}
else if( pNd->IsTableNode() )
{
pPageDesc = pNd->GetTableNode()->GetTable().GetFrmFmt()
->GetPageDesc().GetPageDesc();
break;
}
nNodeIdx++;
}
if( !pPageDesc )
pPageDesc = &const_cast<const SwDoc *>(pDoc)->GetPageDesc( 0 );
// und nun ... das Style-Sheet!!!
if( bCfgOutStyles )
{
OutStyleSheet( *pPageDesc );
}
// und nun ... das BASIC und JavaScript!
if( pDoc->GetDocShell() ) // nur mit DocShell ist Basic moeglich
OutBasic();
DecIndentLevel(); // Inhalt von <HEAD> einruecken
OutNewLine();
HTMLOutFuncs::Out_AsciiTag( Strm(), OOO_STRING_SVTOOLS_HTML_head, sal_False );
// der Body wird nicht eingerueckt, weil sonst alles eingerueckt waere!
OutNewLine();
sOut.append('<').append(OOO_STRING_SVTOOLS_HTML_body);
Strm() << sOut.makeStringAndClear().getStr();
// language
OutLanguage( eLang );
// Textfarbe ausgeben, wenn sie an der Standard-Vorlage gesetzt ist
// und sich geaendert hat.
OutBodyColor( OOO_STRING_SVTOOLS_HTML_O_text,
pDoc->GetTxtCollFromPool( RES_POOLCOLL_STANDARD, false ),
*this );
// Farben fuer (un)besuchte Links
OutBodyColor( OOO_STRING_SVTOOLS_HTML_O_link,
pDoc->GetCharFmtFromPool( RES_POOLCHR_INET_NORMAL ),
*this );
OutBodyColor( OOO_STRING_SVTOOLS_HTML_O_vlink,
pDoc->GetCharFmtFromPool( RES_POOLCHR_INET_VISIT ),
*this );
const SfxItemSet& rItemSet = pPageDesc->GetMaster().GetAttrSet();
String aEmbGrfName;
OutBackground( rItemSet, aEmbGrfName, sal_True );
nDirection = GetHTMLDirection( rItemSet );
OutDirection( nDirection );
if( bCfgOutStyles )
OutCSS1_BodyTagStyleOpt( *this, rItemSet, aEmbGrfName );
// Events anhaengen
if( pDoc->GetDocShell() ) // nur mit DocShell ist Basic moeglich
OutBasicBodyEvents();
Strm() << '>';
return pPageDesc;
}
void SwHTMLWriter::OutAnchor( const String& rName )
{
rtl::OStringBuffer sOut;
sOut.append('<').append(OOO_STRING_SVTOOLS_HTML_anchor).append(' ')
.append(OOO_STRING_SVTOOLS_HTML_O_name).append("=\"");
Strm() << sOut.makeStringAndClear().getStr();
HTMLOutFuncs::Out_String( Strm(), rName, eDestEnc, &aNonConvertableCharacters ) << "\">";
HTMLOutFuncs::Out_AsciiTag( Strm(), OOO_STRING_SVTOOLS_HTML_anchor, sal_False );
}
void SwHTMLWriter::OutBookmarks()
{
// hole das aktuelle Bookmark
const ::sw::mark::IMark* pBookmark = NULL;
IDocumentMarkAccess* const pMarkAccess = pDoc->getIDocumentMarkAccess();
if(nBkmkTabPos != -1)
pBookmark = (pMarkAccess->getMarksBegin() + nBkmkTabPos)->get();
// Ausgabe aller Bookmarks in diesem Absatz. Die Content-Position
// wird vorerst nicht beruecksichtigt!
sal_uInt32 nNode = pCurPam->GetPoint()->nNode.GetIndex();
while( nBkmkTabPos != -1 &&
pBookmark->GetMarkPos().nNode.GetIndex() == nNode )
{
// Der Bereich derBookmark wird erstam ignoriert, da er von uns
// auch nicht eingelesen wird.
// erst die SWG spezifischen Daten:
if(dynamic_cast< const ::sw::mark::IBookmark* >(pBookmark) && pBookmark->GetName().getLength() )
OutAnchor( pBookmark->GetName() );
if( ++nBkmkTabPos >= pMarkAccess->getMarksCount() )
nBkmkTabPos = -1;
else
pBookmark = (pMarkAccess->getMarksBegin() + nBkmkTabPos)->get();
}
sal_uInt32 nPos;
for( nPos = 0; nPos < aOutlineMarkPoss.size() &&
aOutlineMarkPoss[nPos] < nNode; nPos++ )
;
while( nPos < aOutlineMarkPoss.size() && aOutlineMarkPoss[nPos] == nNode )
{
String sMark( aOutlineMarks[nPos] );
sMark.SearchAndReplaceAll( '?', '_' ); // '?' causes problems in IE/Netscape 5
OutAnchor( sMark );
aOutlineMarkPoss.erase( aOutlineMarkPoss.begin()+nPos );
aOutlineMarks.erase( aOutlineMarks.begin() + nPos );
}
}
void SwHTMLWriter::OutImplicitMark( const String& rMark,
const sal_Char *pMarkType )
{
if( rMark.Len() && !aImplicitMarks.empty() )
{
String sMark( rMark );
sMark.Append( cMarkSeperator );
sMark.AppendAscii( pMarkType );
if( 0 != aImplicitMarks.erase( sMark ) )
{
sMark.SearchAndReplaceAll( '?', '_' ); // '?' causes problems in IE/Netscape 5
OutAnchor( sMark );
}
}
}
void SwHTMLWriter::OutHyperlinkHRefValue( const String& rURL )
{
String sURL( rURL );
xub_StrLen nPos = sURL.SearchBackward( cMarkSeperator );
if( STRING_NOTFOUND != nPos )
{
String sCmp(comphelper::string::remove(sURL.Copy(nPos+1), ' '));
if( sCmp.Len() )
{
sCmp.ToLowerAscii();
if( sCmp.EqualsAscii( pMarkToRegion ) ||
sCmp.EqualsAscii( pMarkToFrame ) ||
sCmp.EqualsAscii( pMarkToGraphic ) ||
sCmp.EqualsAscii( pMarkToOLE ) ||
sCmp.EqualsAscii( pMarkToTable ) ||
sCmp.EqualsAscii( pMarkToOutline ) ||
sCmp.EqualsAscii( pMarkToText ) )
{
sURL.SearchAndReplaceAll( '?', '_' ); // '?' causes problems in IE/Netscape 5
}
}
}
sURL = URIHelper::simpleNormalizedMakeRelative( GetBaseURL(), sURL);
HTMLOutFuncs::Out_String( Strm(), sURL, eDestEnc,
&aNonConvertableCharacters );
}
void SwHTMLWriter::OutBackground( const SvxBrushItem *pBrushItem,
String& rEmbGrfNm, sal_Bool bGraphic )
{
const Color &rBackColor = pBrushItem->GetColor();
/// check, if background color is not "no fill"/"auto fill", instead of
/// only checking, if transparency is not set.
if( rBackColor.GetColor() != COL_TRANSPARENT )
{
rtl::OStringBuffer sOut;
sOut.append(' ').append(OOO_STRING_SVTOOLS_HTML_O_bgcolor).append('=');
Strm() << sOut.makeStringAndClear().getStr();
HTMLOutFuncs::Out_Color( Strm(), rBackColor, eDestEnc);
}
if( !bGraphic )
return;
const String *pLink = pBrushItem->GetGraphicLink();
// embeddete Grafik -> WriteEmbedded schreiben
if( !pLink )
{
const Graphic* pGrf = pBrushItem->GetGraphic();
if( pGrf )
{
// Grafik als (JPG-)File speichern
const String* pTempFileName = GetOrigFileName();
if(pTempFileName)
rEmbGrfNm = *pTempFileName;
sal_uInt16 nErr = XOutBitmap::WriteGraphic( *pGrf, rEmbGrfNm,
String::CreateFromAscii( "JPG" ),
XOUTBMP_USE_NATIVE_IF_POSSIBLE );
if( !nErr ) // fehlerhaft, da ist nichts auszugeben
{
rEmbGrfNm = URIHelper::SmartRel2Abs(
INetURLObject( GetBaseURL() ), rEmbGrfNm,
URIHelper::GetMaybeFileHdl() );
pLink = &rEmbGrfNm;
}
else
{
nWarn = WARN_SWG_POOR_LOAD | WARN_SW_WRITE_BASE;
}
}
}
else
{
rEmbGrfNm = *pLink;
if( bCfgCpyLinkedGrfs )
{
CopyLocalFileToINet( rEmbGrfNm );
pLink = &rEmbGrfNm;
}
}
if( pLink )
{
String s( URIHelper::simpleNormalizedMakeRelative( GetBaseURL(), *pLink));
Strm() << " " OOO_STRING_SVTOOLS_HTML_O_background "=\"";
HTMLOutFuncs::Out_String( Strm(), s, eDestEnc, &aNonConvertableCharacters ) << '\"';
}
}
void SwHTMLWriter::OutBackground( const SfxItemSet& rItemSet,
String& rEmbGrfNm, sal_Bool bGraphic )
{
const SfxPoolItem* pItem;
if( SFX_ITEM_SET == rItemSet.GetItemState( RES_BACKGROUND, sal_False,
&pItem ))
{
OutBackground( ((const SvxBrushItem*)pItem), rEmbGrfNm, bGraphic );
}
}
sal_uInt16 SwHTMLWriter::GetLangWhichIdFromScript( sal_uInt16 nScript )
{
sal_uInt16 nWhichId;
switch( nScript )
{
case CSS1_OUTMODE_CJK:
nWhichId = RES_CHRATR_CJK_LANGUAGE;
break;
case CSS1_OUTMODE_CTL:
nWhichId = RES_CHRATR_CJK_LANGUAGE;
break;
default:
nWhichId = RES_CHRATR_LANGUAGE;
break;
}
return nWhichId;
}
void SwHTMLWriter::OutLanguage( LanguageType nLang )
{
if( LANGUAGE_DONTKNOW != nLang )
{
rtl::OStringBuffer sOut;
sOut.append(' ').append(OOO_STRING_SVTOOLS_HTML_O_lang)
.append("=\"");
Strm() << sOut.makeStringAndClear().getStr();
HTMLOutFuncs::Out_String( Strm(), MsLangId::convertLanguageToIsoString(nLang),
eDestEnc, &aNonConvertableCharacters ) << '"';
}
}
sal_uInt16 SwHTMLWriter::GetHTMLDirection( const SfxItemSet& rItemSet ) const
{
return GetHTMLDirection(
static_cast < const SvxFrameDirectionItem& >( rItemSet.Get( RES_FRAMEDIR ) )
.GetValue() );
}
sal_uInt16 SwHTMLWriter::GetHTMLDirection( sal_uInt16 nDir ) const
{
switch( nDir )
{
case FRMDIR_VERT_TOP_LEFT:
nDir = FRMDIR_HORI_LEFT_TOP;
break;
case FRMDIR_VERT_TOP_RIGHT:
nDir = FRMDIR_HORI_RIGHT_TOP;
break;
case FRMDIR_ENVIRONMENT:
nDir = nDirection;
}
return nDir;
}
void SwHTMLWriter::OutDirection( sal_uInt16 nDir )
{
const sal_Char *pValue = 0;
switch( nDir )
{
case FRMDIR_HORI_LEFT_TOP:
case FRMDIR_VERT_TOP_LEFT:
pValue = "LTR";
break;
case FRMDIR_HORI_RIGHT_TOP:
case FRMDIR_VERT_TOP_RIGHT:
pValue = "RTL";
break;
}
if( pValue != 0 )
{
rtl::OStringBuffer sOut;
sOut.append(' ').append(OOO_STRING_SVTOOLS_HTML_O_dir)
.append("=\"").append(pValue).append('\"');
Strm() << sOut.makeStringAndClear().getStr();
}
}
rtl::OString SwHTMLWriter::GetIndentString(sal_uInt16 nIncLvl)
{
rtl::OString sRet;
// etwas umstaendlich, aber wir haben nur einen Indent-String!
sal_uInt16 nLevel = nIndentLvl + nIncLvl;
if( nLevel && nLevel <= MAX_INDENT_LEVEL)
{
sIndentTabs[nLevel] = 0;
sRet = sIndentTabs;
sIndentTabs[nLevel] = '\t';
}
return sRet;
}
void SwHTMLWriter::OutNewLine( sal_Bool bCheck )
{
if( !bCheck || (Strm().Tell()-nLastLFPos) > nIndentLvl )
{
Strm() << sNewLine;
nLastLFPos = Strm().Tell();
}
if( nIndentLvl && nIndentLvl <= MAX_INDENT_LEVEL)
{
sIndentTabs[nIndentLvl] = 0;
Strm() << sIndentTabs;
sIndentTabs[nIndentLvl] = '\t';
}
}
sal_uInt16 SwHTMLWriter::GetHTMLFontSize( sal_uInt32 nHeight ) const
{
sal_uInt16 nSize = 1;
for( sal_uInt16 i=6; i>0; i-- )
{
if( nHeight > (aFontHeights[i] + aFontHeights[i-1])/2 )
{
nSize = i+1;
break;
}
}
return nSize;
}
// Struktur speichert die aktuellen Daten des Writers zwischen, um
// einen anderen Dokument-Teil auszugeben, wie z.B. Header/Footer
HTMLSaveData::HTMLSaveData( SwHTMLWriter& rWriter, sal_uLong nStt,
sal_uLong nEnd, sal_Bool bSaveNum,
const SwFrmFmt *pFrmFmt ) :
rWrt( rWriter ),
pOldPam( rWrt.pCurPam ),
pOldEnd( rWrt.GetEndPaM() ),
pOldNumRuleInfo( 0 ),
pOldNextNumRuleInfo( 0 ),
nOldDefListLvl( rWrt.nDefListLvl ),
nOldDirection( rWrt.nDirection ),
bOldOutHeader( rWrt.bOutHeader ),
bOldOutFooter( rWrt.bOutFooter ),
bOldOutFlyFrame( rWrt.bOutFlyFrame )
{
bOldWriteAll = rWrt.bWriteAll;
rWrt.pCurPam = rWrt.NewSwPaM( *rWrt.pDoc, nStt, nEnd );
// Tabelle in Sonderbereichen erkennen
if( nStt != rWrt.pCurPam->GetMark()->nNode.GetIndex() )
{
const SwNode *pNd = rWrt.pDoc->GetNodes()[ nStt ];
if( pNd->IsTableNode() || pNd->IsSectionNode() )
rWrt.pCurPam->GetMark()->nNode = nStt;
}
rWrt.SetEndPaM( rWrt.pCurPam );
rWrt.pCurPam->Exchange( );
rWrt.bWriteAll = sal_True;
rWrt.nDefListLvl = 0;
rWrt.bOutHeader = rWrt.bOutFooter = sal_False;
// Ggf. die aktuelle Numerierungs-Info merken, damit sie wieder
// neu aufgenommen werden kann. Nur dann belibt auch die Numerierungs-
// Info des nachsten Absatz gueltig.
if( bSaveNum )
{
pOldNumRuleInfo = new SwHTMLNumRuleInfo( rWrt.GetNumInfo() );
pOldNextNumRuleInfo = rWrt.GetNextNumInfo();
rWrt.SetNextNumInfo( 0 );
}
else
{
rWrt.ClearNextNumInfo();
}
// Die Numerierung wird in jedem Fall unterbrochen.
rWrt.GetNumInfo().Clear();
if( pFrmFmt )
rWrt.nDirection = rWrt.GetHTMLDirection( pFrmFmt->GetAttrSet() );
}
HTMLSaveData::~HTMLSaveData()
{
delete rWrt.pCurPam; // Pam wieder loeschen
rWrt.pCurPam = pOldPam;
rWrt.SetEndPaM( pOldEnd );
rWrt.bWriteAll = bOldWriteAll;
rWrt.nBkmkTabPos = bOldWriteAll ? rWrt.FindPos_Bkmk( *pOldPam->GetPoint() ) : -1;
rWrt.nLastParaToken = 0;
rWrt.nDefListLvl = nOldDefListLvl;
rWrt.nDirection = nOldDirection;
rWrt.bOutHeader = bOldOutHeader;
rWrt.bOutFooter = bOldOutFooter;
rWrt.bOutFlyFrame = bOldOutFlyFrame;
// Ggf. die Numerierung von vor der Section fortsetzen. Die Numerierung
// des naecshten Absatz wird in jedem Fall ungueltig.
if( pOldNumRuleInfo )
{
rWrt.GetNumInfo().Set( *pOldNumRuleInfo );
delete pOldNumRuleInfo;
rWrt.SetNextNumInfo( pOldNextNumRuleInfo );
}
else
{
rWrt.GetNumInfo().Clear();
rWrt.ClearNextNumInfo();
}
}
void GetHTMLWriter( const String&, const String& rBaseURL, WriterRef& xRet )
{
xRet = new SwHTMLWriter( rBaseURL );
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|