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 :
22 : #include "cmdid.h"
23 : #include "swmodule.hxx"
24 : #include "view.hxx"
25 : #include "wrtsh.hxx"
26 : #include "globals.hrc"
27 :
28 : #include <vcl/metric.hxx>
29 : #include <vcl/settings.hxx>
30 :
31 : #include <svl/stritem.hxx>
32 : #include <editeng/fontitem.hxx>
33 : #include <sfx2/dialoghelper.hxx>
34 : #include <sfx2/htmlmode.hxx>
35 : #include <sfx2/objsh.hxx>
36 : #include <editeng/svxfont.hxx>
37 : #include <vcl/print.hxx>
38 : #include <sfx2/printer.hxx>
39 : #include <com/sun/star/i18n/ScriptType.hpp>
40 : #include <editeng/scripttypeitem.hxx>
41 : #include <com/sun/star/i18n/BreakIterator.hpp>
42 : #include <comphelper/processfactory.hxx>
43 :
44 : #include "charatr.hxx"
45 : #include "viewopt.hxx"
46 : #include "drpcps.hxx"
47 : #include "paratr.hxx"
48 : #include "uitool.hxx"
49 : #include "charfmt.hxx"
50 :
51 : #include "chrdlg.hrc"
52 :
53 : using namespace css;
54 : using namespace css::uno;
55 : using namespace css::lang;
56 :
57 : static const sal_uInt16 aPageRg[] = {
58 : RES_PARATR_DROP, RES_PARATR_DROP,
59 : 0
60 : };
61 :
62 : class SwDropCapsPict : public Control
63 : {
64 : SwDropCapsPage* mpPage;
65 : OUString maText;
66 : OUString maScriptText;
67 : Color maBackColor;
68 : Color maTextLineColor;
69 : sal_uInt8 mnLines;
70 : long mnTotLineH;
71 : long mnLineH;
72 : long mnTextH;
73 : sal_uInt16 mnDistance;
74 : Printer* mpPrinter;
75 : bool mbDelPrinter;
76 : /// The _ScriptInfo structure holds information on where we change from one
77 : /// script to another.
78 : struct _ScriptInfo
79 : {
80 : sal_uLong textWidth; ///< Physical width of this segment.
81 : sal_uInt16 scriptType; ///< Script type (e.g. Latin, Asian, Complex)
82 : sal_Int32 changePos; ///< Character position where the script changes.
83 0 : _ScriptInfo(sal_uLong txtWidth, sal_uInt16 scrptType, sal_Int32 position)
84 0 : : textWidth(txtWidth), scriptType(scrptType), changePos(position) {}
85 : };
86 : std::vector<_ScriptInfo> maScriptChanges;
87 : SvxFont maFont;
88 : SvxFont maCJKFont;
89 : SvxFont maCTLFont;
90 : Size maTextSize;
91 : Reference< css::i18n::XBreakIterator > xBreak;
92 :
93 : virtual void Paint(const Rectangle &rRect) SAL_OVERRIDE;
94 : void CheckScript( void );
95 : Size CalcTextSize( void );
96 : inline void InitPrinter( void );
97 : void _InitPrinter( void );
98 : void GetFontSettings( const SwDropCapsPage& _rPage, vcl::Font& _rFont, sal_uInt16 _nWhich );
99 : void GetFirstScriptSegment(sal_Int32 &start, sal_Int32 &end, sal_uInt16 &scriptType);
100 : bool GetNextScriptSegment(size_t &nIdx, sal_Int32 &start, sal_Int32 &end, sal_uInt16 &scriptType);
101 :
102 : public:
103 :
104 0 : SwDropCapsPict(vcl::Window *pParent, WinBits nBits)
105 : : Control(pParent, nBits)
106 : , mpPage(NULL)
107 : , mnLines(0)
108 : , mnTotLineH(0)
109 : , mnLineH(0)
110 : , mnTextH(0)
111 : , mnDistance(0)
112 : , mpPrinter(NULL)
113 0 : , mbDelPrinter(false)
114 0 : {}
115 :
116 0 : void SetDropCapsPage(SwDropCapsPage* pPage) { mpPage = pPage; }
117 :
118 : virtual ~SwDropCapsPict();
119 :
120 : void UpdatePaintSettings( void ); // also invalidates control!
121 :
122 : virtual void Resize() SAL_OVERRIDE;
123 : virtual Size GetOptimalSize() const SAL_OVERRIDE;
124 :
125 : void SetText( const OUString& rT ) SAL_OVERRIDE;
126 : void SetLines( sal_uInt8 nL );
127 : void SetDistance( sal_uInt16 nD );
128 : void SetValues( const OUString& rText, sal_uInt8 nLines, sal_uInt16 nDistance );
129 :
130 : void DrawPrev( const Point& rPt );
131 : };
132 :
133 0 : extern "C" SAL_DLLPUBLIC_EXPORT vcl::Window* SAL_CALL makeSwDropCapsPict(vcl::Window *pParent, VclBuilder::stringmap &)
134 : {
135 0 : return new SwDropCapsPict(pParent, WB_BORDER);
136 : }
137 :
138 0 : void SwDropCapsPict::SetText( const OUString& rT )
139 : {
140 0 : maText = rT;
141 0 : UpdatePaintSettings();
142 0 : }
143 :
144 0 : Size SwDropCapsPict::GetOptimalSize() const
145 : {
146 0 : return getParagraphPreviewOptimalSize(this);
147 : }
148 :
149 0 : void SwDropCapsPict::Resize()
150 : {
151 0 : Control::Resize();
152 0 : UpdatePaintSettings();
153 0 : }
154 :
155 0 : void SwDropCapsPict::SetLines( sal_uInt8 nL )
156 : {
157 0 : mnLines = nL;
158 0 : UpdatePaintSettings();
159 0 : }
160 :
161 0 : void SwDropCapsPict::SetDistance( sal_uInt16 nD )
162 : {
163 0 : mnDistance = nD;
164 0 : UpdatePaintSettings();
165 0 : }
166 :
167 0 : void SwDropCapsPict::SetValues( const OUString& rText, sal_uInt8 nLines, sal_uInt16 nDistance )
168 : {
169 0 : maText = rText;
170 0 : mnLines = nLines;
171 0 : mnDistance = nDistance;
172 :
173 0 : UpdatePaintSettings();
174 0 : }
175 :
176 0 : void SwDropCapsPict::InitPrinter( void )
177 : {
178 0 : if( !mpPrinter )
179 0 : _InitPrinter();
180 0 : }
181 :
182 : // Create Default-String from character-count (A, AB, ABC, ...)
183 0 : OUString GetDefaultString(sal_uInt16 nChars)
184 : {
185 0 : OUString aStr;
186 0 : for (sal_uInt16 i = 0; i < nChars; i++)
187 0 : aStr += OUString((char) (i + 65));
188 0 : return aStr;
189 : }
190 :
191 0 : static void calcFontHeightAnyAscent( OutputDevice* _pWin, vcl::Font& _rFont, long& _nHeight, long& _nAscent )
192 : {
193 0 : if ( !_nHeight )
194 : {
195 0 : _pWin->SetFont( _rFont );
196 0 : FontMetric aMetric( _pWin->GetFontMetric() );
197 0 : _nHeight = aMetric.GetLineHeight();
198 0 : _nAscent = aMetric.GetAscent();
199 : }
200 0 : }
201 :
202 0 : SwDropCapsPict::~SwDropCapsPict()
203 : {
204 0 : if( mbDelPrinter )
205 0 : delete mpPrinter;
206 0 : }
207 :
208 : /// Get the details of the first script change.
209 : /// @param[out] start The character position of the start of the segment.
210 : /// @param[out] end The character position of the end of the segment.
211 : /// @param[out] scriptType The script type (Latin, Asian, Complex etc.)
212 0 : void SwDropCapsPict::GetFirstScriptSegment(sal_Int32 &start, sal_Int32 &end, sal_uInt16 &scriptType)
213 : {
214 0 : start = 0;
215 0 : if( maScriptChanges.empty() )
216 : {
217 0 : end = maText.getLength();
218 0 : scriptType = css::i18n::ScriptType::LATIN;
219 : }
220 : else
221 : {
222 0 : end = maScriptChanges[ 0 ].changePos;
223 0 : scriptType = maScriptChanges[ 0 ].scriptType;
224 : }
225 0 : }
226 :
227 : /// Get the details of the first script change.
228 : /// @param[in,out] nIdx Index of the current script change.
229 : /// @param[out] start The character position of the start of the segment.
230 : /// @param[in,out] end The character position of the end of the segment.
231 : /// @param[out] scriptType The script type (Latin, Asian, Complex etc.)
232 : /// @returns True if there was a next segment, false if not.
233 0 : bool SwDropCapsPict::GetNextScriptSegment(size_t &nIdx, sal_Int32 &start, sal_Int32 &end, sal_uInt16 &scriptType)
234 : {
235 0 : if (maScriptChanges.empty() || nIdx >= maScriptChanges.size() - 1 || end >= maText.getLength())
236 0 : return false;
237 0 : start = maScriptChanges[nIdx++].changePos;
238 0 : end = maScriptChanges[ nIdx ].changePos;
239 0 : scriptType = maScriptChanges[ nIdx ].scriptType;
240 0 : return true;
241 : }
242 :
243 : #define LINES 10
244 : #define BORDER 2
245 :
246 0 : void SwDropCapsPict::GetFontSettings( const SwDropCapsPage& _rPage, vcl::Font& _rFont, sal_uInt16 _nWhich )
247 : {
248 0 : SfxItemSet aSet( _rPage.rSh.GetAttrPool(), _nWhich, _nWhich);
249 0 : _rPage.rSh.GetCurAttr(aSet);
250 0 : SvxFontItem aFmtFont((SvxFontItem &) aSet.Get(_nWhich));
251 :
252 0 : _rFont.SetFamily (aFmtFont.GetFamily());
253 0 : _rFont.SetName (aFmtFont.GetFamilyName());
254 0 : _rFont.SetPitch (aFmtFont.GetPitch());
255 0 : _rFont.SetCharSet(aFmtFont.GetCharSet());
256 0 : }
257 :
258 0 : void SwDropCapsPict::UpdatePaintSettings( void )
259 : {
260 0 : maBackColor = GetSettings().GetStyleSettings().GetWindowColor();
261 0 : maTextLineColor = Color( COL_LIGHTGRAY );
262 :
263 : // gray lines
264 0 : mnTotLineH = (GetOutputSizePixel().Height() - 2 * BORDER) / LINES;
265 0 : mnLineH = mnTotLineH - 2;
266 :
267 0 : vcl::Font aFont;
268 0 : if (mpPage)
269 : {
270 0 : if (!mpPage->m_pTemplateBox->GetSelectEntryPos())
271 : {
272 : // query the Font at paragraph's beginning
273 0 : mpPage->rSh.SttCrsrMove();
274 0 : mpPage->rSh.Push();
275 0 : mpPage->rSh.ClearMark();
276 0 : SwWhichPara pSwuifnParaCurr = GetfnParaCurr();
277 0 : SwPosPara pSwuifnParaStart = GetfnParaStart();
278 0 : mpPage->rSh.MovePara(pSwuifnParaCurr,pSwuifnParaStart);
279 : // normal
280 0 : GetFontSettings( *mpPage, aFont, RES_CHRATR_FONT );
281 :
282 : // CJK
283 0 : GetFontSettings( *mpPage, maCJKFont, RES_CHRATR_CJK_FONT );
284 :
285 : // CTL
286 0 : GetFontSettings( *mpPage, maCTLFont, RES_CHRATR_CTL_FONT );
287 :
288 0 : mpPage->rSh.Pop(false);
289 0 : mpPage->rSh.EndCrsrMove();
290 : }
291 : else
292 : {
293 : // query Font at character template
294 : SwCharFmt *pFmt = mpPage->rSh.GetCharStyle(
295 : mpPage->m_pTemplateBox->GetSelectEntry(),
296 0 : SwWrtShell::GETSTYLE_CREATEANY );
297 : OSL_ENSURE(pFmt, "character style doesn't exist!");
298 0 : const SvxFontItem &rFmtFont = pFmt->GetFont();
299 :
300 0 : aFont.SetFamily (rFmtFont.GetFamily());
301 0 : aFont.SetName (rFmtFont.GetFamilyName());
302 0 : aFont.SetPitch (rFmtFont.GetPitch());
303 0 : aFont.SetCharSet(rFmtFont.GetCharSet());
304 : }
305 : }
306 :
307 0 : mnTextH = mnLines * mnTotLineH;
308 0 : aFont.SetSize(Size(0, mnTextH));
309 0 : maCJKFont.SetSize(Size(0, mnTextH));
310 0 : maCTLFont.SetSize(Size(0, mnTextH));
311 :
312 0 : aFont.SetTransparent(true);
313 0 : maCJKFont.SetTransparent(true);
314 0 : maCTLFont.SetTransparent(true);
315 :
316 0 : aFont.SetColor( SwViewOption::GetFontColor() );
317 0 : maCJKFont.SetColor( SwViewOption::GetFontColor() );
318 0 : maCTLFont.SetColor( SwViewOption::GetFontColor() );
319 :
320 0 : aFont.SetFillColor(GetSettings().GetStyleSettings().GetWindowColor());
321 0 : maCJKFont.SetFillColor(GetSettings().GetStyleSettings().GetWindowColor());
322 0 : maCTLFont.SetFillColor(GetSettings().GetStyleSettings().GetWindowColor());
323 :
324 0 : maCJKFont.SetSize(Size(0, maCJKFont.GetSize().Height()));
325 0 : maCTLFont.SetSize(Size(0, maCTLFont.GetSize().Height()));
326 :
327 0 : SetFont(aFont);
328 0 : aFont.SetSize(Size(0, aFont.GetSize().Height()));
329 0 : SetFont(aFont);
330 0 : maFont = aFont;
331 :
332 0 : CheckScript();
333 :
334 0 : maTextSize = CalcTextSize();
335 :
336 0 : Invalidate();
337 0 : }
338 :
339 0 : void SwDropCapsPict::Paint(const Rectangle &/*rRect*/)
340 : {
341 0 : if (!IsVisible())
342 0 : return;
343 :
344 0 : SetMapMode(MapMode(MAP_PIXEL));
345 0 : SetLineColor();
346 :
347 0 : SetFillColor( maBackColor );
348 :
349 0 : Size aOutputSizePixel( GetOutputSizePixel() );
350 :
351 0 : DrawRect(Rectangle(Point(0, 0), aOutputSizePixel ));
352 : SetClipRegion(vcl::Region(Rectangle(
353 : Point(BORDER, BORDER),
354 0 : Size (aOutputSizePixel.Width () - 2 * BORDER,
355 0 : aOutputSizePixel.Height() - 2 * BORDER))));
356 :
357 : OSL_ENSURE(mnLineH > 0, "We cannot make it that small");
358 0 : long nY0 = (aOutputSizePixel.Height() - (LINES * mnTotLineH)) / 2;
359 0 : SetFillColor( maTextLineColor );
360 0 : for (int i = 0; i < LINES; ++i)
361 0 : DrawRect(Rectangle(Point(BORDER, nY0 + i * mnTotLineH), Size(aOutputSizePixel.Width() - 2 * BORDER, mnLineH)));
362 :
363 : // Text background with gap (240 twips ~ 1 line height)
364 0 : const long nDistW = (((static_cast<long>(mnDistance) * 100) / 240) * mnTotLineH) / 100;
365 0 : SetFillColor( maBackColor );
366 0 : if (mpPage && mpPage->m_pDropCapsBox->IsChecked())
367 : {
368 0 : const Size aTextSize( maTextSize.Width()+nDistW, maTextSize.Height() );
369 0 : DrawRect( Rectangle( Point( BORDER, nY0 ), aTextSize ) );
370 :
371 : // draw Text
372 0 : DrawPrev( Point( BORDER, nY0 ) );
373 : }
374 :
375 0 : SetClipRegion();
376 : }
377 :
378 0 : void SwDropCapsPict::DrawPrev( const Point& rPt )
379 : {
380 0 : Point aPt(rPt);
381 0 : InitPrinter();
382 :
383 0 : vcl::Font aOldFont = mpPrinter->GetFont();
384 : sal_uInt16 nScript;
385 0 : size_t nIdx = 0;
386 : sal_Int32 nStart;
387 : sal_Int32 nEnd;
388 0 : GetFirstScriptSegment(nStart, nEnd, nScript);
389 : do
390 : {
391 0 : SvxFont& rFnt = (nScript==css::i18n::ScriptType::ASIAN) ? maCJKFont : ((nScript==css::i18n::ScriptType::COMPLEX) ? maCTLFont : maFont);
392 0 : mpPrinter->SetFont( rFnt );
393 :
394 0 : rFnt.DrawPrev( this, mpPrinter, aPt, maText, nStart, nEnd - nStart );
395 :
396 0 : aPt.X() += maScriptChanges[ nIdx ].textWidth;
397 0 : if ( !GetNextScriptSegment(nIdx, nStart, nEnd, nScript) )
398 0 : break;
399 : }
400 : while( true );
401 0 : mpPrinter->SetFont( aOldFont );
402 0 : }
403 :
404 0 : void SwDropCapsPict::CheckScript( void )
405 : {
406 0 : if( maScriptText == maText )
407 0 : return;
408 :
409 0 : maScriptText = maText;
410 0 : maScriptChanges.clear();
411 0 : if( !xBreak.is() )
412 : {
413 0 : Reference< XComponentContext > xContext = ::comphelper::getProcessComponentContext();
414 0 : xBreak = css::i18n::BreakIterator::create(xContext);
415 : }
416 0 : sal_Int16 nScript = xBreak->getScriptType( maText, 0 );
417 0 : sal_Int32 nChg = 0;
418 0 : if( css::i18n::ScriptType::WEAK == nScript )
419 : {
420 0 : nChg = xBreak->endOfScript( maText, nChg, nScript );
421 0 : if( nChg < maText.getLength() )
422 0 : nScript = xBreak->getScriptType( maText, nChg );
423 : else
424 0 : nScript = css::i18n::ScriptType::LATIN;
425 : }
426 :
427 : for(;;)
428 : {
429 0 : nChg = xBreak->endOfScript( maText, nChg, nScript );
430 0 : maScriptChanges.push_back( _ScriptInfo(0, nScript, nChg) );
431 0 : if( nChg >= maText.getLength() || nChg < 0 )
432 0 : break;
433 0 : nScript = xBreak->getScriptType( maText, nChg );
434 0 : }
435 : }
436 :
437 0 : Size SwDropCapsPict::CalcTextSize( void )
438 : {
439 0 : InitPrinter();
440 :
441 : sal_uInt16 nScript;
442 0 : size_t nIdx = 0;
443 : sal_Int32 nStart;
444 : sal_Int32 nEnd;
445 0 : GetFirstScriptSegment(nStart, nEnd, nScript);
446 0 : long nTxtWidth = 0;
447 0 : long nCJKHeight = 0;
448 0 : long nCTLHeight = 0;
449 0 : long nHeight = 0;
450 0 : long nAscent = 0;
451 0 : long nCJKAscent = 0;
452 0 : long nCTLAscent = 0;
453 : do
454 : {
455 0 : SvxFont& rFnt = ( nScript == css::i18n::ScriptType::ASIAN )? maCJKFont :
456 0 : ( ( nScript == css::i18n::ScriptType::COMPLEX )? maCTLFont : maFont );
457 0 : sal_uLong nWidth = rFnt.GetTxtSize( mpPrinter, maText, nStart, nEnd-nStart ).Width();
458 :
459 0 : if( nIdx < maScriptChanges.size() )
460 0 : maScriptChanges[ nIdx ].textWidth = nWidth;
461 0 : nTxtWidth += nWidth;
462 0 : switch(nScript)
463 : {
464 : case css::i18n::ScriptType::ASIAN:
465 0 : calcFontHeightAnyAscent( this, maCJKFont, nCJKHeight, nCJKAscent );
466 0 : break;
467 : case css::i18n::ScriptType::COMPLEX:
468 0 : calcFontHeightAnyAscent( this, maCTLFont, nCTLHeight, nCTLAscent );
469 0 : break;
470 : default:
471 0 : calcFontHeightAnyAscent( this, maFont, nHeight, nAscent );
472 : }
473 :
474 0 : if ( !GetNextScriptSegment(nIdx, nStart, nEnd, nScript) )
475 0 : break;
476 : }
477 : while( true );
478 0 : nHeight -= nAscent;
479 0 : nCJKHeight -= nCJKAscent;
480 0 : nCTLHeight -= nCTLAscent;
481 0 : if( nHeight < nCJKHeight )
482 0 : nHeight = nCJKHeight;
483 0 : if( nAscent < nCJKAscent )
484 0 : nAscent = nCJKAscent;
485 0 : if( nHeight < nCTLHeight )
486 0 : nHeight = nCTLHeight;
487 0 : if( nAscent < nCTLAscent )
488 0 : nAscent = nCTLAscent;
489 0 : nHeight += nAscent;
490 :
491 0 : Size aTxtSize( nTxtWidth, nHeight );
492 0 : return aTxtSize;
493 : }
494 :
495 0 : void SwDropCapsPict::_InitPrinter()
496 : {
497 0 : SfxViewShell* pSh = SfxViewShell::Current();
498 :
499 0 : if ( pSh )
500 0 : mpPrinter = pSh->GetPrinter();
501 :
502 0 : if ( !mpPrinter )
503 : {
504 0 : mpPrinter = new Printer;
505 0 : mbDelPrinter = true;
506 : }
507 0 : }
508 :
509 0 : SwDropCapsDlg::SwDropCapsDlg(vcl::Window *pParent, const SfxItemSet &rSet )
510 0 : : SfxSingleTabDialog(pParent, rSet)
511 : {
512 0 : SwDropCapsPage* pNewPage = (SwDropCapsPage*) SwDropCapsPage::Create(get_content_area(), &rSet);
513 0 : pNewPage->SetFormat(false);
514 0 : SetTabPage(pNewPage);
515 0 : }
516 :
517 0 : SwDropCapsPage::SwDropCapsPage(vcl::Window *pParent, const SfxItemSet &rSet)
518 : : SfxTabPage(pParent, "DropCapPage","modules/swriter/ui/dropcapspage.ui", &rSet)
519 : , bModified(false)
520 : , bFormat(true)
521 0 : , rSh(::GetActiveView()->GetWrtShell())
522 : {
523 0 : get(m_pDropCapsBox,"checkCB_SWITCH");
524 0 : get(m_pWholeWordCB,"checkCB_WORD");
525 0 : get(m_pDropCapsField,"spinFLD_DROPCAPS");
526 0 : get(m_pLinesField,"spinFLD_LINES");
527 0 : get(m_pDistanceField,"spinFLD_DISTANCE");
528 0 : get(m_pSwitchText,"labelFT_DROPCAPS");
529 0 : get(m_pLinesText,"labelTXT_LINES");
530 0 : get(m_pDistanceText,"labelTXT_DISTANCE");
531 0 : get(m_pTemplateText,"labelTXT_TEMPLATE");
532 0 : get(m_pTextText,"labelTXT_TEXT");
533 0 : get(m_pTextEdit,"entryEDT_TEXT");
534 0 : get(m_pTemplateBox,"comboBOX_TEMPLATE");
535 0 : get(m_pPict,"drawingareaWN_EXAMPLE");
536 :
537 0 : m_pPict->SetDropCapsPage(this);
538 :
539 0 : SetExchangeSupport();
540 :
541 0 : const sal_uInt16 nHtmlMode = ::GetHtmlMode((const SwDocShell*)SfxObjectShell::Current());
542 0 : bHtmlMode = nHtmlMode & HTMLMODE_ON ? sal_True : sal_False;
543 :
544 : // In the template dialog the text is not influenceable
545 0 : m_pTextText->Enable( !bFormat );
546 0 : m_pTextEdit->Enable( !bFormat );
547 :
548 : // Metrics
549 0 : SetMetric( *m_pDistanceField, GetDfltMetric(bHtmlMode) );
550 :
551 0 : m_pPict->SetBorderStyle( WindowBorderStyle::MONO );
552 :
553 : // Install handler
554 0 : Link aLk = LINK(this, SwDropCapsPage, ModifyHdl);
555 0 : m_pDropCapsField->SetModifyHdl( aLk );
556 0 : m_pLinesField->SetModifyHdl( aLk );
557 0 : m_pDistanceField->SetModifyHdl( aLk );
558 0 : m_pTextEdit->SetModifyHdl( aLk );
559 0 : m_pDropCapsBox->SetClickHdl (LINK(this, SwDropCapsPage, ClickHdl ));
560 0 : m_pTemplateBox->SetSelectHdl(LINK(this, SwDropCapsPage, SelectHdl));
561 0 : m_pWholeWordCB->SetClickHdl (LINK(this, SwDropCapsPage, WholeWordHdl ));
562 :
563 0 : setPreviewsToSamePlace(pParent, this);
564 0 : }
565 :
566 0 : SwDropCapsPage::~SwDropCapsPage()
567 : {
568 0 : }
569 :
570 0 : int SwDropCapsPage::DeactivatePage(SfxItemSet * _pSet)
571 : {
572 0 : if ( _pSet )
573 0 : FillSet( *_pSet );
574 :
575 0 : return LEAVE_PAGE;
576 : }
577 :
578 0 : SfxTabPage* SwDropCapsPage::Create(vcl::Window *pParent,
579 : const SfxItemSet *rSet)
580 : {
581 0 : return new SwDropCapsPage(pParent, *rSet);
582 : }
583 :
584 0 : bool SwDropCapsPage::FillItemSet(SfxItemSet *rSet)
585 : {
586 0 : if(bModified)
587 0 : FillSet(*rSet);
588 0 : return bModified;
589 : }
590 :
591 0 : void SwDropCapsPage::Reset(const SfxItemSet *rSet)
592 : {
593 : // Characters, lines, gap and text
594 0 : SwFmtDrop aFmtDrop((SwFmtDrop &) rSet->Get(RES_PARATR_DROP));
595 0 : if (aFmtDrop.GetLines() > 1)
596 : {
597 0 : m_pDropCapsField->SetValue(aFmtDrop.GetChars());
598 0 : m_pLinesField->SetValue(aFmtDrop.GetLines());
599 0 : m_pDistanceField->SetValue(m_pDistanceField->Normalize(aFmtDrop.GetDistance()), FUNIT_TWIP);
600 0 : m_pWholeWordCB->Check(aFmtDrop.GetWholeWord());
601 : }
602 : else
603 : {
604 0 : m_pDropCapsField->SetValue(1);
605 0 : m_pLinesField->SetValue(3);
606 0 : m_pDistanceField->SetValue(0);
607 : }
608 :
609 0 : ::FillCharStyleListBox(*m_pTemplateBox, rSh.GetView().GetDocShell(), true);
610 :
611 0 : m_pTemplateBox->InsertEntry(SW_RESSTR(SW_STR_NONE), 0);
612 :
613 : // Reset format
614 0 : m_pTemplateBox->SelectEntryPos(0);
615 0 : if (aFmtDrop.GetCharFmt())
616 0 : m_pTemplateBox->SelectEntry(aFmtDrop.GetCharFmt()->GetName());
617 :
618 : // Enable controls
619 0 : m_pDropCapsBox->Check(aFmtDrop.GetLines() > 1);
620 0 : const sal_uInt16 nVal = sal_uInt16(m_pDropCapsField->GetValue());
621 0 : if (bFormat)
622 0 : m_pTextEdit->SetText(GetDefaultString(nVal));
623 : else
624 : {
625 0 : m_pTextEdit->SetText(rSh.GetDropTxt(nVal));
626 0 : m_pTextEdit->Enable();
627 0 : m_pTextText->Enable();
628 : }
629 :
630 : // Preview
631 0 : m_pPict->SetValues( m_pTextEdit->GetText(),
632 0 : sal_uInt8( m_pLinesField->GetValue() ),
633 0 : sal_uInt16( m_pDistanceField->Denormalize( m_pDistanceField->GetValue( FUNIT_TWIP ) ) ) );
634 :
635 0 : ClickHdl(m_pDropCapsBox);
636 0 : bModified = false;
637 0 : }
638 :
639 0 : IMPL_LINK_NOARG(SwDropCapsPage, ClickHdl)
640 : {
641 0 : bool bChecked = m_pDropCapsBox->IsChecked();
642 :
643 0 : m_pWholeWordCB->Enable( bChecked && !bHtmlMode );
644 :
645 0 : m_pSwitchText->Enable( bChecked && !m_pWholeWordCB->IsChecked() );
646 0 : m_pDropCapsField->Enable( bChecked && !m_pWholeWordCB->IsChecked() );
647 0 : m_pLinesText->Enable( bChecked );
648 0 : m_pLinesField->Enable( bChecked );
649 0 : m_pDistanceText->Enable( bChecked );
650 0 : m_pDistanceField->Enable( bChecked );
651 0 : m_pTemplateText->Enable( bChecked );
652 0 : m_pTemplateBox->Enable( bChecked );
653 0 : m_pTextEdit->Enable( bChecked && !bFormat );
654 0 : m_pTextText->Enable( bChecked && !bFormat );
655 :
656 0 : if ( bChecked )
657 : {
658 0 : ModifyHdl(m_pDropCapsField);
659 0 : m_pDropCapsField->GrabFocus();
660 : }
661 : else
662 0 : m_pPict->SetText("");
663 :
664 0 : bModified = true;
665 :
666 0 : return 0;
667 : }
668 :
669 0 : IMPL_LINK_NOARG(SwDropCapsPage, WholeWordHdl)
670 : {
671 0 : m_pDropCapsField->Enable( !m_pWholeWordCB->IsChecked() );
672 0 : m_pSwitchText->Enable(!m_pWholeWordCB->IsChecked());
673 :
674 0 : ModifyHdl(m_pDropCapsField);
675 :
676 0 : bModified = true;
677 :
678 0 : return 0;
679 : }
680 :
681 0 : IMPL_LINK( SwDropCapsPage, ModifyHdl, Edit *, pEdit )
682 : {
683 0 : OUString sPreview;
684 :
685 : // set text if applicable
686 0 : if (pEdit == m_pDropCapsField)
687 : {
688 0 : const sal_uInt16 nVal = !m_pWholeWordCB->IsChecked()
689 0 : ? (sal_uInt16)m_pDropCapsField->GetValue()
690 0 : : 0;
691 0 : bool bSetText = false;
692 :
693 0 : if (bFormat || rSh.GetDropTxt(1).isEmpty())
694 0 : sPreview = GetDefaultString(nVal);
695 : else
696 : {
697 0 : bSetText = true;
698 0 : sPreview = rSh.GetDropTxt(nVal);
699 : }
700 :
701 0 : OUString sEdit(m_pTextEdit->GetText());
702 :
703 0 : if (!sEdit.isEmpty() && !sPreview.startsWith(sEdit))
704 : {
705 0 : sPreview = sEdit.copy(0, std::min(sEdit.getLength(), sPreview.getLength()));
706 0 : bSetText = false;
707 : }
708 :
709 0 : if (bSetText)
710 0 : m_pTextEdit->SetText(sPreview);
711 : }
712 0 : else if (pEdit == m_pTextEdit) // set quantity if applicable
713 : {
714 0 : const sal_Int32 nTmp = m_pTextEdit->GetText().getLength();
715 0 : m_pDropCapsField->SetValue(std::max<sal_Int32>(1, nTmp));
716 0 : sPreview = m_pTextEdit->GetText();
717 : }
718 :
719 : // adjust image
720 0 : if (pEdit == m_pDropCapsField || pEdit == m_pTextEdit)
721 0 : m_pPict->SetText (sPreview);
722 0 : else if (pEdit == m_pLinesField)
723 0 : m_pPict->SetLines((sal_uInt8)m_pLinesField->GetValue());
724 : else
725 0 : m_pPict->SetDistance((sal_uInt16)m_pDistanceField->Denormalize(m_pDistanceField->GetValue(FUNIT_TWIP)));
726 :
727 0 : bModified = true;
728 :
729 0 : return 0;
730 : }
731 :
732 0 : IMPL_LINK_NOARG_INLINE_START(SwDropCapsPage, SelectHdl)
733 : {
734 0 : m_pPict->UpdatePaintSettings();
735 0 : bModified = true;
736 0 : return 0;
737 : }
738 0 : IMPL_LINK_NOARG_INLINE_END(SwDropCapsPage, SelectHdl)
739 :
740 0 : const sal_uInt16* SwDropCapsPage::GetRanges()
741 : {
742 0 : return aPageRg;
743 : }
744 :
745 0 : void SwDropCapsPage::FillSet( SfxItemSet &rSet )
746 : {
747 0 : if(bModified)
748 : {
749 0 : SwFmtDrop aFmt;
750 :
751 0 : bool bOn = m_pDropCapsBox->IsChecked();
752 0 : if(bOn)
753 : {
754 : // quantity, lines, gap
755 0 : aFmt.GetChars() = (sal_uInt8) m_pDropCapsField->GetValue();
756 0 : aFmt.GetLines() = (sal_uInt8) m_pLinesField->GetValue();
757 0 : aFmt.GetDistance() = (sal_uInt16) m_pDistanceField->Denormalize(m_pDistanceField->GetValue(FUNIT_TWIP));
758 0 : aFmt.GetWholeWord() = m_pWholeWordCB->IsChecked();
759 :
760 : // template
761 0 : if (m_pTemplateBox->GetSelectEntryPos())
762 0 : aFmt.SetCharFmt(rSh.GetCharStyle(m_pTemplateBox->GetSelectEntry()));
763 : }
764 : else
765 : {
766 0 : aFmt.GetChars() = 1;
767 0 : aFmt.GetLines() = 1;
768 0 : aFmt.GetDistance() = 0;
769 : }
770 :
771 : // set attributes
772 : const SfxPoolItem* pOldItem;
773 0 : if(0 == (pOldItem = GetOldItem( rSet, FN_FORMAT_DROPCAPS )) ||
774 0 : aFmt != *pOldItem )
775 0 : rSet.Put(aFmt);
776 :
777 : // hard text formatting
778 : // Bug 24974: in designer/template catalog this doesn't make sense!!
779 0 : if( !bFormat && m_pDropCapsBox->IsChecked() )
780 : {
781 0 : OUString sText(m_pTextEdit->GetText());
782 :
783 0 : if (!m_pWholeWordCB->IsChecked())
784 : {
785 0 : sText = sText.copy( 0, std::min<sal_Int32>(
786 0 : sText.getLength(), m_pDropCapsField->GetValue()) );
787 : }
788 :
789 0 : SfxStringItem aStr(FN_PARAM_1, sText);
790 0 : rSet.Put( aStr );
791 0 : }
792 : }
793 0 : }
794 :
795 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|