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 "TextObjectBar.hxx"
22 :
23 : #include <svx/svxids.hrc>
24 :
25 : #include <i18nlangtag/mslangid.hxx>
26 : #include <editeng/ulspitem.hxx>
27 : #include <editeng/lspcitem.hxx>
28 : #include <editeng/adjustitem.hxx>
29 : #include <editeng/editview.hxx>
30 : #include <editeng/editeng.hxx>
31 : #include <editeng/outliner.hxx>
32 : #include <editeng/unolingu.hxx>
33 : #include <editeng/kernitem.hxx>
34 : #include <vcl/vclenum.hxx>
35 : #include <sfx2/app.hxx>
36 : #include <svl/whiter.hxx>
37 : #include <svl/itempool.hxx>
38 : #include <svl/stritem.hxx>
39 : #include <svl/style.hxx>
40 : #include <svl/languageoptions.hxx>
41 : #include <sfx2/tplpitem.hxx>
42 : #include <editeng/escapementitem.hxx>
43 : #include <svx/svdoutl.hxx>
44 : #include <svl/intitem.hxx>
45 : #include <editeng/scripttypeitem.hxx>
46 : #include <editeng/outlobj.hxx>
47 : #include <editeng/writingmodeitem.hxx>
48 : #include <editeng/frmdiritem.hxx>
49 : #include <editeng/fhgtitem.hxx>
50 :
51 :
52 : #include <sfx2/objface.hxx>
53 :
54 : #include "app.hrc"
55 : #include "glob.hrc"
56 : #include "res_bmp.hrc"
57 :
58 : #include "drawdoc.hxx"
59 : #include "DrawViewShell.hxx"
60 : #include "OutlineViewShell.hxx"
61 : #include "ViewShellBase.hxx"
62 : #include "ToolBarManager.hxx"
63 : #include "futempl.hxx"
64 : #include "sdresid.hxx"
65 : #include "Window.hxx"
66 : #include "OutlineView.hxx"
67 :
68 :
69 : using namespace sd;
70 : using namespace ::com::sun::star;
71 :
72 : #define TextObjectBar
73 : #include "sdslots.hxx"
74 :
75 : namespace sd {
76 :
77 : /**
78 : * Declare default interface (Slotmap must not be empty, therefore enter
79 : * something that (hopefully) never occurs.
80 : */
81 :
82 0 : SFX_IMPL_INTERFACE( TextObjectBar, SfxShell, SdResId(STR_TEXTOBJECTBARSHELL) )
83 : {
84 0 : }
85 :
86 0 : TYPEINIT1( TextObjectBar, SfxShell );
87 :
88 :
89 0 : TextObjectBar::TextObjectBar (
90 : ViewShell* pSdViewSh,
91 : SfxItemPool& rItemPool,
92 : ::sd::View* pSdView )
93 : : SfxShell(pSdViewSh->GetViewShell()),
94 : mpViewShell( pSdViewSh ),
95 0 : mpView( pSdView )
96 : {
97 0 : SetPool(&rItemPool);
98 :
99 0 : if( mpView )
100 : {
101 0 : OutlineView* pOutlinerView = dynamic_cast< OutlineView* >( mpView );
102 0 : if( pOutlinerView )
103 : {
104 0 : SetUndoManager(&pOutlinerView->GetOutliner()->GetUndoManager());
105 : }
106 : else
107 : {
108 0 : DrawDocShell* pDocShell = mpView->GetDoc().GetDocSh();
109 0 : if( pDocShell )
110 : {
111 0 : SetUndoManager(pDocShell->GetUndoManager());
112 0 : DrawViewShell* pDrawViewShell = dynamic_cast< DrawViewShell* >( pSdViewSh );
113 0 : if ( pDrawViewShell )
114 0 : SetRepeatTarget(pSdView);
115 : }
116 : }
117 : }
118 :
119 0 : SetName( OUString( "TextObjectBar" ));
120 :
121 : // SetHelpId( SD_IF_SDDRAWTEXTOBJECTBAR );
122 0 : }
123 :
124 :
125 0 : TextObjectBar::~TextObjectBar()
126 : {
127 0 : SetRepeatTarget(NULL);
128 0 : }
129 :
130 0 : void TextObjectBar::GetCharState( SfxItemSet& rSet )
131 : {
132 0 : SfxItemSet aCharAttrSet( mpView->GetDoc().GetPool() );
133 0 : mpView->GetAttributes( aCharAttrSet );
134 :
135 0 : SfxItemSet aNewAttr( mpViewShell->GetPool(),EE_ITEMS_START,EE_ITEMS_END);
136 :
137 0 : aNewAttr.Put(aCharAttrSet, false);
138 0 : rSet.Put(aNewAttr, false);
139 :
140 0 : SvxKerningItem aKern = ( (const SvxKerningItem&) aCharAttrSet.Get( EE_CHAR_KERNING ) );
141 : //aKern.SetWhich(SID_ATTR_CHAR_KERNING);
142 0 : rSet.Put(aKern);
143 :
144 0 : SfxItemState eState = aCharAttrSet.GetItemState( EE_CHAR_KERNING, true );
145 0 : if ( eState == SFX_ITEM_DONTCARE )
146 : {
147 0 : rSet.InvalidateItem(EE_CHAR_KERNING);
148 0 : }
149 0 : }
150 :
151 : /**
152 : * Status of attribute items.
153 : */
154 0 : void TextObjectBar::GetAttrState( SfxItemSet& rSet )
155 : {
156 0 : SfxWhichIter aIter( rSet );
157 0 : sal_uInt16 nWhich = aIter.FirstWhich();
158 0 : SfxItemSet aAttrSet( mpView->GetDoc().GetPool() );
159 0 : SvtLanguageOptions aLangOpt;
160 0 : sal_Bool bDisableParagraphTextDirection = !aLangOpt.IsCTLFontEnabled();
161 0 : sal_Bool bDisableVerticalText = !aLangOpt.IsVerticalTextEnabled();
162 :
163 0 : mpView->GetAttributes( aAttrSet );
164 :
165 0 : while ( nWhich )
166 : {
167 0 : sal_uInt16 nSlotId = SfxItemPool::IsWhich(nWhich)
168 0 : ? GetPool().GetSlotId(nWhich)
169 0 : : nWhich;
170 :
171 0 : switch ( nSlotId )
172 : {
173 : case SID_ATTR_CHAR_FONT:
174 : case SID_ATTR_CHAR_FONTHEIGHT:
175 : case SID_ATTR_CHAR_WEIGHT:
176 : case SID_ATTR_CHAR_POSTURE:
177 : case SID_ATTR_CHAR_SHADOWED:
178 : case SID_ATTR_CHAR_STRIKEOUT:
179 : {
180 0 : sal_uInt16 stretchX = 100;
181 0 : sal_uInt16 stretchY = 100;
182 0 : SvxScriptSetItem aSetItem( nSlotId, GetPool() );
183 0 : aSetItem.GetItemSet().Put( aAttrSet, false );
184 :
185 0 : sal_uInt16 nScriptType = mpView->GetScriptType();
186 :
187 0 : if( (nSlotId == SID_ATTR_CHAR_FONT) || (nSlotId == SID_ATTR_CHAR_FONTHEIGHT) )
188 : {
189 : // input language should be preferred over
190 : // current cursor position to detect script type
191 0 : OutlinerView* pOLV = mpView->GetTextEditOutlinerView();
192 0 : SdrOutliner *pOutliner = mpView->GetTextEditOutliner();
193 :
194 0 : if (mpView->ISA(OutlineView))
195 : {
196 : pOLV = static_cast<OutlineView*>(mpView)->GetViewByWindow(
197 0 : mpViewShell->GetActiveWindow());
198 : }
199 :
200 0 : if( pOutliner )
201 0 : pOutliner->GetGlobalCharStretching( stretchX, stretchY );
202 :
203 0 : if(pOLV && !pOLV->GetSelection().HasRange())
204 : {
205 0 : if( mpViewShell && mpViewShell->GetViewShell() && mpViewShell->GetViewShell()->GetWindow() )
206 : {
207 0 : LanguageType nInputLang = mpViewShell->GetViewShell()->GetWindow()->GetInputLanguage();
208 0 : if(nInputLang != LANGUAGE_DONTKNOW && nInputLang != LANGUAGE_SYSTEM)
209 0 : nScriptType = SvtLanguageOptions::GetScriptTypeOfLanguage( nInputLang );
210 : }
211 : }
212 : }
213 :
214 0 : const SfxPoolItem* pI = aSetItem.GetItemOfScript( nScriptType );
215 0 : if( pI )
216 : {
217 0 : if( nSlotId == SID_ATTR_CHAR_FONTHEIGHT )
218 : {
219 0 : SvxFontHeightItem aFontItem = *(dynamic_cast<const SvxFontHeightItem *>(pI));
220 0 : aFontItem.SetHeight(aFontItem.GetHeight(), stretchX, aFontItem.GetPropUnit());
221 0 : aAttrSet.Put( aFontItem, nWhich );
222 : }
223 : else
224 : {
225 0 : aAttrSet.Put( *pI, nWhich );
226 : }
227 : }
228 : else
229 : {
230 0 : aAttrSet.InvalidateItem( nWhich );
231 0 : }
232 : }
233 0 : break;
234 :
235 :
236 : case SID_STYLE_APPLY:
237 : case SID_STYLE_FAMILY2:
238 : {
239 0 : SfxStyleSheet* pStyleSheet = mpView->GetStyleSheetFromMarked();
240 0 : if( pStyleSheet )
241 0 : rSet.Put( SfxTemplateItem( nWhich, pStyleSheet->GetName() ) );
242 : else
243 : {
244 0 : rSet.Put( SfxTemplateItem( nWhich, OUString() ) );
245 : }
246 : }
247 0 : break;
248 :
249 : case SID_OUTLINE_LEFT:
250 : case SID_OUTLINE_RIGHT:
251 : case SID_OUTLINE_UP:
252 : case SID_OUTLINE_DOWN:
253 : {
254 0 : sal_Bool bDisableLeft = sal_True;
255 0 : sal_Bool bDisableRight = sal_True;
256 0 : sal_Bool bDisableUp = sal_True;
257 0 : sal_Bool bDisableDown = sal_True;
258 0 : OutlinerView* pOLV = mpView->GetTextEditOutlinerView();
259 :
260 0 : if (mpView->ISA(OutlineView))
261 : {
262 : pOLV = static_cast<OutlineView*>(mpView)->GetViewByWindow(
263 0 : mpViewShell->GetActiveWindow());
264 : }
265 :
266 0 : sal_Bool bOutlineViewSh = mpViewShell->ISA(OutlineViewShell);
267 :
268 0 : if (pOLV &&
269 0 : ( pOLV->GetOutliner()->GetMode() == OUTLINERMODE_OUTLINEOBJECT || bOutlineViewSh ) )
270 : {
271 : // Outliner at outline-mode
272 0 : ::Outliner* pOutl = pOLV->GetOutliner();
273 :
274 0 : std::vector<Paragraph*> aSelList;
275 0 : pOLV->CreateSelectionList(aSelList);
276 0 : Paragraph* pPara = aSelList.empty() ? NULL : *(aSelList.begin());
277 :
278 : // find out if we are a OutlineView
279 0 : sal_Bool bIsOutlineView(OUTLINERMODE_OUTLINEVIEW == pOLV->GetOutliner()->GetMode());
280 :
281 : // This is ONLY for OutlineViews
282 0 : if(bIsOutlineView)
283 : {
284 : // allow move up if position is 2 or greater OR it
285 : // is a title object (and thus depth==1)
286 0 : if(pOutl->GetAbsPos(pPara) > 1 || ( pOutl->HasParaFlag(pPara,PARAFLAG_ISPAGE) && pOutl->GetAbsPos(pPara) > 0 ) )
287 : {
288 : // not at top
289 0 : bDisableUp = sal_False;
290 : }
291 : }
292 : else
293 : {
294 : // old behaviour for OUTLINERMODE_OUTLINEOBJECT
295 0 : if(pOutl->GetAbsPos(pPara) > 0)
296 : {
297 : // not at top
298 0 : bDisableUp = sal_False;
299 : }
300 : }
301 :
302 0 : for (std::vector<Paragraph*>::const_iterator iter = aSelList.begin(); iter != aSelList.end(); ++iter)
303 : {
304 0 : pPara = *iter;
305 :
306 0 : sal_Int16 nDepth = pOutl->GetDepth( pOutl->GetAbsPos( pPara ) );
307 :
308 0 : if (nDepth > 0 || (bOutlineViewSh && (nDepth <= 0) && !pOutl->HasParaFlag( pPara, PARAFLAG_ISPAGE )) )
309 : {
310 : // not minimum depth
311 0 : bDisableLeft = sal_False;
312 : }
313 :
314 0 : if( (nDepth < pOLV->GetOutliner()->GetMaxDepth() && ( !bOutlineViewSh || pOutl->GetAbsPos(pPara) != 0 )) ||
315 0 : (bOutlineViewSh && (nDepth <= 0) && pOutl->HasParaFlag( pPara, PARAFLAG_ISPAGE ) && pOutl->GetAbsPos(pPara) != 0) )
316 : {
317 : // not maximum depth and not at top
318 0 : bDisableRight = sal_False;
319 : }
320 : }
321 :
322 0 : if ( ( pOutl->GetAbsPos(pPara) < pOutl->GetParagraphCount() - 1 ) &&
323 0 : ( pOutl->GetParagraphCount() > 1 || !bOutlineViewSh) )
324 : {
325 : // not last paragraph
326 0 : bDisableDown = sal_False;
327 : }
328 :
329 : // disable when first para and 2nd is not a title
330 0 : pPara = aSelList.empty() ? NULL : *(aSelList.begin());
331 :
332 0 : if(!bDisableDown && bIsOutlineView
333 0 : && pPara
334 0 : && 0 == pOutl->GetAbsPos(pPara)
335 0 : && pOutl->GetParagraphCount() > 1
336 0 : && !pOutl->HasParaFlag( pOutl->GetParagraph(1), PARAFLAG_ISPAGE ) )
337 : {
338 : // Needs to be disabled
339 0 : bDisableDown = sal_True;
340 0 : }
341 : }
342 :
343 0 : if (bDisableLeft)
344 0 : rSet.DisableItem(SID_OUTLINE_LEFT);
345 0 : if (bDisableRight)
346 0 : rSet.DisableItem(SID_OUTLINE_RIGHT);
347 0 : if (bDisableUp)
348 0 : rSet.DisableItem(SID_OUTLINE_UP);
349 0 : if (bDisableDown)
350 0 : rSet.DisableItem(SID_OUTLINE_DOWN);
351 : }
352 0 : break;
353 :
354 : case SID_TEXTDIRECTION_LEFT_TO_RIGHT:
355 : case SID_TEXTDIRECTION_TOP_TO_BOTTOM:
356 : {
357 0 : if ( bDisableVerticalText )
358 : {
359 0 : rSet.DisableItem( SID_TEXTDIRECTION_LEFT_TO_RIGHT );
360 0 : rSet.DisableItem( SID_TEXTDIRECTION_TOP_TO_BOTTOM );
361 : }
362 : else
363 : {
364 0 : sal_Bool bLeftToRight = sal_True;
365 :
366 0 : SdrOutliner* pOutl = mpView->GetTextEditOutliner();
367 0 : if( pOutl )
368 : {
369 0 : if( pOutl->IsVertical() )
370 0 : bLeftToRight = sal_False;
371 : }
372 : else
373 0 : bLeftToRight = ( (const SvxWritingModeItem&) aAttrSet.Get( SDRATTR_TEXTDIRECTION ) ).GetValue() == com::sun::star::text::WritingMode_LR_TB;
374 :
375 0 : rSet.Put( SfxBoolItem( SID_TEXTDIRECTION_LEFT_TO_RIGHT, bLeftToRight ) );
376 0 : rSet.Put( SfxBoolItem( SID_TEXTDIRECTION_TOP_TO_BOTTOM, !bLeftToRight ) );
377 :
378 0 : if( !bLeftToRight )
379 0 : bDisableParagraphTextDirection = sal_True;
380 : }
381 : }
382 0 : break;
383 :
384 : case SID_GROW_FONT_SIZE:
385 : case SID_SHRINK_FONT_SIZE:
386 : {
387 : // todo
388 : }
389 0 : break;
390 :
391 : case SID_THES:
392 : {
393 0 : if (mpView->GetTextEditOutlinerView())
394 : {
395 0 : EditView & rEditView = mpView->GetTextEditOutlinerView()->GetEditView();
396 0 : OUString aStatusVal;
397 0 : LanguageType nLang = LANGUAGE_NONE;
398 0 : bool bIsLookUpWord = GetStatusValueForThesaurusFromContext( aStatusVal, nLang, rEditView );
399 0 : rSet.Put( SfxStringItem( SID_THES, aStatusVal ) );
400 :
401 : // disable "Thesaurus" context menu entry if there is nothing to look up
402 0 : uno::Reference< linguistic2::XThesaurus > xThes( LinguMgr::GetThesaurus() );
403 0 : if (!bIsLookUpWord ||
404 0 : !xThes.is() || nLang == LANGUAGE_NONE || !xThes->hasLocale( LanguageTag( nLang). getLocale() ))
405 0 : rSet.DisableItem( SID_THES );
406 : }
407 : else
408 : {
409 0 : rSet.DisableItem( SID_THES );
410 : }
411 : //! avoid putting the same item as SfxBoolItem at the end of this function
412 0 : nSlotId = 0;
413 : }
414 0 : break;
415 :
416 : default:
417 0 : break;
418 : }
419 :
420 0 : nWhich = aIter.NextWhich();
421 : }
422 :
423 0 : rSet.Put( aAttrSet, false ); // <- sal_False, so DontCare-Status gets aquired
424 :
425 :
426 : // these are disabled in outline-mode
427 0 : if (!mpViewShell || !mpViewShell->ISA(DrawViewShell))
428 : {
429 0 : rSet.DisableItem( SID_ATTR_PARA_ADJUST_LEFT );
430 0 : rSet.DisableItem( SID_ATTR_PARA_ADJUST_RIGHT );
431 0 : rSet.DisableItem( SID_ATTR_PARA_ADJUST_CENTER );
432 0 : rSet.DisableItem( SID_ATTR_PARA_ADJUST_BLOCK );
433 0 : rSet.DisableItem( SID_ATTR_PARA_LINESPACE_10 );
434 0 : rSet.DisableItem( SID_ATTR_PARA_LINESPACE_15 );
435 0 : rSet.DisableItem( SID_ATTR_PARA_LINESPACE_20 );
436 0 : rSet.DisableItem( SID_PARASPACE_INCREASE );
437 0 : rSet.DisableItem( SID_PARASPACE_DECREASE );
438 0 : rSet.DisableItem( SID_TEXTDIRECTION_TOP_TO_BOTTOM );
439 0 : rSet.DisableItem( SID_TEXTDIRECTION_LEFT_TO_RIGHT );
440 0 : rSet.DisableItem( SID_ATTR_PARA_LEFT_TO_RIGHT );
441 0 : rSet.DisableItem( SID_ATTR_PARA_RIGHT_TO_LEFT );
442 : }
443 : else
444 : {
445 : // paragraph spacing
446 0 : OutlinerView* pOLV = mpView ? mpView->GetTextEditOutlinerView() : NULL;
447 0 : if( pOLV )
448 : {
449 0 : ESelection aSel = pOLV->GetSelection();
450 0 : aSel.Adjust();
451 0 : sal_Int32 nStartPara = aSel.nStartPara;
452 0 : sal_Int32 nEndPara = aSel.nEndPara;
453 0 : if( !aSel.HasRange() )
454 : {
455 0 : nStartPara = 0;
456 0 : nEndPara = pOLV->GetOutliner()->GetParagraphCount() - 1;
457 : }
458 0 : long nUpper = 0L;
459 0 : for( sal_Int32 nPara = nStartPara; nPara <= nEndPara; nPara++ )
460 : {
461 0 : const SfxItemSet& rItems = pOLV->GetOutliner()->GetParaAttribs( nPara );
462 0 : const SvxULSpaceItem& rItem = (const SvxULSpaceItem&) rItems.Get( EE_PARA_ULSPACE );
463 0 : nUpper = std::max( nUpper, (long)rItem.GetUpper() );
464 0 : }
465 0 : if( nUpper == 0L )
466 0 : rSet.DisableItem( SID_PARASPACE_DECREASE );
467 : }
468 : else
469 : {
470 : // never disabled at the moment!
471 : //rSet.DisableItem( SID_PARASPACE_INCREASE );
472 : //rSet.DisableItem( SID_PARASPACE_DECREASE );
473 : }
474 :
475 : // paragraph justification
476 0 : SvxLRSpaceItem aLR = ( (const SvxLRSpaceItem&) aAttrSet.Get( EE_PARA_LRSPACE ) );
477 0 : rSet.Put(aLR);
478 0 : SvxAdjust eAdj = ( (const SvxAdjustItem&) aAttrSet.Get( EE_PARA_JUST ) ).GetAdjust();
479 0 : switch( eAdj )
480 : {
481 : case SVX_ADJUST_LEFT:
482 0 : rSet.Put( SfxBoolItem( SID_ATTR_PARA_ADJUST_LEFT, true ) );
483 0 : break;
484 : case SVX_ADJUST_CENTER:
485 0 : rSet.Put( SfxBoolItem( SID_ATTR_PARA_ADJUST_CENTER, true ) );
486 0 : break;
487 : case SVX_ADJUST_RIGHT:
488 0 : rSet.Put( SfxBoolItem( SID_ATTR_PARA_ADJUST_RIGHT, true ) );
489 0 : break;
490 : case SVX_ADJUST_BLOCK:
491 0 : rSet.Put( SfxBoolItem( SID_ATTR_PARA_ADJUST_BLOCK, true ) );
492 0 : break;
493 : default:
494 0 : break;
495 : }
496 :
497 0 : Invalidate(SID_ATTR_PARA_ADJUST_LEFT);
498 0 : Invalidate(SID_ATTR_PARA_ADJUST_CENTER);
499 0 : Invalidate(SID_ATTR_PARA_ADJUST_RIGHT);
500 0 : Invalidate(SID_ATTR_PARA_ADJUST_BLOCK);
501 0 : Invalidate(SID_ATTR_PARA_LINESPACE);
502 0 : Invalidate(SID_ATTR_PARA_ULSPACE);
503 :
504 : // paragraph text direction
505 0 : if( bDisableParagraphTextDirection )
506 : {
507 0 : rSet.DisableItem( SID_ATTR_PARA_LEFT_TO_RIGHT );
508 0 : rSet.DisableItem( SID_ATTR_PARA_RIGHT_TO_LEFT );
509 : }
510 : else
511 : {
512 0 : switch( ( ( (SvxFrameDirectionItem&) aAttrSet.Get( EE_PARA_WRITINGDIR ) ) ).GetValue() )
513 : {
514 : case FRMDIR_VERT_TOP_LEFT:
515 : case FRMDIR_VERT_TOP_RIGHT:
516 : {
517 0 : rSet.DisableItem( SID_ATTR_PARA_LEFT_TO_RIGHT );
518 0 : rSet.DisableItem( SID_ATTR_PARA_RIGHT_TO_LEFT );
519 : }
520 0 : break;
521 :
522 : case FRMDIR_HORI_LEFT_TOP:
523 0 : rSet.Put( SfxBoolItem( SID_ATTR_PARA_LEFT_TO_RIGHT, true ) );
524 0 : rSet.Put( SfxBoolItem( SID_ATTR_PARA_RIGHT_TO_LEFT, false ) );
525 0 : break;
526 :
527 : case FRMDIR_HORI_RIGHT_TOP:
528 0 : rSet.Put( SfxBoolItem( SID_ATTR_PARA_LEFT_TO_RIGHT, false ) );
529 0 : rSet.Put( SfxBoolItem( SID_ATTR_PARA_RIGHT_TO_LEFT, true ) );
530 0 : break;
531 :
532 : // The case for the superordinate object is missing.
533 : case FRMDIR_ENVIRONMENT:
534 : {
535 0 : SdDrawDocument& rDoc = mpView->GetDoc();
536 0 : ::com::sun::star::text::WritingMode eMode = rDoc.GetDefaultWritingMode();
537 0 : sal_Bool bIsLeftToRight(sal_False);
538 :
539 0 : if(::com::sun::star::text::WritingMode_LR_TB == eMode
540 0 : || ::com::sun::star::text::WritingMode_TB_RL == eMode)
541 : {
542 0 : bIsLeftToRight = sal_True;
543 : }
544 :
545 0 : rSet.Put( SfxBoolItem( SID_ATTR_PARA_LEFT_TO_RIGHT, bIsLeftToRight ) );
546 0 : rSet.Put( SfxBoolItem( SID_ATTR_PARA_RIGHT_TO_LEFT, !bIsLeftToRight ) );
547 : }
548 0 : break;
549 : }
550 : }
551 :
552 0 : SvxLRSpaceItem aLRSpace = ( (const SvxLRSpaceItem&) aAttrSet.Get( EE_PARA_LRSPACE ) );
553 0 : aLRSpace.SetWhich(SID_ATTR_PARA_LRSPACE);
554 0 : rSet.Put(aLRSpace);
555 0 : Invalidate(SID_ATTR_PARA_LRSPACE);
556 : //Added by xuxu
557 0 : SfxItemState eState = aAttrSet.GetItemState( EE_PARA_LRSPACE );
558 0 : if ( eState == SFX_ITEM_DONTCARE )
559 : {
560 0 : rSet.InvalidateItem(EE_PARA_LRSPACE);
561 0 : rSet.InvalidateItem(SID_ATTR_PARA_LRSPACE);
562 : }
563 : sal_uInt16 nLineSpace = (sal_uInt16) ( (const SvxLineSpacingItem&) aAttrSet.
564 0 : Get( EE_PARA_SBL ) ).GetPropLineSpace();
565 0 : switch( nLineSpace )
566 : {
567 : case 100:
568 0 : rSet.Put( SfxBoolItem( SID_ATTR_PARA_LINESPACE_10, true ) );
569 0 : break;
570 : case 150:
571 0 : rSet.Put( SfxBoolItem( SID_ATTR_PARA_LINESPACE_15, true ) );
572 0 : break;
573 : case 200:
574 0 : rSet.Put( SfxBoolItem( SID_ATTR_PARA_LINESPACE_20, true ) );
575 0 : break;
576 0 : }
577 : }
578 :
579 : // justification (superscript, subscript) is also needed in outline-mode
580 : SvxEscapement eEsc = (SvxEscapement ) ( (const SvxEscapementItem&)
581 0 : aAttrSet.Get( EE_CHAR_ESCAPEMENT ) ).GetEnumValue();
582 :
583 0 : if( eEsc == SVX_ESCAPEMENT_SUPERSCRIPT )
584 0 : rSet.Put( SfxBoolItem( SID_SET_SUPER_SCRIPT, true ) );
585 0 : else if( eEsc == SVX_ESCAPEMENT_SUBSCRIPT )
586 0 : rSet.Put( SfxBoolItem( SID_SET_SUB_SCRIPT, true ) );
587 0 : }
588 :
589 : /**
590 : * Command event
591 : */
592 :
593 0 : void TextObjectBar::Command( const CommandEvent& )
594 : {
595 0 : }
596 :
597 :
598 : } // end of namespace sd
599 :
600 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|