Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 :
21 : #include <hintids.hxx>
22 : #include <com/sun/star/util/SearchOptions.hpp>
23 : #include <com/sun/star/util/SearchFlags.hpp>
24 : #include <com/sun/star/i18n/TransliterationModules.hpp>
25 : #include <com/sun/star/ui/dialogs/TemplateDescription.hpp>
26 : #include <comphelper/string.hxx>
27 : #include <unotools/tempfile.hxx>
28 : #include <tools/urlobj.hxx>
29 : #include <vcl/print.hxx>
30 : #include <vcl/msgbox.hxx>
31 : #include <vcl/wrkwin.hxx>
32 : #include <vcl/metric.hxx>
33 : #include <svtools/ctrltool.hxx>
34 : #include <svl/intitem.hxx>
35 : #include <svl/stritem.hxx>
36 : #include <unotools/pathoptions.hxx>
37 : #include <svl/undo.hxx>
38 : #include <svtools/txtcmp.hxx>
39 : #include <svl/eitem.hxx>
40 : #include <svl/whiter.hxx>
41 : #include <unotools/saveopt.hxx>
42 : #include <svtools/transfer.hxx>
43 : #include <svtools/svtools.hrc>
44 : #include <svtools/svtresid.hxx>
45 : #include <svx/svxids.hrc>
46 : #include <svtools/htmlcfg.hxx>
47 : #include <sfx2/app.hxx>
48 : #include <sfx2/objface.hxx>
49 : #include <sfx2/viewfrm.hxx>
50 : #include <sfx2/bindings.hxx>
51 : #include <sfx2/docfilt.hxx>
52 : #include <sfx2/fcontnr.hxx>
53 : #include <sfx2/request.hxx>
54 : #include <sfx2/prnmon.hxx>
55 : #include <sfx2/docfile.hxx>
56 : #include <editeng/fhgtitem.hxx>
57 : #include <svx/srchdlg.hxx>
58 : #include <svl/srchitem.hxx>
59 : #include <editeng/fontitem.hxx>
60 : #include <editeng/flstitem.hxx>
61 : #include "editeng/unolingu.hxx"
62 : #include <sfx2/sfxhtml.hxx>
63 : #include <swtypes.hxx>
64 : #include <swmodule.hxx>
65 : #include <docsh.hxx>
66 : #include <wdocsh.hxx>
67 : #include <srcview.hxx>
68 : #include <viewfunc.hxx>
69 : #include <doc.hxx>
70 : #include <sfx2/msg.hxx>
71 : #include <shellio.hxx>
72 :
73 : #include <cmdid.h> // FN_ ...
74 : #include <helpid.h>
75 : #include <globals.hrc>
76 : #include <shells.hrc>
77 : #include <popup.hrc>
78 : #include <web.hrc>
79 : #include <view.hrc>
80 : #include <com/sun/star/ui/dialogs/XFilePicker.hpp>
81 : #include <com/sun/star/ui/dialogs/XFilterManager.hpp>
82 : #include <sfx2/filedlghelper.hxx>
83 : #define SwSrcView
84 : #include "swslots.hxx"
85 :
86 : #include <unomid.h>
87 :
88 : #include <com/sun/star/document/XDocumentProperties.hpp>
89 : #include <com/sun/star/document/XDocumentPropertiesSupplier.hpp>
90 :
91 : using namespace ::com::sun::star;
92 : using namespace ::com::sun::star::i18n;
93 : using namespace ::com::sun::star::lang;
94 : using namespace ::com::sun::star::uno;
95 : using namespace ::com::sun::star::ui::dialogs;
96 : using namespace ::com::sun::star::i18n;
97 : using namespace ::com::sun::star::lang;
98 : using namespace ::sfx2;
99 : using ::rtl::OUString;
100 : using ::com::sun::star::util::SearchOptions;
101 :
102 :
103 : #define SWSRCVIEWFLAGS ( SFX_VIEW_CAN_PRINT|\
104 : SFX_VIEW_NO_NEWWINDOW )
105 :
106 : #define SRC_SEARCHOPTIONS (0xFFFF & ~(SEARCH_OPTIONS_FORMAT|SEARCH_OPTIONS_FAMILIES|SEARCH_OPTIONS_SEARCH_ALL))
107 :
108 : // Druckraender -> wie Basic - Ide
109 : #define LMARGPRN 1700
110 : #define RMARGPRN 900
111 : #define TMARGPRN 2000
112 : #define BMARGPRN 1000
113 : #define BORDERPRN 300
114 :
115 16 : SFX_IMPL_NAMED_VIEWFACTORY(SwSrcView, "SourceView")
116 : {
117 8 : SFX_VIEW_REGISTRATION(SwWebDocShell);
118 8 : }
119 :
120 60 : SFX_IMPL_INTERFACE( SwSrcView, SfxViewShell, SW_RES(0) )
121 : {
122 10 : SFX_POPUPMENU_REGISTRATION(SW_RES(MN_SRCVIEW_POPUPMENU));
123 20 : SFX_OBJECTBAR_REGISTRATION( SFX_OBJECTBAR_TOOLS|
124 : SFX_VISIBILITY_STANDARD|SFX_VISIBILITY_SERVER,
125 10 : SW_RES(RID_WEBTOOLS_TOOLBOX) );
126 10 : SFX_CHILDWINDOW_REGISTRATION(SvxSearchDialogWrapper::GetChildWindowId());
127 10 : }
128 :
129 0 : TYPEINIT1(SwSrcView, SfxViewShell)
130 :
131 0 : static void lcl_PrintHeader( OutputDevice &rOutDev, sal_uInt16 nPages, sal_uInt16 nCurPage, const String& rTitle )
132 : {
133 0 : short nLeftMargin = LMARGPRN;
134 0 : Size aSz = rOutDev.GetOutputSize();
135 0 : short nBorder = BORDERPRN;
136 :
137 0 : Color aOldFillColor( rOutDev.GetFillColor() );
138 0 : Font aOldFont( rOutDev.GetFont() );
139 :
140 0 : rOutDev.SetFillColor( Color(COL_TRANSPARENT) );
141 :
142 0 : Font aFont( aOldFont );
143 0 : aFont.SetWeight( WEIGHT_BOLD );
144 0 : aFont.SetAlign( ALIGN_BOTTOM );
145 0 : rOutDev.SetFont( aFont );
146 :
147 0 : long nFontHeight = rOutDev.GetTextHeight();
148 :
149 : // 1.Border => Strich, 2+3 Border = Freiraum.
150 0 : long nYTop = TMARGPRN-3*nBorder-nFontHeight;
151 :
152 0 : long nXLeft = nLeftMargin-nBorder;
153 0 : long nXRight = aSz.Width()-RMARGPRN+nBorder;
154 :
155 : rOutDev.DrawRect( Rectangle(
156 : Point( nXLeft, nYTop ),
157 0 : Size( nXRight-nXLeft, aSz.Height() - nYTop - BMARGPRN + nBorder ) ) );
158 :
159 :
160 0 : long nY = TMARGPRN-2*nBorder;
161 0 : Point aPos( nLeftMargin, nY );
162 0 : rOutDev.DrawText( aPos, rTitle );
163 0 : if ( nPages != 1 )
164 : {
165 0 : aFont.SetWeight( WEIGHT_NORMAL );
166 0 : rOutDev.SetFont( aFont );
167 0 : String aPageStr( rtl::OUString(" [") );
168 0 : aPageStr += String( SW_RES( STR_PAGE ) );
169 0 : aPageStr += ' ';
170 0 : aPageStr += String::CreateFromInt32( nCurPage );
171 0 : aPageStr += ']';
172 0 : aPos.X() += rOutDev.GetTextWidth( rTitle );
173 0 : rOutDev.DrawText( aPos, aPageStr );
174 : }
175 :
176 :
177 0 : nY = TMARGPRN-nBorder;
178 :
179 0 : rOutDev.DrawLine( Point( nXLeft, nY ), Point( nXRight, nY ) );
180 :
181 0 : rOutDev.SetFont( aOldFont );
182 0 : rOutDev.SetFillColor( aOldFillColor );
183 0 : }
184 :
185 0 : static rtl_TextEncoding lcl_GetStreamCharSet(rtl_TextEncoding eLoadEncoding)
186 : {
187 0 : rtl_TextEncoding eRet = eLoadEncoding;
188 0 : if(RTL_TEXTENCODING_DONTKNOW == eRet)
189 : {
190 0 : SvxHtmlOptions& rHtmlOptions = SvxHtmlOptions::Get();
191 : const sal_Char *pCharSet =
192 0 : rtl_getBestMimeCharsetFromTextEncoding( rHtmlOptions.GetTextEncoding() );
193 0 : eRet = rtl_getTextEncodingFromMimeCharset( pCharSet );
194 : }
195 0 : return eRet;
196 : }
197 :
198 0 : static void lcl_ConvertTabsToSpaces( String& rLine )
199 : {
200 0 : if ( rLine.Len() )
201 : {
202 0 : sal_uInt16 nPos = 0;
203 0 : sal_uInt16 nMax = rLine.Len();
204 0 : while ( nPos < nMax )
205 : {
206 0 : if ( rLine.GetChar(nPos) == '\t' )
207 : {
208 : // Nicht 4 Blanks, sondern an 4er TabPos:
209 0 : rtl::OUStringBuffer aBlanker;
210 0 : comphelper::string::padToLength(aBlanker, ( 4 - ( nPos % 4 ) ), ' ');
211 0 : rLine.Erase( nPos, 1 );
212 0 : rLine.Insert(aBlanker.makeStringAndClear(), nPos);
213 0 : nMax = rLine.Len();
214 : }
215 0 : nPos++; // Nicht optimal, falls Tab, aber auch nicht verkehrt...
216 : }
217 : }
218 0 : }
219 :
220 0 : SwSrcView::SwSrcView(SfxViewFrame* pViewFrame, SfxViewShell*) :
221 : SfxViewShell( pViewFrame, SWSRCVIEWFLAGS ),
222 0 : aEditWin( &pViewFrame->GetWindow(), this ),
223 : pSearchItem(0),
224 : bSourceSaved(sal_False),
225 0 : eLoadEncoding(RTL_TEXTENCODING_DONTKNOW)
226 : {
227 0 : Init();
228 0 : }
229 :
230 0 : SwSrcView::~SwSrcView()
231 : {
232 0 : SwDocShell* pDocShell = GetDocShell();
233 : OSL_ENSURE(PTR_CAST(SwWebDocShell, pDocShell), "Wieso keine WebDocShell?");
234 0 : const TextSelection& rSel = aEditWin.GetTextView()->GetSelection();
235 0 : ((SwWebDocShell*)pDocShell)->SetSourcePara( static_cast< sal_uInt16 >( rSel.GetStart().GetPara() ) );
236 :
237 : uno::Reference<document::XDocumentPropertiesSupplier> xDPS(
238 0 : pDocShell->GetModel(), uno::UNO_QUERY_THROW);
239 : uno::Reference<document::XDocumentProperties> xDocProps
240 0 : = xDPS->getDocumentProperties();
241 0 : ::rtl::OUString url = xDocProps->getAutoloadURL();
242 0 : sal_Int32 delay = xDocProps->getAutoloadSecs();
243 : pDocShell->SetAutoLoad(INetURLObject(url), delay,
244 0 : (delay != 0) || !url.isEmpty());
245 0 : EndListening(*pDocShell);
246 0 : delete pSearchItem;
247 0 : }
248 :
249 0 : void SwSrcView::SaveContentTo(SfxMedium& rMed)
250 : {
251 0 : SvStream* pOutStream = rMed.GetOutStream();
252 0 : pOutStream->SetStreamCharSet(lcl_GetStreamCharSet(eLoadEncoding));
253 0 : aEditWin.Write( *pOutStream );
254 0 : }
255 :
256 0 : void SwSrcView::Init()
257 : {
258 0 : SetHelpId(SW_SRC_VIEWSHELL);
259 0 : SetName(rtl::OUString("Source"));
260 0 : SetWindow( &aEditWin );
261 0 : SwDocShell* pDocShell = GetDocShell();
262 : // wird das Doc noch geladen, dann muss die DocShell das Load
263 : // anwerfen, wenn das Laden abgeschlossen ist
264 0 : if(!pDocShell->IsLoading())
265 0 : Load(pDocShell);
266 : else
267 : {
268 0 : aEditWin.SetReadonly(sal_True);
269 : }
270 :
271 0 : SetNewWindowAllowed( sal_False );
272 0 : StartListening(*pDocShell,sal_True);
273 0 : }
274 :
275 0 : SwDocShell* SwSrcView::GetDocShell()
276 : {
277 0 : SfxObjectShell* pObjShell = GetViewFrame()->GetObjectShell();
278 0 : return PTR_CAST(SwDocShell, pObjShell);
279 : }
280 :
281 0 : void SwSrcView::SaveContent(const String& rTmpFile)
282 : {
283 0 : SfxMedium aMedium( rTmpFile, STREAM_WRITE);
284 0 : SvStream* pOutStream = aMedium.GetOutStream();
285 0 : pOutStream->SetStreamCharSet( lcl_GetStreamCharSet(eLoadEncoding) );
286 0 : aEditWin.Write(*pOutStream);
287 0 : aMedium.Commit();
288 0 : }
289 :
290 0 : void SwSrcView::Execute(SfxRequest& rReq)
291 : {
292 0 : sal_uInt16 nSlot = rReq.GetSlot();
293 0 : TextView* pTextView = aEditWin.GetTextView();
294 0 : switch( nSlot )
295 : {
296 : case SID_SAVEASDOC:
297 : {
298 0 : SvtPathOptions aPathOpt;
299 : // filesave dialog with autoextension
300 : FileDialogHelper aDlgHelper(
301 0 : TemplateDescription::FILESAVE_AUTOEXTENSION, 0 );
302 0 : uno::Reference < XFilePicker > xFP = aDlgHelper.GetFilePicker();
303 0 : uno::Reference<XFilterManager> xFltMgr(xFP, UNO_QUERY);
304 :
305 : // search for an html filter for export
306 0 : SfxFilterContainer* pFilterCont = GetObjectShell()->GetFactory().GetFilterContainer();
307 : const SfxFilter* pFilter =
308 0 : pFilterCont->GetFilter4Extension( rtl::OUString("html"), SFX_FILTER_EXPORT );
309 0 : if ( pFilter )
310 : {
311 : // filter found -> use its uiname and wildcard
312 0 : const String& rUIName = pFilter->GetUIName();
313 0 : const WildCard& rCard = pFilter->GetWildcard();
314 0 : xFltMgr->appendFilter( rUIName, rCard.getGlob() );
315 0 : xFltMgr->setCurrentFilter( rUIName ) ;
316 : }
317 : else
318 : {
319 : // filter not found
320 0 : rtl::OUString sHtml("HTML");
321 0 : xFltMgr->appendFilter( sHtml, rtl::OUString("*.html;*.htm") );
322 0 : xFltMgr->setCurrentFilter( sHtml ) ;
323 : }
324 :
325 0 : xFP->setDisplayDirectory( aPathOpt.GetWorkPath() );
326 0 : if( aDlgHelper.Execute() == ERRCODE_NONE)
327 : {
328 0 : SfxMedium aMedium( xFP->getFiles().getConstArray()[0],
329 0 : STREAM_WRITE | STREAM_SHARE_DENYNONE );
330 0 : SvStream* pOutStream = aMedium.GetOutStream();
331 0 : pOutStream->SetStreamCharSet(lcl_GetStreamCharSet(eLoadEncoding));
332 0 : aEditWin.Write( *pOutStream );
333 0 : aMedium.Commit();
334 0 : }
335 : }
336 0 : break;
337 : case SID_SAVEDOC:
338 : {
339 0 : SwDocShell* pDocShell = GetDocShell();
340 0 : SfxMedium* pMed = 0;
341 0 : if(pDocShell->HasName())
342 0 : pMed = pDocShell->GetMedium();
343 : else
344 : {
345 0 : SfxBoolItem* pItem = (SfxBoolItem*)pDocShell->ExecuteSlot(rReq, pDocShell->GetInterface());
346 0 : if(pItem && pItem->GetValue())
347 0 : pMed = pDocShell->GetMedium();
348 : }
349 0 : if(pMed)
350 : {
351 0 : SvStream* pOutStream = pMed->GetOutStream();
352 0 : pOutStream->Seek(0);
353 0 : pOutStream->SetStreamSize(0);
354 0 : pOutStream->SetStreamCharSet(lcl_GetStreamCharSet(eLoadEncoding));
355 0 : aEditWin.Write( *pOutStream );
356 0 : pMed->CloseOutStream();
357 0 : pMed->Commit();
358 0 : pDocShell->GetDoc()->ResetModified();
359 0 : SourceSaved();
360 0 : aEditWin.ClearModifyFlag();
361 : }
362 : }
363 0 : break;
364 : case FID_SEARCH_NOW:
365 : {
366 0 : const SfxItemSet* pTmpArgs = rReq.GetArgs();
367 :
368 0 : sal_uInt16 nWhich = pTmpArgs->GetWhichByPos( 0 );
369 : OSL_ENSURE( nWhich, "Wich fuer SearchItem ?" );
370 0 : const SfxPoolItem& rItem = pTmpArgs->Get( nWhich );
371 0 : SetSearchItem( (const SvxSearchItem&)rItem);
372 0 : StartSearchAndReplace( (const SvxSearchItem&)rItem, sal_False, rReq.IsAPI() );
373 0 : if(aEditWin.IsModified())
374 0 : GetDocShell()->GetDoc()->SetModified();
375 : }
376 0 : break;
377 : case FN_REPEAT_SEARCH:
378 : {
379 0 : SvxSearchItem* pSrchItem = GetSearchItem();
380 0 : if(pSrchItem)
381 : {
382 0 : StartSearchAndReplace( *pSrchItem, sal_False, rReq.IsAPI() );
383 0 : if(aEditWin.IsModified())
384 0 : GetDocShell()->GetDoc()->SetModified();
385 : }
386 : }
387 0 : break;
388 : case SID_PRINTDOC:
389 : case SID_PRINTDOCDIRECT:
390 : {
391 0 : SfxViewShell::ExecuteSlot( rReq, SfxViewShell::GetInterface() );
392 : }
393 0 : break;
394 : case SID_UNDO:
395 0 : pTextView->Undo();
396 0 : GetViewFrame()->GetBindings().InvalidateAll(sal_False);
397 0 : break;
398 : case SID_REDO:
399 0 : pTextView->Redo();
400 0 : GetViewFrame()->GetBindings().InvalidateAll(sal_False);
401 0 : break;
402 : case SID_REPEAT:
403 0 : break;
404 : case SID_CUT:
405 0 : if(pTextView->HasSelection())
406 0 : pTextView->Cut();
407 0 : break;
408 : case SID_COPY:
409 0 : if(pTextView->HasSelection())
410 0 : pTextView->Copy();
411 0 : break;
412 : case SID_PASTE:
413 0 : pTextView->Paste();
414 0 : break;
415 : case SID_SELECTALL:
416 0 : pTextView->SetSelection( TextSelection( TextPaM( 0, 0 ), TextPaM( 0xFFFFFFFF, 0xFFFF ) ) );
417 0 : break;
418 : }
419 0 : aEditWin.Invalidate();
420 0 : }
421 :
422 0 : void SwSrcView::GetState(SfxItemSet& rSet)
423 : {
424 0 : SfxWhichIter aIter(rSet);
425 0 : sal_uInt16 nWhich = aIter.FirstWhich();
426 0 : TextView* pTextView = aEditWin.GetTextView();
427 :
428 0 : while(nWhich)
429 : {
430 0 : switch(nWhich)
431 : {
432 : case SID_SAVEASDOC:
433 0 : rSet.Put(SfxStringItem(nWhich, String(SW_RES(STR_SAVEAS_SRC))));
434 0 : break;
435 : case SID_SAVEDOC:
436 : {
437 0 : SwDocShell* pDocShell = GetDocShell();
438 0 : if(!pDocShell->IsModified())
439 0 : rSet.DisableItem(nWhich);
440 : }
441 0 : break;
442 : case SID_PRINTDOC:
443 : case SID_PRINTDOCDIRECT:
444 0 : break;
445 : case SID_TABLE_CELL:
446 : {
447 0 : String aPos( SW_RES(STR_SRCVIEW_ROW) );
448 0 : TextSelection aSel = pTextView->GetSelection();
449 0 : aPos += String::CreateFromInt32( aSel.GetEnd().GetPara()+1 );
450 0 : aPos += rtl::OUString(" : ");
451 0 : aPos += String(SW_RES(STR_SRCVIEW_COL));
452 0 : aPos += String::CreateFromInt32( aSel.GetEnd().GetIndex()+1 );
453 0 : SfxStringItem aItem( nWhich, aPos );
454 0 : rSet.Put( aItem );
455 : }
456 0 : break;
457 : case SID_SEARCH_OPTIONS:
458 : {
459 0 : sal_uInt16 nOpt = SRC_SEARCHOPTIONS;
460 0 : if(GetDocShell()->IsReadOnly())
461 0 : nOpt &= ~(SEARCH_OPTIONS_REPLACE|SEARCH_OPTIONS_REPLACE_ALL);
462 :
463 0 : rSet.Put( SfxUInt16Item( SID_SEARCH_OPTIONS, nOpt) );
464 : }
465 0 : break;
466 : case SID_SEARCH_ITEM:
467 : {
468 0 : String sSelected;
469 0 : if ( !pTextView->HasSelection() )
470 : {
471 0 : const TextSelection& rSel = pTextView->GetSelection();
472 0 : sSelected = aEditWin.GetTextEngine()->GetWord( rSel.GetStart());
473 : }
474 : else
475 : {
476 0 : sSelected = pTextView->GetSelected();
477 : }
478 0 : SvxSearchItem * pSrchItem = GetSearchItem();
479 0 : pSrchItem->SetSearchString( sSelected );
480 0 : rSet.Put( *pSrchItem );
481 : }
482 0 : break;
483 : case FN_REPEAT_SEARCH:
484 : {
485 0 : if(!GetSearchItem())
486 0 : rSet.DisableItem(nWhich);
487 : };
488 0 : break;
489 : case SID_UNDO:
490 : case SID_REDO:
491 : {
492 0 : ::svl::IUndoManager& rMgr = pTextView->GetTextEngine()->GetUndoManager();
493 0 : sal_uInt16 nCount = 0;
494 0 : if(nWhich == SID_UNDO)
495 : {
496 0 : nCount = rMgr.GetUndoActionCount();
497 0 : if(nCount)
498 : {
499 0 : String aStr(SvtResId( STR_UNDO));
500 0 : aStr += rMgr.GetUndoActionComment(--nCount);
501 0 : rSet.Put(SfxStringItem(nWhich, aStr));
502 : }
503 : else
504 0 : rSet.DisableItem(nWhich);
505 : }
506 : else
507 : {
508 0 : nCount = rMgr.GetRedoActionCount();
509 0 : if(nCount)
510 : {
511 0 : String aStr(SvtResId( STR_REDO));
512 0 : aStr += rMgr.GetRedoActionComment(--nCount);
513 0 : rSet.Put(SfxStringItem(nWhich,aStr));
514 : }
515 : else
516 0 : rSet.DisableItem(nWhich);
517 : }
518 : }
519 0 : break;
520 : case SID_MAIL_SENDDOCASPDF:
521 : case SID_MAIL_SENDDOC :
522 : case SID_EXPORTDOCASPDF:
523 : case SID_DIRECTEXPORTDOCASPDF:
524 : case SID_EXPORTDOC:
525 : case SID_REPEAT:
526 : case SID_BROWSER_MODE:
527 : case FN_PRINT_LAYOUT:
528 0 : rSet.DisableItem(nWhich);
529 0 : break;
530 : case SID_CUT:
531 : case SID_COPY:
532 0 : if(!pTextView->HasSelection())
533 0 : rSet.DisableItem(nWhich);
534 0 : break;
535 : case SID_PASTE:
536 : {
537 : TransferableDataHelper aDataHelper(
538 : TransferableDataHelper::CreateFromSystemClipboard(
539 0 : &aEditWin) );
540 0 : sal_Bool bDisable = !aDataHelper.GetXTransferable().is() ||
541 0 : 0 == aDataHelper.GetFormatCount();
542 0 : if( bDisable )
543 0 : rSet.DisableItem(nWhich);
544 : }
545 0 : break;
546 : }
547 0 : nWhich = aIter.NextWhich();
548 0 : }
549 0 : }
550 :
551 0 : SvxSearchItem* SwSrcView::GetSearchItem()
552 : {
553 0 : if(!pSearchItem)
554 : {
555 0 : pSearchItem = new SvxSearchItem(SID_SEARCH_ITEM);
556 : }
557 0 : return pSearchItem;
558 : }
559 :
560 0 : void SwSrcView::SetSearchItem( const SvxSearchItem& rItem )
561 : {
562 0 : delete pSearchItem;
563 0 : pSearchItem = (SvxSearchItem*)rItem.Clone();
564 0 : }
565 :
566 0 : sal_uInt16 SwSrcView::StartSearchAndReplace(const SvxSearchItem& rSearchItem,
567 : sal_Bool bFromStart,
568 : sal_Bool bApi,
569 : sal_Bool bRecursive)
570 : {
571 0 : ExtTextView* pTextView = aEditWin.GetTextView();
572 0 : TextSelection aSel;
573 0 : TextPaM aPaM;
574 :
575 0 : sal_Bool bForward = !rSearchItem.GetBackward();
576 0 : sal_Bool bAtStart = pTextView->GetSelection() == TextSelection( aPaM, aPaM );
577 :
578 0 : if( !bForward )
579 0 : aPaM = TextPaM( (sal_uLong)-1, (sal_uInt16)-1 );
580 :
581 0 : if( bFromStart )
582 : {
583 0 : aSel = pTextView->GetSelection();
584 0 : pTextView->SetSelection( TextSelection( aPaM, aPaM ));
585 : }
586 :
587 0 : util::SearchOptions aSearchOpt( rSearchItem.GetSearchOptions() );
588 0 : aSearchOpt.Locale = GetAppLanguageTag().getLocale();
589 :
590 : sal_uInt16 nFound;
591 0 : sal_Bool bAll = sal_False;
592 0 : switch( rSearchItem.GetCommand() )
593 : {
594 : case SVX_SEARCHCMD_FIND:
595 : case SVX_SEARCHCMD_FIND_ALL:
596 0 : nFound = pTextView->Search( aSearchOpt, bForward );
597 0 : break;
598 :
599 0 : case SVX_SEARCHCMD_REPLACE_ALL: bAll = sal_True;
600 : case SVX_SEARCHCMD_REPLACE:
601 0 : nFound = pTextView->Replace( aSearchOpt, bAll, bForward );
602 0 : break;
603 :
604 : default:
605 0 : nFound = 0;
606 : }
607 :
608 0 : if( !nFound )
609 : {
610 0 : sal_Bool bNotFoundMessage = sal_False;
611 0 : if(!bRecursive)
612 : {
613 0 : if(!bFromStart)
614 : {
615 0 : bNotFoundMessage = bAtStart;
616 : }
617 : else
618 : {
619 0 : bNotFoundMessage = sal_True;
620 0 : pTextView->SetSelection( aSel );
621 : }
622 : }
623 0 : else if(bAtStart)
624 : {
625 0 : bNotFoundMessage = sal_True;
626 : }
627 :
628 :
629 0 : if(!bApi)
630 : {
631 0 : if(bNotFoundMessage)
632 : {
633 0 : InfoBox( 0, SW_RES(MSG_NOT_FOUND)).Execute();
634 : }
635 0 : else if(!bRecursive && RET_YES ==
636 : QueryBox(0, SW_RES( bForward ? MSG_SEARCH_END
637 0 : : MSG_SEARCH_START)).Execute())
638 : {
639 0 : pTextView->SetSelection( TextSelection( aPaM, aPaM ) );
640 0 : StartSearchAndReplace( rSearchItem, sal_False, sal_False, sal_True );
641 : }
642 : }
643 : }
644 0 : return nFound;
645 : }
646 :
647 0 : sal_uInt16 SwSrcView::SetPrinter(SfxPrinter* pNew, sal_uInt16 nDiffFlags, bool )
648 : {
649 0 : SwDocShell* pDocSh = GetDocShell();
650 0 : if ( (SFX_PRINTER_JOBSETUP | SFX_PRINTER_PRINTER) & nDiffFlags )
651 : {
652 0 : pDocSh->GetDoc()->setPrinter( pNew, true, true );
653 0 : if ( nDiffFlags & SFX_PRINTER_PRINTER )
654 0 : pDocSh->SetModified();
655 : }
656 0 : if ( nDiffFlags & SFX_PRINTER_OPTIONS )
657 0 : ::SetPrinter( pDocSh->getIDocumentDeviceAccess(), pNew, sal_True );
658 :
659 0 : const sal_Bool bChgOri = nDiffFlags & SFX_PRINTER_CHG_ORIENTATION ? sal_True : sal_False;
660 0 : const sal_Bool bChgSize= nDiffFlags & SFX_PRINTER_CHG_SIZE ? sal_True : sal_False;
661 0 : if ( bChgOri || bChgSize )
662 : {
663 0 : pDocSh->SetModified();
664 : }
665 0 : return 0;
666 : }
667 :
668 0 : SfxPrinter* SwSrcView::GetPrinter( sal_Bool bCreate )
669 : {
670 0 : return GetDocShell()->GetDoc()->getPrinter( bCreate );
671 : }
672 :
673 0 : sal_Int32 SwSrcView::PrintSource(
674 : OutputDevice *pOutDev,
675 : sal_Int32 nPage,
676 : bool bCalcNumPagesOnly )
677 : {
678 0 : if (!pOutDev || nPage <= 0)
679 0 : return 0;
680 :
681 : //! this a lgorithm for printing the n-th page is very poor since it
682 : //! needs to go over the text of all previous pages to get to the correct one.
683 : //! But since HTML source code is expected to be just a small number of pages
684 : //! even this poor algorithm should be enough...
685 :
686 0 : pOutDev->Push();
687 :
688 0 : TextEngine* pTextEngine = aEditWin.GetTextEngine();
689 0 : pOutDev->SetMapMode( MAP_100TH_MM );
690 0 : Font aFont( aEditWin.GetOutWin()->GetFont() );
691 0 : Size aSize( aFont.GetSize() );
692 0 : aSize = aEditWin.GetOutWin()->PixelToLogic( aSize, MAP_100TH_MM );
693 0 : aFont.SetSize( aSize );
694 0 : aFont.SetColor( COL_BLACK );
695 0 : pOutDev->SetFont( aFont );
696 :
697 0 : String aTitle( GetViewFrame()->GetWindow().GetText() );
698 :
699 0 : sal_uInt16 nLineHeight = (sal_uInt16) pOutDev->GetTextHeight(); // etwas mehr.
700 0 : sal_uInt16 nParaSpace = 10;
701 :
702 0 : Size aPaperSz = pOutDev->GetOutputSize();
703 0 : aPaperSz.Width() -= (LMARGPRN + RMARGPRN);
704 0 : aPaperSz.Height() -= (TMARGPRN + BMARGPRN);
705 :
706 : // nLinepPage stimmt nicht, wenn Zeilen umgebrochen werden muessen...
707 0 : sal_uInt16 nLinespPage = (sal_uInt16) (aPaperSz.Height() / nLineHeight);
708 0 : sal_uInt16 nCharspLine = (sal_uInt16) (aPaperSz.Width() / pOutDev->GetTextWidth(rtl::OUString('X')));
709 0 : sal_uInt16 nParas = static_cast< sal_uInt16 >( pTextEngine->GetParagraphCount() );
710 :
711 0 : sal_uInt16 nPages = (sal_uInt16) (nParas / nLinespPage + 1 );
712 0 : sal_uInt16 nCurPage = 1;
713 :
714 : // Header drucken...
715 0 : if (!bCalcNumPagesOnly && nPage == nCurPage)
716 0 : lcl_PrintHeader( *pOutDev, nPages, nCurPage, aTitle );
717 0 : const Point aStartPos( LMARGPRN, TMARGPRN );
718 0 : Point aPos( aStartPos );
719 0 : for ( sal_uInt16 nPara = 0; nPara < nParas; ++nPara )
720 : {
721 0 : String aLine( pTextEngine->GetText( nPara ) );
722 0 : lcl_ConvertTabsToSpaces( aLine );
723 0 : sal_uInt16 nLines = aLine.Len() / nCharspLine + 1;
724 0 : for ( sal_uInt16 nLine = 0; nLine < nLines; ++nLine )
725 : {
726 0 : String aTmpLine( aLine, nLine * nCharspLine, nCharspLine );
727 0 : aPos.Y() += nLineHeight;
728 0 : if ( aPos.Y() > ( aPaperSz.Height() + TMARGPRN - nLineHeight/2 ) )
729 : {
730 0 : ++nCurPage;
731 0 : if (!bCalcNumPagesOnly && nPage == nCurPage)
732 0 : lcl_PrintHeader( *pOutDev, nPages, nCurPage, aTitle );
733 0 : aPos = aStartPos;
734 : }
735 0 : if (!bCalcNumPagesOnly && nPage == nCurPage)
736 0 : pOutDev->DrawText( aPos, aTmpLine );
737 0 : }
738 0 : aPos.Y() += nParaSpace;
739 0 : }
740 :
741 0 : pOutDev->Pop();
742 :
743 : OSL_ENSURE( bCalcNumPagesOnly || nPage <= nCurPage, "page number out of range" );
744 0 : return nCurPage;
745 : }
746 :
747 0 : void SwSrcView::Notify( SfxBroadcaster& rBC, const SfxHint& rHint )
748 : {
749 0 : if ( rHint.ISA(SfxSimpleHint) &&
750 : (
751 0 : ((SfxSimpleHint&) rHint).GetId() == SFX_HINT_MODECHANGED ||
752 : (
753 0 : ((SfxSimpleHint&) rHint).GetId() == SFX_HINT_TITLECHANGED &&
754 0 : !GetDocShell()->IsReadOnly() && aEditWin.IsReadonly()
755 : )
756 : )
757 : )
758 : {
759 : // Broadcast kommt nur einmal!
760 0 : const SwDocShell* pDocSh = GetDocShell();
761 0 : const sal_Bool bReadonly = pDocSh->IsReadOnly();
762 0 : aEditWin.SetReadonly(bReadonly);
763 : }
764 0 : SfxViewShell::Notify(rBC, rHint);
765 0 : }
766 :
767 0 : void SwSrcView::Load(SwDocShell* pDocShell)
768 : {
769 0 : SvxHtmlOptions& rHtmlOptions = SvxHtmlOptions::Get();
770 : const sal_Char *pCharSet =
771 0 : rtl_getBestMimeCharsetFromTextEncoding( rHtmlOptions.GetTextEncoding() );
772 0 : rtl_TextEncoding eDestEnc = rtl_getTextEncodingFromMimeCharset( pCharSet );
773 :
774 0 : aEditWin.SetReadonly(pDocShell->IsReadOnly());
775 0 : aEditWin.SetTextEncoding(eDestEnc);
776 0 : SfxMedium* pMedium = pDocShell->GetMedium();
777 :
778 0 : const SfxFilter* pFilter = pMedium->GetFilter();
779 0 : sal_Bool bHtml = pFilter && pFilter->GetUserData() == "HTML";
780 0 : sal_Bool bDocModified = pDocShell->IsModified();
781 0 : if(bHtml && !bDocModified && pDocShell->HasName())
782 : {
783 0 : SvStream* pStream = pMedium->GetInStream();
784 0 : if(pStream && 0 == pStream->GetError() )
785 : {
786 : rtl_TextEncoding eHeaderEnc =
787 : SfxHTMLParser::GetEncodingByHttpHeader(
788 0 : pDocShell->GetHeaderAttributes() );
789 0 : if( RTL_TEXTENCODING_DONTKNOW == eHeaderEnc )
790 : {
791 : const sal_Char *pTmpCharSet =
792 0 : rtl_getBestMimeCharsetFromTextEncoding( RTL_TEXTENCODING_ISO_8859_1 );
793 0 : eHeaderEnc = rtl_getTextEncodingFromMimeCharset( pTmpCharSet );
794 : }
795 0 : if( RTL_TEXTENCODING_DONTKNOW != eHeaderEnc &&
796 : eDestEnc != eHeaderEnc )
797 : {
798 0 : eDestEnc = eHeaderEnc;
799 0 : aEditWin.SetTextEncoding(eDestEnc);
800 : }
801 0 : pStream->SetStreamCharSet( eDestEnc );
802 0 : pStream->Seek(0);
803 0 : TextEngine* pTextEngine = aEditWin.GetTextEngine();
804 0 : pTextEngine->EnableUndo(sal_False);
805 0 : aEditWin.Read(*pStream);
806 0 : pTextEngine->EnableUndo(sal_True);
807 : }
808 : else
809 : {
810 0 : Window *pTmpWindow = &GetViewFrame()->GetWindow();
811 0 : InfoBox(pTmpWindow, SW_RES(MSG_ERR_SRCSTREAM)).Execute();
812 : }
813 : }
814 : else
815 : {
816 0 : utl::TempFile aTempFile;
817 0 : aTempFile.EnableKillingFile();
818 0 : String sFileURL( aTempFile.GetURL() );
819 0 : SvtSaveOptions aOpt;
820 :
821 : {
822 0 : SfxMedium aMedium( sFileURL,STREAM_READWRITE );
823 0 : SwWriter aWriter( aMedium, *pDocShell->GetDoc() );
824 0 : WriterRef xWriter;
825 0 : ::GetHTMLWriter(aEmptyStr, aMedium.GetBaseURL( true ), xWriter);
826 0 : String sWriteName;
827 0 : if (pDocShell->HasName())
828 0 : sWriteName = pMedium->GetName();
829 : else
830 0 : sWriteName = sFileURL;
831 0 : sal_uLong nRes = aWriter.Write(xWriter, &sWriteName);
832 0 : if(nRes)
833 : {
834 0 : ErrorHandler::HandleError(ErrCode(nRes));
835 0 : aEditWin.SetReadonly(sal_True);
836 : }
837 0 : aMedium.Commit();
838 0 : SvStream* pInStream = aMedium.GetInStream();
839 0 : pInStream->Seek(0);
840 0 : pInStream->SetStreamCharSet( eDestEnc );
841 :
842 :
843 0 : aEditWin.Read(*pInStream);
844 0 : }
845 : }
846 0 : aEditWin.ClearModifyFlag();
847 :
848 0 : eLoadEncoding = eDestEnc;
849 :
850 0 : if(bDocModified)
851 0 : pDocShell->SetModified();// das Flag wird zwischendurch zurueckgesetzt
852 : // AutoLoad abschalten
853 0 : pDocShell->SetAutoLoad(INetURLObject(), 0, sal_False);
854 : OSL_ENSURE(PTR_CAST(SwWebDocShell, pDocShell), "Wieso keine WebDocShell?");
855 0 : sal_uInt16 nLine = ((SwWebDocShell*)pDocShell)->GetSourcePara();
856 0 : aEditWin.SetStartLine(nLine);
857 0 : aEditWin.GetTextEngine()->ResetUndo();
858 0 : aEditWin.GetOutWin()->GrabFocus();
859 0 : }
860 :
861 :
862 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|