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 : #include <hintids.hxx>
21 : #include <i18nlangtag/lang.h>
22 : #include <svl/slstitm.hxx>
23 : #include <svl/cjkoptions.hxx>
24 : #include <editeng/fontitem.hxx>
25 : #include <editeng/langitem.hxx>
26 : #include <svx/svdview.hxx>
27 : #include <vcl/msgbox.hxx>
28 : #include <sfx2/viewfrm.hxx>
29 : #include <sfx2/objface.hxx>
30 : #include <svx/svdotext.hxx>
31 : #include <editeng/editeng.hxx>
32 : #include <editeng/editview.hxx>
33 : #include <editeng/eeitem.hxx>
34 : #include <editeng/scripttypeitem.hxx>
35 : #include <sfx2/bindings.hxx>
36 : #include <svx/fontwork.hxx>
37 : #include <sfx2/request.hxx>
38 : #include <sfx2/sidebar/EnumContext.hxx>
39 : #include <svl/whiter.hxx>
40 : #include <editeng/outliner.hxx>
41 : #include <editeng/editstat.hxx>
42 : #include <svx/svdoutl.hxx>
43 : #include <com/sun/star/i18n/TransliterationModules.hpp>
44 : #include <com/sun/star/i18n/TransliterationModulesExtra.hpp>
45 : #include <com/sun/star/i18n/TextConversionOption.hpp>
46 : #include <com/sun/star/ui/dialogs/XExecutableDialog.hpp>
47 : #include <com/sun/star/lang/XInitialization.hpp>
48 : #include <swtypes.hxx>
49 : #include <view.hxx>
50 : #include <wrtsh.hxx>
51 : #include <viewopt.hxx>
52 : #include <initui.hxx>
53 : #include <drwtxtsh.hxx>
54 : #include <swundo.hxx>
55 : #include <breakit.hxx>
56 :
57 : #include <cmdid.h>
58 : #include <helpid.h>
59 : #include <globals.hrc>
60 : #include <shells.hrc>
61 :
62 : #define SwDrawTextShell
63 : #include <sfx2/msg.hxx>
64 : #include <swslots.hxx>
65 : #include <popup.hrc>
66 : #include <uitool.hxx>
67 : #include <wview.hxx>
68 : #include <swmodule.hxx>
69 : #include <svx/dialogs.hrc>
70 : #include <svx/svdoashp.hxx>
71 : #include <svx/svxdlg.hxx>
72 : #include <svx/xtable.hxx>
73 : #include <cppuhelper/bootstrap.hxx>
74 : #include "swabstdlg.hxx"
75 : #include "misc.hrc"
76 : #include <boost/scoped_ptr.hpp>
77 :
78 : using namespace ::com::sun::star;
79 : using namespace ::com::sun::star::uno;
80 : using namespace ::com::sun::star::beans;
81 : using namespace ::com::sun::star::i18n;
82 :
83 450 : SFX_IMPL_INTERFACE(SwDrawTextShell, SfxShell, SW_RES(STR_SHELLNAME_DRAW_TEXT))
84 :
85 90 : void SwDrawTextShell::InitInterface_Impl()
86 : {
87 90 : GetStaticInterface()->RegisterPopupMenu(SW_RES(MN_DRWTXT_POPUPMENU));
88 :
89 90 : GetStaticInterface()->RegisterObjectBar(SFX_OBJECTBAR_OBJECT, SW_RES(RID_DRAW_TEXT_TOOLBOX));
90 :
91 90 : GetStaticInterface()->RegisterChildWindow(SvxFontWorkChildWindow::GetChildWindowId());
92 90 : }
93 :
94 96 : TYPEINIT1(SwDrawTextShell,SfxShell)
95 :
96 0 : void SwDrawTextShell::Init()
97 : {
98 0 : SwWrtShell &rSh = GetShell();
99 0 : pSdrView = rSh.GetDrawView();
100 0 : SdrOutliner * pOutliner = pSdrView->GetTextEditOutliner();
101 : //#97471# mouse click _and_ key input at the same time
102 0 : if( !pOutliner )
103 0 : return ;
104 0 : OutlinerView* pOLV = pSdrView->GetTextEditOutlinerView();
105 0 : sal_uLong nCtrl = pOutliner->GetControlWord();
106 0 : nCtrl |= EE_CNTRL_AUTOCORRECT;
107 :
108 0 : SetUndoManager(&pOutliner->GetUndoManager());
109 :
110 : // Now let's try an AutoSpell.
111 :
112 0 : const SwViewOption* pVOpt = rSh.GetViewOptions();
113 0 : if(pVOpt->IsOnlineSpell())
114 : {
115 0 : nCtrl |= EE_CNTRL_ONLINESPELLING|EE_CNTRL_ALLOWBIGOBJS;
116 : }
117 : else
118 0 : nCtrl &= ~(EE_CNTRL_ONLINESPELLING);
119 :
120 0 : pOutliner->SetControlWord(nCtrl);
121 0 : pOLV->ShowCursor();
122 : }
123 :
124 0 : SwDrawTextShell::SwDrawTextShell(SwView &rV) :
125 : SfxShell(&rV),
126 0 : rView(rV)
127 : {
128 0 : SwWrtShell &rSh = GetShell();
129 0 : SetPool(rSh.GetAttrPool().GetSecondaryPool());
130 :
131 0 : Init();
132 :
133 0 : rSh.NoEdit(true);
134 0 : SetName(OUString("ObjectText"));
135 0 : SetHelpId(SW_DRWTXTSHELL);
136 0 : SfxShell::SetContextName(sfx2::sidebar::EnumContext::GetContextName(sfx2::sidebar::EnumContext::Context_DrawText));
137 0 : }
138 :
139 0 : SwDrawTextShell::~SwDrawTextShell()
140 : {
141 0 : if ( GetView().GetCurShell() == this )
142 0 : rView.ResetSubShell();
143 0 : }
144 :
145 0 : SwWrtShell& SwDrawTextShell::GetShell()
146 : {
147 0 : return rView.GetWrtShell();
148 : }
149 :
150 : // Disable slots with this status method
151 :
152 0 : void SwDrawTextShell::StateDisableItems( SfxItemSet &rSet )
153 : {
154 0 : SfxWhichIter aIter(rSet);
155 0 : sal_uInt16 nWhich = aIter.FirstWhich();
156 :
157 0 : while (nWhich)
158 : {
159 0 : rSet.DisableItem( nWhich );
160 0 : nWhich = aIter.NextWhich();
161 0 : }
162 0 : }
163 :
164 0 : void SwDrawTextShell::SetAttrToMarked(const SfxItemSet& rAttr)
165 : {
166 0 : Rectangle aNullRect;
167 0 : OutlinerView* pOLV = pSdrView->GetTextEditOutlinerView();
168 0 : Rectangle aOutRect = pOLV->GetOutputArea();
169 :
170 0 : if (aNullRect != aOutRect)
171 : {
172 0 : GetShell().GetDrawView()->SetAttributes(rAttr);
173 : }
174 0 : }
175 :
176 0 : bool SwDrawTextShell::IsTextEdit()
177 : {
178 0 : return pSdrView->IsTextEdit();
179 : }
180 :
181 0 : void SwDrawTextShell::ExecFontWork(SfxRequest& rReq)
182 : {
183 0 : SwWrtShell &rSh = GetShell();
184 0 : FieldUnit eMetric = ::GetDfltMetric(0 != PTR_CAST(SwWebView, &rSh.GetView()));
185 0 : SW_MOD()->PutItem(SfxUInt16Item(SID_ATTR_METRIC, static_cast< sal_uInt16 >(eMetric)) );
186 0 : SfxViewFrame* pVFrame = GetView().GetViewFrame();
187 0 : if ( rReq.GetArgs() )
188 : {
189 0 : pVFrame->SetChildWindow(SvxFontWorkChildWindow::GetChildWindowId(),
190 0 : ((const SfxBoolItem&) (rReq.GetArgs()->
191 0 : Get(SID_FONTWORK))).GetValue());
192 : }
193 : else
194 0 : pVFrame->ToggleChildWindow(SvxFontWorkChildWindow::GetChildWindowId());
195 :
196 0 : pVFrame->GetBindings().Invalidate(SID_FONTWORK);
197 0 : }
198 :
199 0 : void SwDrawTextShell::StateFontWork(SfxItemSet& rSet)
200 : {
201 0 : const sal_uInt16 nId = SvxFontWorkChildWindow::GetChildWindowId();
202 0 : rSet.Put(SfxBoolItem(SID_FONTWORK, GetView().GetViewFrame()->HasChildWindow(nId)));
203 0 : }
204 :
205 : // Edit SfxRequests for FontWork
206 :
207 0 : void SwDrawTextShell::ExecFormText(SfxRequest& rReq)
208 : {
209 0 : SwWrtShell &rSh = GetShell();
210 0 : SdrView* pDrView = rSh.GetDrawView();
211 :
212 0 : const SdrMarkList& rMarkList = pDrView->GetMarkedObjectList();
213 :
214 0 : if ( rMarkList.GetMarkCount() == 1 && rReq.GetArgs() )
215 : {
216 0 : const SfxItemSet& rSet = *rReq.GetArgs();
217 :
218 0 : if ( pDrView->IsTextEdit() )
219 : {
220 : //#111733# Sometimes SdrEndTextEdit() initiates the change in selection and
221 : // 'this' is not valid anymore
222 0 : SwView& rTempView = GetView();
223 0 : pDrView->SdrEndTextEdit(true);
224 : //this removes the current shell from the dispatcher stack!!
225 0 : rTempView.AttrChangedNotify(&rSh);
226 : }
227 :
228 0 : pDrView->SetAttributes(rSet);
229 : }
230 :
231 0 : }
232 :
233 : // Return Status values back to FontWork
234 :
235 0 : void SwDrawTextShell::GetFormTextState(SfxItemSet& rSet)
236 : {
237 0 : SwWrtShell &rSh = GetShell();
238 0 : SdrView* pDrView = rSh.GetDrawView();
239 0 : const SdrMarkList& rMarkList = pDrView->GetMarkedObjectList();
240 0 : const SdrObject* pObj = NULL;
241 0 : SvxFontWorkDialog* pDlg = NULL;
242 :
243 0 : const sal_uInt16 nId = SvxFontWorkChildWindow::GetChildWindowId();
244 :
245 0 : SfxViewFrame* pVFrame = GetView().GetViewFrame();
246 0 : if ( pVFrame->HasChildWindow(nId) )
247 0 : pDlg = (SvxFontWorkDialog*)(pVFrame->GetChildWindow(nId)->GetWindow());
248 :
249 0 : if ( rMarkList.GetMarkCount() == 1 )
250 0 : pObj = rMarkList.GetMark(0)->GetMarkedSdrObj();
251 :
252 0 : const SdrTextObj* pTextObj = dynamic_cast< const SdrTextObj* >(pObj);
253 : const bool bDeactivate(
254 0 : !pObj ||
255 0 : !pTextObj ||
256 0 : !pTextObj->HasText() ||
257 0 : dynamic_cast< const SdrObjCustomShape* >(pObj)); // #121538# no FontWork for CustomShapes
258 :
259 0 : if (bDeactivate)
260 : {
261 0 : rSet.DisableItem(XATTR_FORMTXTSTYLE);
262 0 : rSet.DisableItem(XATTR_FORMTXTADJUST);
263 0 : rSet.DisableItem(XATTR_FORMTXTDISTANCE);
264 0 : rSet.DisableItem(XATTR_FORMTXTSTART);
265 0 : rSet.DisableItem(XATTR_FORMTXTMIRROR);
266 0 : rSet.DisableItem(XATTR_FORMTXTHIDEFORM);
267 0 : rSet.DisableItem(XATTR_FORMTXTOUTLINE);
268 0 : rSet.DisableItem(XATTR_FORMTXTSHADOW);
269 0 : rSet.DisableItem(XATTR_FORMTXTSHDWCOLOR);
270 0 : rSet.DisableItem(XATTR_FORMTXTSHDWXVAL);
271 0 : rSet.DisableItem(XATTR_FORMTXTSHDWYVAL);
272 : }
273 : else
274 : {
275 0 : if ( pDlg )
276 0 : pDlg->SetColorList(XColorList::GetStdColorList());
277 :
278 0 : pDrView->GetAttributes( rSet );
279 : }
280 0 : }
281 :
282 0 : void SwDrawTextShell::ExecDrawLingu(SfxRequest &rReq)
283 : {
284 0 : SwWrtShell &rSh = GetShell();
285 0 : OutlinerView* pOutlinerView = pSdrView->GetTextEditOutlinerView();
286 0 : if( rSh.GetDrawView()->GetMarkedObjectList().GetMarkCount() )
287 : {
288 0 : switch(rReq.GetSlot())
289 : {
290 : case SID_THESAURUS:
291 0 : pOutlinerView->StartThesaurus();
292 0 : break;
293 :
294 : case SID_HANGUL_HANJA_CONVERSION:
295 : pOutlinerView->StartTextConversion(LANGUAGE_KOREAN, LANGUAGE_KOREAN, NULL,
296 0 : i18n::TextConversionOption::CHARACTER_BY_CHARACTER, true, false);
297 0 : break;
298 :
299 : case SID_CHINESE_CONVERSION:
300 : {
301 : //open ChineseTranslationDialog
302 0 : Reference<XComponentContext> xContext = comphelper::getProcessComponentContext();
303 0 : if (!xContext.is())
304 0 : return;
305 :
306 0 : Reference<lang::XMultiComponentFactory> xMCF(xContext->getServiceManager());
307 0 : if (!xMCF.is())
308 0 : return;
309 :
310 0 : OUString sService("com.sun.star.linguistic2.ChineseTranslationDialog");
311 : Reference<ui::dialogs::XExecutableDialog> xDialog(
312 0 : xMCF->createInstanceWithContext(sService, xContext), UNO_QUERY);
313 :
314 0 : Reference<lang::XInitialization> xInit(xDialog, UNO_QUERY);
315 :
316 0 : if (!xInit.is())
317 0 : return;
318 :
319 : // initialize dialog
320 0 : Reference<awt::XWindow> xDialogParentWindow(0);
321 0 : Sequence<Any> aSequence(1);
322 0 : Any* pArray = aSequence.getArray();
323 0 : PropertyValue aParam;
324 0 : aParam.Name = "ParentWindow";
325 0 : aParam.Value <<= makeAny(xDialogParentWindow);
326 0 : pArray[0] <<= makeAny(aParam);
327 0 : xInit->initialize( aSequence );
328 :
329 : //execute dialog
330 0 : sal_Int16 nDialogRet = xDialog->execute();
331 0 : if(RET_OK == nDialogRet)
332 : {
333 : //get some parameters from the dialog
334 0 : bool bToSimplified = true;
335 0 : bool bUseVariants = true;
336 0 : bool bCommonTerms = true;
337 0 : Reference<beans::XPropertySet> xPropertySet(xDialog, UNO_QUERY);
338 0 : if (xPropertySet.is())
339 : {
340 : try
341 : {
342 0 : xPropertySet->getPropertyValue("IsDirectionToSimplified") >>= bToSimplified;
343 0 : xPropertySet->getPropertyValue("IsUseCharacterVariants") >>= bUseVariants;
344 0 : xPropertySet->getPropertyValue("IsTranslateCommonTerms") >>= bCommonTerms;
345 : }
346 0 : catch (const Exception&)
347 : {
348 : }
349 : }
350 :
351 : //execute translation
352 0 : sal_Int16 nSourceLang = bToSimplified ? LANGUAGE_CHINESE_TRADITIONAL : LANGUAGE_CHINESE_SIMPLIFIED;
353 0 : sal_Int16 nTargetLang = bToSimplified ? LANGUAGE_CHINESE_SIMPLIFIED : LANGUAGE_CHINESE_TRADITIONAL;
354 0 : sal_Int32 nOptions = bUseVariants ? i18n::TextConversionOption::USE_CHARACTER_VARIANTS : 0;
355 0 : if(!bCommonTerms)
356 0 : nOptions = nOptions | i18n::TextConversionOption::CHARACTER_BY_CHARACTER;
357 :
358 0 : vcl::Font aTargetFont = OutputDevice::GetDefaultFont(DEFAULTFONT_CJK_TEXT, nTargetLang, DEFAULTFONT_FLAGS_ONLYONE);
359 :
360 0 : pOutlinerView->StartTextConversion(nSourceLang, nTargetLang, &aTargetFont, nOptions, false, false);
361 : }
362 :
363 0 : Reference<lang::XComponent> xComponent(xDialog, UNO_QUERY);
364 0 : if (xComponent.is())
365 0 : xComponent->dispose();
366 : }
367 0 : break;
368 :
369 : default:
370 : OSL_ENSURE(false, "unexpected slot-id");
371 : }
372 : }
373 : }
374 :
375 0 : void SwDrawTextShell::ExecDraw(SfxRequest &rReq)
376 : {
377 0 : SwWrtShell &rSh = GetShell();
378 0 : pSdrView = rSh.GetDrawView();
379 0 : OutlinerView* pOLV = pSdrView->GetTextEditOutlinerView();
380 :
381 0 : switch (rReq.GetSlot())
382 : {
383 : case FN_INSERT_SOFT_HYPHEN:
384 : case FN_INSERT_HARDHYPHEN:
385 : case FN_INSERT_HARD_SPACE:
386 : case SID_INSERT_RLM :
387 : case SID_INSERT_LRM :
388 : case SID_INSERT_ZWNBSP :
389 : case SID_INSERT_ZWSP:
390 : {
391 0 : sal_Unicode cIns = 0;
392 0 : switch(rReq.GetSlot())
393 : {
394 0 : case FN_INSERT_SOFT_HYPHEN: cIns = CHAR_SOFTHYPHEN; break;
395 0 : case FN_INSERT_HARDHYPHEN: cIns = CHAR_HARDHYPHEN; break;
396 0 : case FN_INSERT_HARD_SPACE: cIns = CHAR_HARDBLANK; break;
397 0 : case SID_INSERT_RLM : cIns = CHAR_RLM ; break;
398 0 : case SID_INSERT_LRM : cIns = CHAR_LRM ; break;
399 0 : case SID_INSERT_ZWSP : cIns = CHAR_ZWSP ; break;
400 0 : case SID_INSERT_ZWNBSP: cIns = CHAR_ZWNBSP; break;
401 : }
402 0 : pOLV->InsertText( OUString(cIns));
403 0 : rReq.Done();
404 : }
405 0 : break;
406 : case SID_CHARMAP:
407 : { // Insert special character
408 0 : InsertSymbol(rReq);
409 0 : break;
410 : }
411 : case FN_INSERT_STRING:
412 : {
413 0 : const SfxItemSet *pNewAttrs = rReq.GetArgs();
414 0 : sal_uInt16 nSlot = rReq.GetSlot();
415 0 : const SfxPoolItem* pItem = 0;
416 0 : if(pNewAttrs)
417 : {
418 0 : pNewAttrs->GetItemState(nSlot, false, &pItem );
419 0 : pOLV->InsertText(((const SfxStringItem *)pItem)->GetValue());
420 : }
421 0 : break;
422 : }
423 :
424 : case SID_SELECTALL:
425 : {
426 0 : SdrOutliner * pOutliner = pSdrView->GetTextEditOutliner();
427 0 : if(pOutliner)
428 : {
429 0 : sal_Int32 nParaCount = pOutliner->GetParagraphCount();
430 0 : if (nParaCount > 0)
431 0 : pOLV->SelectRange(0L, nParaCount );
432 : }
433 : }
434 0 : break;
435 :
436 : case FN_FORMAT_RESET: // delete hard text attributes
437 : {
438 0 : pOLV->RemoveAttribsKeepLanguages( true );
439 0 : pOLV->GetEditView().GetEditEngine()->RemoveFields(true);
440 0 : rReq.Done();
441 : }
442 0 : break;
443 :
444 : case FN_ESCAPE:
445 0 : if (pSdrView->IsTextEdit())
446 : {
447 : // Shell switch!
448 0 : rSh.EndTextEdit();
449 0 : SwView& rTempView = rSh.GetView();
450 0 : rTempView.ExitDraw();
451 0 : rSh.Edit();
452 0 : return;
453 : }
454 0 : break;
455 : case FN_DRAWTEXT_ATTR_DLG:
456 : {
457 0 : SfxItemSet aNewAttr( pSdrView->GetModel()->GetItemPool() );
458 0 : pSdrView->GetAttributes( aNewAttr );
459 0 : SvxAbstractDialogFactory* pFact = SvxAbstractDialogFactory::Create();
460 0 : if ( pFact )
461 : {
462 : boost::scoped_ptr<SfxAbstractTabDialog> pDlg(pFact->CreateTextTabDialog(
463 0 : &(GetView().GetViewFrame()->GetWindow()),
464 0 : &aNewAttr, pSdrView ));
465 0 : sal_uInt16 nResult = pDlg->Execute();
466 :
467 0 : if (nResult == RET_OK)
468 : {
469 0 : if (pSdrView->AreObjectsMarked())
470 : {
471 0 : pSdrView->SetAttributes(*pDlg->GetOutputItemSet());
472 0 : rReq.Done(*(pDlg->GetOutputItemSet()));
473 : }
474 0 : }
475 0 : }
476 : }
477 0 : break;
478 : case SID_TABLE_VERT_NONE:
479 : case SID_TABLE_VERT_CENTER:
480 : case SID_TABLE_VERT_BOTTOM:
481 : {
482 0 : sal_uInt16 nSId = rReq.GetSlot();
483 0 : if (pSdrView->AreObjectsMarked())
484 : {
485 0 : SdrTextVertAdjust eTVA = SDRTEXTVERTADJUST_TOP;
486 0 : if (nSId == SID_TABLE_VERT_CENTER)
487 0 : eTVA = SDRTEXTVERTADJUST_CENTER;
488 0 : else if (nSId == SID_TABLE_VERT_BOTTOM)
489 0 : eTVA = SDRTEXTVERTADJUST_BOTTOM;
490 :
491 0 : SfxItemSet aNewAttr( pSdrView->GetModel()->GetItemPool() );
492 0 : pSdrView->GetAttributes( aNewAttr );
493 0 : aNewAttr.Put(SdrTextVertAdjustItem(eTVA));
494 0 : pSdrView->SetAttributes(aNewAttr);
495 0 : rReq.Done();
496 : }
497 :
498 : }
499 0 : break;
500 :
501 : default:
502 : OSL_ENSURE(false, "unexpected slot-id");
503 0 : return;
504 : }
505 :
506 0 : GetView().GetViewFrame()->GetBindings().InvalidateAll(false);
507 :
508 0 : if (IsTextEdit() && pOLV->GetOutliner()->IsModified())
509 0 : rSh.SetModified();
510 : }
511 :
512 : // Execute undo
513 :
514 0 : void SwDrawTextShell::ExecUndo(SfxRequest &rReq)
515 : {
516 0 : if( IsTextEdit() )
517 : {
518 0 : bool bCallBase = true;
519 0 : const SfxItemSet* pArgs = rReq.GetArgs();
520 0 : if( pArgs )
521 : {
522 0 : sal_uInt16 nId = rReq.GetSlot(), nCnt = 1;
523 : const SfxPoolItem* pItem;
524 0 : switch( nId )
525 : {
526 : case SID_UNDO:
527 : case SID_REDO:
528 0 : if( SfxItemState::SET == pArgs->GetItemState( nId, false, &pItem ) &&
529 0 : 1 < (nCnt = ((SfxUInt16Item*)pItem)->GetValue()) )
530 : {
531 : // then we make by ourself.
532 0 : ::svl::IUndoManager* pUndoManager = GetUndoManager();
533 0 : if( pUndoManager )
534 : {
535 0 : if( SID_UNDO == nId )
536 0 : while( nCnt-- )
537 0 : pUndoManager->Undo();
538 : else
539 0 : while( nCnt-- )
540 0 : pUndoManager->Redo();
541 : }
542 0 : bCallBase = false;
543 0 : GetView().GetViewFrame()->GetBindings().InvalidateAll(false);
544 : }
545 0 : break;
546 : }
547 : }
548 0 : if( bCallBase )
549 : {
550 0 : SfxViewFrame *pSfxViewFrame = GetView().GetViewFrame();
551 0 : pSfxViewFrame->ExecuteSlot(rReq, pSfxViewFrame->GetInterface());
552 : }
553 : }
554 0 : }
555 :
556 : // State of undo
557 :
558 0 : void SwDrawTextShell::StateUndo(SfxItemSet &rSet)
559 : {
560 0 : if ( !IsTextEdit() )
561 0 : return;
562 :
563 0 : SfxViewFrame *pSfxViewFrame = GetView().GetViewFrame();
564 0 : SfxWhichIter aIter(rSet);
565 0 : sal_uInt16 nWhich = aIter.FirstWhich();
566 0 : while( nWhich )
567 : {
568 0 : switch ( nWhich )
569 : {
570 : case SID_GETUNDOSTRINGS:
571 : case SID_GETREDOSTRINGS:
572 : {
573 0 : ::svl::IUndoManager* pUndoManager = GetUndoManager();
574 0 : if( pUndoManager )
575 : {
576 : OUString (::svl::IUndoManager:: *fnGetComment)( size_t, bool const ) const;
577 :
578 : sal_uInt16 nCount;
579 0 : if( SID_GETUNDOSTRINGS == nWhich )
580 : {
581 0 : nCount = pUndoManager->GetUndoActionCount();
582 0 : fnGetComment = &::svl::IUndoManager::GetUndoActionComment;
583 : }
584 : else
585 : {
586 0 : nCount = pUndoManager->GetRedoActionCount();
587 0 : fnGetComment = &::svl::IUndoManager::GetRedoActionComment;
588 : }
589 0 : if( nCount )
590 : {
591 0 : OUString sList;
592 0 : for( sal_uInt16 n = 0; n < nCount; ++n )
593 0 : sList += (pUndoManager->*fnGetComment)( n, ::svl::IUndoManager::TopLevel ) + "\n";
594 :
595 0 : SfxStringListItem aItem( nWhich );
596 0 : aItem.SetString( sList );
597 0 : rSet.Put( aItem );
598 : }
599 : }
600 : else
601 0 : rSet.DisableItem( nWhich );
602 : }
603 0 : break;
604 :
605 : default:
606 : pSfxViewFrame->GetSlotState( nWhich,
607 0 : pSfxViewFrame->GetInterface(), &rSet );
608 : }
609 :
610 0 : nWhich = aIter.NextWhich();
611 0 : }
612 : }
613 :
614 0 : void SwDrawTextShell::ExecTransliteration( SfxRequest & rReq )
615 : {
616 0 : if (!pSdrView)
617 0 : return;
618 :
619 : using namespace i18n;
620 :
621 0 : sal_uInt32 nMode = 0;
622 :
623 0 : switch( rReq.GetSlot() )
624 : {
625 : case SID_TRANSLITERATE_SENTENCE_CASE:
626 0 : nMode = TransliterationModulesExtra::SENTENCE_CASE;
627 0 : break;
628 : case SID_TRANSLITERATE_TITLE_CASE:
629 0 : nMode = TransliterationModulesExtra::TITLE_CASE;
630 0 : break;
631 : case SID_TRANSLITERATE_TOGGLE_CASE:
632 0 : nMode = TransliterationModulesExtra::TOGGLE_CASE;
633 0 : break;
634 : case SID_TRANSLITERATE_UPPER:
635 0 : nMode = TransliterationModules_LOWERCASE_UPPERCASE;
636 0 : break;
637 : case SID_TRANSLITERATE_LOWER:
638 0 : nMode = TransliterationModules_UPPERCASE_LOWERCASE;
639 0 : break;
640 :
641 : case SID_TRANSLITERATE_HALFWIDTH:
642 0 : nMode = TransliterationModules_FULLWIDTH_HALFWIDTH;
643 0 : break;
644 : case SID_TRANSLITERATE_FULLWIDTH:
645 0 : nMode = TransliterationModules_HALFWIDTH_FULLWIDTH;
646 0 : break;
647 :
648 : case SID_TRANSLITERATE_HIRAGANA:
649 0 : nMode = TransliterationModules_KATAKANA_HIRAGANA;
650 0 : break;
651 : case SID_TRANSLITERATE_KATAGANA:
652 0 : nMode = TransliterationModules_HIRAGANA_KATAKANA;
653 0 : break;
654 :
655 : default:
656 : OSL_ENSURE(false, "wrong dispatcher");
657 : }
658 :
659 0 : if( nMode )
660 : {
661 0 : OutlinerView* pOLV = pSdrView->GetTextEditOutlinerView();
662 :
663 0 : if (!pOLV)
664 0 : return;
665 :
666 0 : pOLV->TransliterateText( nMode );
667 : }
668 : }
669 :
670 0 : void SwDrawTextShell::ExecRotateTransliteration( SfxRequest & rReq )
671 : {
672 0 : if( rReq.GetSlot() == SID_TRANSLITERATE_ROTATE_CASE )
673 : {
674 0 : if (!pSdrView)
675 0 : return;
676 :
677 0 : OutlinerView* pOLV = pSdrView->GetTextEditOutlinerView();
678 :
679 0 : if (!pOLV)
680 0 : return;
681 :
682 0 : pOLV->TransliterateText( m_aRotateCase.getNextMode() );
683 : }
684 : }
685 :
686 : // Insert special character (see SDraw: FUBULLET.CXX)
687 :
688 0 : void SwDrawTextShell::InsertSymbol(SfxRequest& rReq)
689 : {
690 0 : OutlinerView* pOLV = pSdrView->GetTextEditOutlinerView();
691 0 : if(!pOLV)
692 0 : return;
693 0 : const SfxItemSet *pArgs = rReq.GetArgs();
694 0 : const SfxPoolItem* pItem = 0;
695 0 : if( pArgs )
696 0 : pArgs->GetItemState(GetPool().GetWhich(SID_CHARMAP), false, &pItem);
697 :
698 0 : OUString sSym;
699 0 : OUString sFontName;
700 0 : if ( pItem )
701 : {
702 0 : sSym = ((const SfxStringItem*)pItem)->GetValue();
703 0 : const SfxPoolItem* pFtItem = NULL;
704 0 : pArgs->GetItemState( GetPool().GetWhich(SID_ATTR_SPECIALCHAR), false, &pFtItem);
705 0 : const SfxStringItem* pFontItem = PTR_CAST( SfxStringItem, pFtItem );
706 0 : if ( pFontItem )
707 0 : sFontName = pFontItem->GetValue();
708 : }
709 :
710 0 : SfxItemSet aSet(pOLV->GetAttribs());
711 0 : sal_uInt16 nScript = pOLV->GetSelectedScriptType();
712 0 : SvxFontItem aSetDlgFont( RES_CHRATR_FONT );
713 : {
714 0 : SvxScriptSetItem aSetItem( SID_ATTR_CHAR_FONT, *aSet.GetPool() );
715 0 : aSetItem.GetItemSet().Put( aSet, false );
716 0 : const SfxPoolItem* pI = aSetItem.GetItemOfScript( nScript );
717 0 : if( pI )
718 0 : aSetDlgFont = *(SvxFontItem*)pI;
719 : else
720 : aSetDlgFont = (SvxFontItem&)aSet.Get( GetWhichOfScript(
721 : SID_ATTR_CHAR_FONT,
722 0 : GetI18NScriptTypeOfLanguage( (sal_uInt16)GetAppLanguage() ) ));
723 0 : if (sFontName.isEmpty())
724 0 : sFontName = aSetDlgFont.GetFamilyName();
725 : }
726 :
727 0 : vcl::Font aFont(sFontName, Size(1,1));
728 0 : if(sSym.isEmpty())
729 : {
730 0 : SfxAllItemSet aAllSet( GetPool() );
731 0 : aAllSet.Put( SfxBoolItem( FN_PARAM_1, false ) );
732 :
733 0 : SwViewOption aOpt(*rView.GetWrtShell().GetViewOptions());
734 0 : OUString sSymbolFont = aOpt.GetSymbolFont();
735 0 : if( !sSymbolFont.isEmpty() )
736 0 : aAllSet.Put( SfxStringItem( SID_FONT_NAME, sSymbolFont ) );
737 : else
738 0 : aAllSet.Put( SfxStringItem( SID_FONT_NAME, aSetDlgFont.GetFamilyName() ) );
739 :
740 : // If character is selected, it can be shown
741 0 : SvxAbstractDialogFactory* pFact = SvxAbstractDialogFactory::Create();
742 : boost::scoped_ptr<SfxAbstractDialog> pDlg(pFact->CreateSfxDialog( rView.GetWindow(), aAllSet,
743 0 : rView.GetViewFrame()->GetFrame().GetFrameInterface(), RID_SVXDLG_CHARMAP ));
744 0 : sal_uInt16 nResult = pDlg->Execute();
745 0 : if( nResult == RET_OK )
746 : {
747 0 : SFX_ITEMSET_ARG( pDlg->GetOutputItemSet(), pCItem, SfxStringItem, SID_CHARMAP, false );
748 0 : SFX_ITEMSET_ARG( pDlg->GetOutputItemSet(), pFontItem, SvxFontItem, SID_ATTR_CHAR_FONT, false );
749 0 : if ( pFontItem )
750 : {
751 0 : aFont.SetName( pFontItem->GetFamilyName() );
752 0 : aFont.SetStyleName( pFontItem->GetStyleName() );
753 0 : aFont.SetCharSet( pFontItem->GetCharSet() );
754 0 : aFont.SetPitch( pFontItem->GetPitch() );
755 : }
756 :
757 0 : if ( pCItem )
758 : {
759 0 : sSym = pCItem->GetValue();
760 0 : aOpt.SetSymbolFont(aFont.GetName());
761 0 : SW_MOD()->ApplyUsrPref(aOpt, &rView);
762 : }
763 0 : }
764 : }
765 :
766 0 : if( !sSym.isEmpty() )
767 : {
768 : // do not flicker
769 0 : pOLV->HideCursor();
770 0 : SdrOutliner * pOutliner = pSdrView->GetTextEditOutliner();
771 0 : pOutliner->SetUpdateMode(false);
772 :
773 0 : SfxItemSet aOldSet( pOLV->GetAttribs() );
774 0 : SfxItemSet aFontSet( *aOldSet.GetPool(),
775 : EE_CHAR_FONTINFO, EE_CHAR_FONTINFO,
776 : EE_CHAR_FONTINFO_CJK, EE_CHAR_FONTINFO_CJK,
777 : EE_CHAR_FONTINFO_CTL, EE_CHAR_FONTINFO_CTL,
778 0 : 0 );
779 0 : aFontSet.Set( aOldSet );
780 :
781 : // Insert string
782 0 : pOLV->InsertText( sSym );
783 :
784 : // assign attributes (Set font)
785 0 : SfxItemSet aFontAttribSet( *aFontSet.GetPool(), aFontSet.GetRanges() );
786 0 : SvxFontItem aFontItem (aFont.GetFamily(), aFont.GetName(),
787 0 : aFont.GetStyleName(), aFont.GetPitch(),
788 0 : aFont.GetCharSet(),
789 0 : EE_CHAR_FONTINFO );
790 0 : nScript = g_pBreakIt->GetAllScriptsOfText( sSym );
791 0 : if( SCRIPTTYPE_LATIN & nScript )
792 0 : aFontAttribSet.Put( aFontItem, EE_CHAR_FONTINFO );
793 0 : if( SCRIPTTYPE_ASIAN & nScript )
794 0 : aFontAttribSet.Put( aFontItem, EE_CHAR_FONTINFO_CJK );
795 0 : if( SCRIPTTYPE_COMPLEX & nScript )
796 0 : aFontAttribSet.Put( aFontItem, EE_CHAR_FONTINFO_CTL );
797 0 : pOLV->SetAttribs(aFontAttribSet);
798 :
799 : // Remove selection
800 0 : ESelection aSel(pOLV->GetSelection());
801 0 : aSel.nStartPara = aSel.nEndPara;
802 0 : aSel.nStartPos = aSel.nEndPos;
803 0 : pOLV->SetSelection(aSel);
804 :
805 : // Restore old font
806 0 : pOLV->SetAttribs( aFontSet );
807 :
808 : // From now on show again
809 0 : pOutliner->SetUpdateMode(true);
810 0 : pOLV->ShowCursor();
811 :
812 0 : rReq.AppendItem( SfxStringItem( GetPool().GetWhich(SID_CHARMAP), sSym ) );
813 0 : if(!aFont.GetName().isEmpty())
814 0 : rReq.AppendItem( SfxStringItem( SID_ATTR_SPECIALCHAR, aFont.GetName() ) );
815 0 : rReq.Done();
816 0 : }
817 : }
818 :
819 0 : ::svl::IUndoManager* SwDrawTextShell::GetUndoManager()
820 : {
821 0 : SwWrtShell &rSh = GetShell();
822 0 : pSdrView = rSh.GetDrawView();
823 0 : SdrOutliner * pOutliner = pSdrView->GetTextEditOutliner();
824 0 : return &pOutliner->GetUndoManager();
825 : }
826 :
827 0 : void SwDrawTextShell::GetStatePropPanelAttr(SfxItemSet &rSet)
828 : {
829 0 : SfxWhichIter aIter( rSet );
830 0 : sal_uInt16 nWhich = aIter.FirstWhich();
831 :
832 0 : SwWrtShell &rSh = GetShell();
833 0 : pSdrView = rSh.GetDrawView();
834 :
835 0 : SfxItemSet aAttrs( pSdrView->GetModel()->GetItemPool() );
836 0 : pSdrView->GetAttributes( aAttrs );
837 :
838 0 : while ( nWhich )
839 : {
840 0 : sal_uInt16 nSlotId = SfxItemPool::IsWhich(nWhich)
841 0 : ? GetPool().GetSlotId(nWhich)
842 0 : : nWhich;
843 0 : switch ( nSlotId )
844 : {
845 : case SID_TABLE_VERT_NONE:
846 : case SID_TABLE_VERT_CENTER:
847 : case SID_TABLE_VERT_BOTTOM:
848 0 : bool bContour = false;
849 0 : SfxItemState eConState = aAttrs.GetItemState( SDRATTR_TEXT_CONTOURFRAME );
850 0 : if( eConState != SfxItemState::DONTCARE )
851 : {
852 0 : bContour = ( ( const SdrOnOffItem& )aAttrs.Get( SDRATTR_TEXT_CONTOURFRAME ) ).GetValue();
853 : }
854 0 : if (bContour) break;
855 :
856 0 : SfxItemState eVState = aAttrs.GetItemState( SDRATTR_TEXT_VERTADJUST );
857 : //SfxItemState eHState = aAttrs.GetItemState( SDRATTR_TEXT_HORZADJUST );
858 :
859 : //if(SfxItemState::DONTCARE != eVState && SfxItemState::DONTCARE != eHState)
860 0 : if(SfxItemState::DONTCARE != eVState)
861 : {
862 0 : SdrTextVertAdjust eTVA = (SdrTextVertAdjust)((const SdrTextVertAdjustItem&)aAttrs.Get(SDRATTR_TEXT_VERTADJUST)).GetValue();
863 0 : bool bSet = (nSlotId == SID_TABLE_VERT_NONE && eTVA == SDRTEXTVERTADJUST_TOP) ||
864 0 : (nSlotId == SID_TABLE_VERT_CENTER && eTVA == SDRTEXTVERTADJUST_CENTER) ||
865 0 : (nSlotId == SID_TABLE_VERT_BOTTOM && eTVA == SDRTEXTVERTADJUST_BOTTOM);
866 0 : rSet.Put(SfxBoolItem(nSlotId, bSet));
867 : }
868 : else
869 : {
870 0 : rSet.Put(SfxBoolItem(nSlotId, false));
871 : }
872 0 : break;
873 : }
874 0 : nWhich = aIter.NextWhich();
875 0 : }
876 270 : }
877 :
878 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|