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 "PresenterTextView.hxx"
22 :
23 : #include <i18npool/mslangid.hxx>
24 : #include <cppcanvas/vclfactory.hxx>
25 : #include <svl/itempool.hxx>
26 : #include <svl/itemset.hxx>
27 : #include <unotools/linguprops.hxx>
28 : #include <unotools/lingucfg.hxx>
29 : #include <editeng/colritem.hxx>
30 : #include <editeng/editeng.hxx>
31 : #include <editeng/editstat.hxx>
32 : #include <editeng/eeitem.hxx>
33 : #include <editeng/fhgtitem.hxx>
34 : #include <editeng/fontitem.hxx>
35 : #include <svx/xflclit.hxx>
36 : #include <vcl/bitmapex.hxx>
37 : #include <vcl/svapp.hxx>
38 : #include <vcl/virdev.hxx>
39 : #include <com/sun/star/awt/FontDescriptor.hpp>
40 : #include <com/sun/star/awt/Size.hpp>
41 : #include <com/sun/star/rendering/XSpriteCanvas.hpp>
42 : #include <com/sun/star/util/Color.hpp>
43 : #include <com/sun/star/i18n/ScriptType.hpp>
44 :
45 :
46 : using namespace ::com::sun::star;
47 : using namespace ::com::sun::star::uno;
48 : using namespace ::com::sun::star::lang;
49 : using ::rtl::OUString;
50 :
51 : namespace sd { namespace presenter {
52 :
53 : //===== Service ===============================================================
54 :
55 0 : Reference<XInterface> SAL_CALL PresenterTextViewService_createInstance (
56 : const Reference<XComponentContext>& rxContext)
57 : {
58 0 : return Reference<XInterface>(static_cast<XWeak*>(new PresenterTextView(rxContext)));
59 : }
60 :
61 :
62 :
63 :
64 2 : ::rtl::OUString PresenterTextViewService_getImplementationName (void) throw(RuntimeException)
65 : {
66 2 : return OUString("com.sun.star.comp.Draw.PresenterTextView");
67 : }
68 :
69 :
70 :
71 :
72 0 : Sequence<rtl::OUString> SAL_CALL PresenterTextViewService_getSupportedServiceNames (void)
73 : throw (RuntimeException)
74 : {
75 0 : static const ::rtl::OUString sServiceName("com.sun.star.drawing.PresenterTextView");
76 0 : return Sequence<rtl::OUString>(&sServiceName, 1);
77 : }
78 :
79 :
80 :
81 : //===== PresenterTextView::Implementation =====================================
82 :
83 : class PresenterTextView::Implementation
84 : {
85 : public:
86 : const OUString msTextPropertyName;
87 : const OUString msBitmapPropertyName;
88 : const OUString msSizePropertyName;
89 : const OUString msBackgroundColorPropertyName;
90 : const OUString msTextColorPropertyName;
91 : const OUString msFontDescriptorPropertyName;
92 : const OUString msTopPropertyName;
93 : const OUString msTopRelativePropertyName;
94 : const OUString msTotalHeightPropertyName;
95 :
96 : Implementation (void);
97 : ~Implementation (void);
98 :
99 : void SetCanvas (const cppcanvas::CanvasSharedPtr& rCanvas);
100 : void SetSize (const Size aSize);
101 : void SetBackgroundColor (const Color aColor);
102 : void SetTextColor (const Color aColor);
103 : void SetFontDescriptor (const awt::FontDescriptor& rFontDescriptor);
104 : sal_Int32 GetTop (void) const;
105 : void SetTop (const sal_Int32 nTop);
106 : void SetText (const OUString& Text);
107 : sal_Int32 ParseDistance (const OUString& rsDistance) const;
108 : Reference<rendering::XBitmap> GetBitmap (void);
109 : sal_Int32 GetTotalHeight (void);
110 :
111 : private:
112 : Reference<rendering::XBitmap> mxBitmap;
113 : cppcanvas::CanvasSharedPtr mpCanvas;
114 : VirtualDevice* mpOutputDevice;
115 : EditEngine* mpEditEngine;
116 : SfxItemPool* mpEditEngineItemPool;
117 : Size maSize;
118 : Color maBackgroundColor;
119 : Color maTextColor;
120 : String msText;
121 : sal_Int32 mnTop;
122 : sal_Int32 mnTotalHeight;
123 :
124 : EditEngine * GetEditEngine (void);
125 : EditEngine* CreateEditEngine (void);
126 : void CheckTop (void);
127 : };
128 :
129 :
130 :
131 :
132 : //===== PresenterTextView =====================================================
133 :
134 0 : PresenterTextView::PresenterTextView (const Reference<XComponentContext>& rxContext)
135 : : PresenterTextViewInterfaceBase(),
136 0 : mpImplementation(new Implementation())
137 : {
138 : (void)rxContext;
139 0 : }
140 :
141 :
142 :
143 :
144 0 : PresenterTextView::~PresenterTextView (void)
145 : {
146 0 : }
147 :
148 :
149 :
150 :
151 0 : void SAL_CALL PresenterTextView::disposing (void)
152 : {
153 0 : mpImplementation.reset();
154 0 : }
155 :
156 :
157 :
158 :
159 : //----- XInitialization -------------------------------------------------------
160 :
161 0 : void SAL_CALL PresenterTextView::initialize (const Sequence<Any>& rArguments)
162 : throw (Exception, RuntimeException)
163 : {
164 0 : ThrowIfDisposed();
165 :
166 0 : if (rArguments.getLength() == 1)
167 : {
168 : try
169 : {
170 0 : Reference<rendering::XBitmapCanvas> xCanvas (rArguments[0], UNO_QUERY_THROW);
171 0 : if (xCanvas.is())
172 : {
173 : mpImplementation->SetCanvas(
174 0 : cppcanvas::VCLFactory::getInstance().createCanvas(xCanvas));
175 0 : }
176 : }
177 0 : catch (RuntimeException&)
178 : {
179 0 : throw;
180 : }
181 : }
182 : else
183 : {
184 : throw RuntimeException("PresenterTextView: invalid number of arguments",
185 0 : static_cast<XWeak*>(this));
186 : }
187 0 : }
188 :
189 :
190 :
191 :
192 : //-----------------------------------------------------------------------------
193 :
194 0 : Any PresenterTextView::GetPropertyValue (const OUString& rsPropertyName)
195 : {
196 0 : ThrowIfDisposed();
197 :
198 0 : if (rsPropertyName == mpImplementation->msBitmapPropertyName)
199 : {
200 0 : return Any(mpImplementation->GetBitmap());
201 : }
202 0 : else if (rsPropertyName == mpImplementation->msTopPropertyName)
203 : {
204 0 : return Any(mpImplementation->GetTop());
205 : }
206 0 : else if (rsPropertyName == mpImplementation->msTotalHeightPropertyName)
207 : {
208 0 : return Any(mpImplementation->GetTotalHeight());
209 : }
210 :
211 0 : return Any();
212 : }
213 :
214 :
215 :
216 :
217 0 : Any PresenterTextView::SetPropertyValue (
218 : const ::rtl::OUString& rsPropertyName,
219 : const css::uno::Any& rValue)
220 : {
221 0 : ThrowIfDisposed();
222 :
223 0 : Any aOldValue;
224 0 : if (rsPropertyName == mpImplementation->msTextPropertyName)
225 : {
226 0 : OUString sText;
227 0 : if (rValue >>= sText)
228 0 : mpImplementation->SetText(sText);
229 : }
230 0 : else if (rsPropertyName == mpImplementation->msSizePropertyName)
231 : {
232 0 : awt::Size aSize;
233 0 : if (rValue >>= aSize)
234 0 : mpImplementation->SetSize(Size(aSize.Width,aSize.Height));
235 : }
236 0 : else if (rsPropertyName == mpImplementation->msBackgroundColorPropertyName)
237 : {
238 0 : util::Color aColor = util::Color();
239 0 : if (rValue >>= aColor)
240 0 : mpImplementation->SetBackgroundColor(Color(aColor));
241 : }
242 0 : else if (rsPropertyName == mpImplementation->msTextColorPropertyName)
243 : {
244 0 : util::Color aColor = util::Color();
245 0 : if (rValue >>= aColor)
246 0 : mpImplementation->SetTextColor(Color(aColor));
247 : }
248 0 : else if (rsPropertyName == mpImplementation->msFontDescriptorPropertyName)
249 : {
250 0 : awt::FontDescriptor aFontDescriptor;
251 0 : if (rValue >>= aFontDescriptor)
252 0 : mpImplementation->SetFontDescriptor(aFontDescriptor);
253 : }
254 0 : else if (rsPropertyName == mpImplementation->msTopPropertyName)
255 : {
256 0 : sal_Int32 nTop = 0;
257 0 : if (rValue >>= nTop)
258 0 : mpImplementation->SetTop(nTop);
259 : }
260 0 : else if (rsPropertyName == mpImplementation->msTopRelativePropertyName)
261 : {
262 0 : OUString sDistance;
263 0 : if (rValue >>= sDistance)
264 : mpImplementation->SetTop(
265 0 : mpImplementation->GetTop()
266 0 : + mpImplementation->ParseDistance(sDistance));
267 : }
268 0 : return aOldValue;
269 : }
270 :
271 :
272 :
273 :
274 0 : void PresenterTextView::ThrowIfDisposed (void)
275 : throw (::com::sun::star::lang::DisposedException)
276 : {
277 0 : if (PresenterTextViewInterfaceBase::rBHelper.bDisposed
278 : || PresenterTextViewInterfaceBase::rBHelper.bInDispose
279 0 : || mpImplementation.get()==NULL)
280 : {
281 : throw lang::DisposedException ("PresenterTextView object has already been disposed",
282 0 : static_cast<uno::XWeak*>(this));
283 : }
284 0 : }
285 :
286 :
287 :
288 :
289 : //===== PresenterTextView::Implementation =====================================
290 :
291 0 : PresenterTextView::Implementation::Implementation (void)
292 : : msTextPropertyName("Text"),
293 : msBitmapPropertyName("Bitmap"),
294 : msSizePropertyName("Size"),
295 : msBackgroundColorPropertyName("BackgroundColor"),
296 : msTextColorPropertyName("TextColor"),
297 : msFontDescriptorPropertyName("FontDescriptor"),
298 : msTopPropertyName("Top"),
299 : msTopRelativePropertyName("RelativeTop"),
300 : msTotalHeightPropertyName("TotalHeight"),
301 : mxBitmap(),
302 : mpCanvas(),
303 0 : mpOutputDevice(new VirtualDevice(*Application::GetDefaultDevice(), 0, 0)),
304 : mpEditEngine(NULL),
305 0 : mpEditEngineItemPool(EditEngine::CreatePool()),
306 : maSize(100,100),
307 : maBackgroundColor(0xffffffff),
308 : maTextColor(0x00000000),
309 : msText(),
310 : mnTop(0),
311 0 : mnTotalHeight(-1)
312 : {
313 0 : mpOutputDevice->SetMapMode(MAP_PIXEL);
314 :
315 0 : GetEditEngine();
316 0 : }
317 :
318 :
319 :
320 :
321 0 : PresenterTextView::Implementation::~Implementation (void)
322 : {
323 0 : delete mpEditEngine;
324 0 : SfxItemPool::Free(mpEditEngineItemPool);
325 0 : delete mpOutputDevice;
326 0 : }
327 :
328 :
329 :
330 :
331 0 : EditEngine * PresenterTextView::Implementation::GetEditEngine (void)
332 : {
333 0 : if (mpEditEngine == NULL)
334 0 : mpEditEngine = CreateEditEngine ();
335 0 : return mpEditEngine;
336 : }
337 :
338 :
339 :
340 :
341 0 : EditEngine* PresenterTextView::Implementation::CreateEditEngine (void)
342 : {
343 0 : EditEngine* pEditEngine = mpEditEngine;
344 0 : if (pEditEngine == NULL)
345 : {
346 : //
347 : // set fonts to be used
348 : //
349 0 : SvtLinguOptions aOpt;
350 0 : SvtLinguConfig().GetOptions( aOpt );
351 :
352 : struct FontDta {
353 : sal_Int16 nFallbackLang;
354 : sal_Int16 nLang;
355 : sal_uInt16 nFontType;
356 : sal_uInt16 nFontInfoId;
357 : } aTable[3] =
358 : {
359 : // info to get western font to be used
360 : { LANGUAGE_ENGLISH_US, LANGUAGE_NONE,
361 : DEFAULTFONT_SERIF, EE_CHAR_FONTINFO },
362 : // info to get CJK font to be used
363 : { LANGUAGE_JAPANESE, LANGUAGE_NONE,
364 : DEFAULTFONT_CJK_TEXT, EE_CHAR_FONTINFO_CJK },
365 : // info to get CTL font to be used
366 : { LANGUAGE_ARABIC_SAUDI_ARABIA, LANGUAGE_NONE,
367 : DEFAULTFONT_CTL_TEXT, EE_CHAR_FONTINFO_CTL }
368 0 : };
369 0 : aTable[0].nLang = MsLangId::resolveSystemLanguageByScriptType(aOpt.nDefaultLanguage, ::com::sun::star::i18n::ScriptType::LATIN);
370 0 : aTable[1].nLang = MsLangId::resolveSystemLanguageByScriptType(aOpt.nDefaultLanguage_CJK, ::com::sun::star::i18n::ScriptType::ASIAN);
371 0 : aTable[2].nLang = MsLangId::resolveSystemLanguageByScriptType(aOpt.nDefaultLanguage_CTL, ::com::sun::star::i18n::ScriptType::COMPLEX);
372 :
373 0 : for (int i = 0; i < 3; ++i)
374 : {
375 0 : const FontDta &rFntDta = aTable[i];
376 : LanguageType nLang = (LANGUAGE_NONE == rFntDta.nLang) ?
377 0 : rFntDta.nFallbackLang : rFntDta.nLang;
378 0 : Font aFont = Application::GetDefaultDevice()->GetDefaultFont(
379 0 : rFntDta.nFontType, nLang, DEFAULTFONT_FLAGS_ONLYONE);
380 : mpEditEngineItemPool->SetPoolDefaultItem(
381 : SvxFontItem(
382 : aFont.GetFamily(),
383 0 : aFont.GetName(),
384 0 : aFont.GetStyleName(),
385 : aFont.GetPitch(),
386 0 : aFont.GetCharSet(),
387 0 : rFntDta.nFontInfoId));
388 0 : }
389 :
390 :
391 0 : pEditEngine = new EditEngine (mpEditEngineItemPool);
392 :
393 0 : pEditEngine->EnableUndo (sal_True);
394 : pEditEngine->SetDefTab (sal_uInt16(
395 0 : Application::GetDefaultDevice()->GetTextWidth(rtl::OUString("XXXX"))));
396 :
397 : pEditEngine->SetControlWord(
398 0 : (pEditEngine->GetControlWord()
399 : | EE_CNTRL_AUTOINDENTING) &
400 : (~EE_CNTRL_UNDOATTRIBS) &
401 0 : (~EE_CNTRL_PASTESPECIAL));
402 :
403 0 : pEditEngine->SetWordDelimiters (rtl::OUString(" .=+-*/(){}[];\""));
404 0 : pEditEngine->SetRefMapMode (MAP_PIXEL);
405 0 : pEditEngine->SetPaperSize (Size(800, 0));
406 0 : pEditEngine->EraseVirtualDevice();
407 0 : pEditEngine->ClearModifyFlag();
408 : }
409 :
410 0 : return pEditEngine;
411 : }
412 :
413 :
414 :
415 :
416 0 : void PresenterTextView::Implementation::SetCanvas (const cppcanvas::CanvasSharedPtr& rpCanvas)
417 : {
418 0 : mpCanvas = rpCanvas;
419 0 : mxBitmap = NULL;
420 0 : }
421 :
422 :
423 :
424 :
425 0 : void PresenterTextView::Implementation::SetSize (const Size aSize)
426 : {
427 : DBG_ASSERT(mpEditEngine!=NULL, "EditEngine missing");
428 :
429 0 : maSize = aSize;
430 0 : mpEditEngine->SetPaperSize(maSize);
431 0 : mnTotalHeight = -1;
432 0 : mxBitmap = NULL;
433 0 : }
434 :
435 :
436 :
437 :
438 0 : void PresenterTextView::Implementation::SetBackgroundColor (const Color aColor)
439 : {
440 0 : maBackgroundColor = aColor;
441 0 : mxBitmap = NULL;
442 :
443 : DBG_ASSERT(mpEditEngine!=NULL, "EditEngine missing");
444 : DBG_ASSERT(mpEditEngineItemPool!=NULL, "EditEngineItemPool missing");
445 0 : mpEditEngine->SetBackgroundColor(aColor);
446 0 : mpEditEngine->EnableAutoColor(sal_False);
447 0 : mpEditEngine->ForceAutoColor(sal_False);
448 0 : }
449 :
450 :
451 :
452 :
453 0 : void PresenterTextView::Implementation::SetTextColor (const Color aColor)
454 : {
455 0 : maTextColor = aColor;
456 0 : mxBitmap = NULL;
457 :
458 : DBG_ASSERT(mpEditEngineItemPool!=NULL, "EditEngineItemPool missing");
459 0 : mpEditEngineItemPool->SetPoolDefaultItem(SvxColorItem(aColor, EE_CHAR_COLOR));
460 0 : }
461 :
462 :
463 :
464 :
465 0 : void PresenterTextView::Implementation::SetFontDescriptor (
466 : const awt::FontDescriptor& rFontDescriptor)
467 : {
468 0 : mxBitmap = NULL;
469 :
470 : DBG_ASSERT(mpEditEngineItemPool!=NULL, "EditEngineItemPool missing");
471 :
472 0 : const sal_Int32 nFontHeight = rFontDescriptor.Height;
473 :
474 : SvxFontHeightItem aFontHeight(
475 : Application::GetDefaultDevice()->LogicToPixel(
476 0 : Size(0, nFontHeight), MapMode (MAP_POINT)).Height(),
477 : 100,
478 0 : EE_CHAR_FONTHEIGHT);
479 0 : mpEditEngineItemPool->SetPoolDefaultItem( aFontHeight);
480 0 : aFontHeight.SetWhich (EE_CHAR_FONTHEIGHT_CJK);
481 0 : mpEditEngineItemPool->SetPoolDefaultItem( aFontHeight);
482 0 : aFontHeight.SetWhich (EE_CHAR_FONTHEIGHT_CTL);
483 0 : mpEditEngineItemPool->SetPoolDefaultItem( aFontHeight);
484 :
485 0 : SvxFontItem aSvxFontItem (EE_CHAR_FONTINFO);
486 0 : aSvxFontItem.SetFamilyName( rFontDescriptor.Name );
487 0 : mpEditEngineItemPool->SetPoolDefaultItem(aSvxFontItem);
488 :
489 0 : mnTotalHeight = -1;
490 0 : mxBitmap = NULL;
491 :
492 0 : CheckTop();
493 0 : mnTotalHeight = -1;
494 0 : }
495 :
496 :
497 :
498 :
499 0 : sal_Int32 PresenterTextView::Implementation::GetTop (void) const
500 : {
501 0 : return mnTop;
502 : }
503 :
504 :
505 :
506 :
507 0 : void PresenterTextView::Implementation::SetTop (const sal_Int32 nTop)
508 : {
509 0 : if (nTop == mnTop)
510 0 : return;
511 :
512 0 : mnTop = nTop;
513 0 : mxBitmap = NULL;
514 0 : CheckTop();
515 : }
516 :
517 :
518 :
519 :
520 0 : void PresenterTextView::Implementation::SetText (const OUString& rText)
521 : {
522 : DBG_ASSERT(mpEditEngine!=NULL, "EditEngine missing");
523 0 : msText = rText;
524 0 : mpEditEngine->SetPaperSize(maSize);
525 0 : mnTotalHeight = -1;
526 0 : mxBitmap = NULL;
527 0 : }
528 :
529 :
530 :
531 :
532 0 : sal_Int32 PresenterTextView::Implementation::ParseDistance (const OUString& rsDistance) const
533 : {
534 : DBG_ASSERT(mpEditEngine!=NULL, "EditEngine missing");
535 0 : sal_Int32 nDistance (0);
536 0 : if (rsDistance.endsWithAsciiL("px", 2))
537 : {
538 0 : nDistance = rsDistance.copy(0,rsDistance.getLength()-2).toInt32();
539 : }
540 0 : else if (rsDistance.endsWithAsciiL("l", 1))
541 : {
542 0 : const sal_Int32 nLines (rsDistance.copy(0,rsDistance.getLength()-1).toInt32());
543 : // Take the height of the first line as the height of every line.
544 0 : const sal_uInt32 nFirstLineHeight (mpEditEngine->GetLineHeight(0,0));
545 0 : nDistance = nFirstLineHeight * nLines;
546 : }
547 :
548 0 : return nDistance;
549 : }
550 :
551 :
552 :
553 :
554 0 : Reference<rendering::XBitmap> PresenterTextView::Implementation::GetBitmap (void)
555 : {
556 : DBG_ASSERT(mpEditEngine!=NULL, "EditEngine missing");
557 :
558 0 : if ( ! mxBitmap.is())
559 : {
560 0 : if (mpOutputDevice != NULL)
561 0 : delete mpOutputDevice;
562 0 : mpOutputDevice = new VirtualDevice(*Application::GetDefaultDevice(), 0, 0);
563 0 : mpOutputDevice->SetMapMode(MAP_PIXEL);
564 0 : mpOutputDevice->SetOutputSizePixel(maSize, sal_True);
565 0 : mpOutputDevice->SetLineColor();
566 0 : mpOutputDevice->SetFillColor();
567 0 : mpOutputDevice->SetBackground(Wallpaper());
568 0 : mpOutputDevice->Erase();
569 :
570 0 : MapMode aMapMode (mpOutputDevice->GetMapMode());
571 0 : aMapMode.SetOrigin(Point(0,0));
572 0 : mpOutputDevice->SetMapMode(aMapMode);
573 0 : const Rectangle aWindowBox (Point(0,0), maSize);
574 0 : mpOutputDevice->DrawRect(aWindowBox);
575 :
576 0 : mpEditEngine->Clear();
577 0 : mpEditEngine->SetText(msText);
578 0 : mpEditEngine->SetPaperSize(maSize);
579 :
580 0 : mpEditEngine->Draw(mpOutputDevice, aWindowBox, Point(0,mnTop));
581 :
582 0 : const BitmapEx aBitmap (mpOutputDevice->GetBitmapEx(Point(0,0), maSize));
583 0 : mxBitmap = cppcanvas::VCLFactory::getInstance().createBitmap(
584 : mpCanvas,
585 : aBitmap
586 0 : )->getUNOBitmap();
587 : }
588 0 : return mxBitmap;
589 : }
590 :
591 :
592 :
593 :
594 0 : sal_Int32 PresenterTextView::Implementation::GetTotalHeight (void)
595 : {
596 : DBG_ASSERT(mpEditEngine!=NULL, "EditEngine missing");
597 :
598 0 : if (mnTotalHeight < 0)
599 : {
600 0 : if ( ! mxBitmap.is())
601 0 : GetBitmap();
602 0 : mnTotalHeight = mpEditEngine->GetTextHeight();
603 : }
604 0 : return mnTotalHeight;
605 : }
606 :
607 :
608 :
609 :
610 0 : void PresenterTextView::Implementation::CheckTop (void)
611 : {
612 : DBG_ASSERT(mpEditEngine!=NULL, "EditEngine missing");
613 :
614 0 : if (mnTotalHeight < 0)
615 0 : mnTotalHeight = mpEditEngine->GetTextHeight();
616 0 : if (mpEditEngine!=NULL && mnTop >= mnTotalHeight)
617 0 : mnTop = mnTotalHeight - mpEditEngine->GetLineHeight(0,0);
618 :
619 0 : if (mnTotalHeight < maSize.Height())
620 0 : mnTop = 0;
621 :
622 0 : if (mnTotalHeight - mnTop < maSize.Height())
623 0 : mnTop = mnTotalHeight - maSize.Height();
624 :
625 0 : if (mnTop < 0)
626 0 : mnTop = 0;
627 0 : }
628 :
629 :
630 : } } // end of namespace ::sd::presenter
631 :
632 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|