summaryrefslogtreecommitdiff
path: root/sdext/source/presenter/PresenterClock.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sdext/source/presenter/PresenterClock.cxx')
-rw-r--r--sdext/source/presenter/PresenterClock.cxx40
1 files changed, 20 insertions, 20 deletions
diff --git a/sdext/source/presenter/PresenterClock.cxx b/sdext/source/presenter/PresenterClock.cxx
index d220941843b4..8fdb852f69fb 100644
--- a/sdext/source/presenter/PresenterClock.cxx
+++ b/sdext/source/presenter/PresenterClock.cxx
@@ -2,7 +2,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -153,7 +153,7 @@ namespace {
static const double mnRelativeSecondHandLength;
static const double mnRelativeSecondHandLength2;
static const double mnRelativeSecondHandWidth;
-
+
void PaintAngledLine (
const double nAngle,
const double nInnerRadius,
@@ -296,7 +296,7 @@ PresenterClock::PresenterClock (
mbIsShowSeconds(true)
{
SetMode(mnMode);
-
+
maViewState.AffineTransform = geometry::AffineMatrix2D(1,0,0, 0,1,0);
maRenderState.AffineTransform = geometry::AffineMatrix2D(1,0,0, 0,1,0);
maRenderState.DeviceColor = Sequence<double>(4);
@@ -487,7 +487,7 @@ void SAL_CALL PresenterClock::mouseReleased (const css::awt::MouseEvent& rEvent)
{
(void)rEvent;
}
-
+
@@ -496,7 +496,7 @@ void SAL_CALL PresenterClock::mouseEntered (const css::awt::MouseEvent& rEvent)
{
(void)rEvent;
}
-
+
@@ -565,10 +565,10 @@ void PresenterClock::Paint (const awt::Rectangle& rUpdateBox)
{
if (mbIsResizePending)
Resize();
-
+
Reference<rendering::XPolyPolygon2D> xUpdatePolygon (
PresenterGeometryHelper::CreatePolygon(rUpdateBox, mxCanvas->getDevice()));
-
+
Clear(xUpdatePolygon);
if (mpClockPainter.get() != NULL)
@@ -580,7 +580,7 @@ void PresenterClock::Paint (const awt::Rectangle& rUpdateBox)
mnMinute,
mnSecond,
mbIsShowSeconds);
-
+
if (mpClockPainter2.get() != NULL)
mpClockPainter2->Paint(
mxCanvas,
@@ -596,7 +596,7 @@ void PresenterClock::Paint (const awt::Rectangle& rUpdateBox)
{
(void)e;
}
-
+
// Make the back buffer visible.
Reference<rendering::XSpriteCanvas> xSpriteCanvas (mxCanvas, UNO_QUERY);
if (xSpriteCanvas.is())
@@ -947,7 +947,7 @@ void AnalogBitmapPainter::Paint (
(void)rBackgroundColor;
(void)nSecond;
(void)bShowSeconds;
-
+
if ( ! rxCanvas.is())
return;
@@ -1123,7 +1123,7 @@ void AnalogBitmapPainter::LoadBitmaps (
const Reference<rendering::XCanvas>& rxCanvas)
{
(void)rConfiguration;
-
+
// Get base path to bitmaps.
Reference<deployment::XPackageInformationProvider> xInformationProvider (
mxComponentContext->getValueByName(OUString::createFromAscii(
@@ -1150,7 +1150,7 @@ void AnalogBitmapPainter::LoadBitmaps (
if ( ! xBitmapLoader.is())
return;
-
+
// Iterate over all entries in the bitmap list and load the bitmaps.
Reference<container::XNameAccess> xBitmaps (
rxClockTheme->getByName(OUString::createFromAscii("Bitmaps")),
@@ -1188,14 +1188,14 @@ void AnalogBitmapPainter::LoadBitmap (
pDescriptor = &maHourHand;
else if (rsKey == OUString::createFromAscii("MinuteHand"))
pDescriptor = &maMinuteHand;
-
+
if (pDescriptor == NULL)
return;
-
+
OUString sFileName;
if ( ! (rValues[0] >>= sFileName))
return;
-
+
rValues[1] >>= pDescriptor->maOffset.X;
rValues[2] >>= pDescriptor->maOffset.Y;
@@ -1277,12 +1277,12 @@ void DigitalDefaultPainter::Paint (
{
(void)rBackgroundColor;
(void)rRenderState;
-
+
if ( ! mxFont.is())
CreateFont(rxCanvas,bIsShowSeconds);
if ( ! mxFont.is())
return;
-
+
OUString sText;
if (mbIs24HourFormat)
@@ -1322,7 +1322,7 @@ void DigitalDefaultPainter::Paint (
return;
}
}
-
+
rendering::StringContext aContext (
sText,
0,
@@ -1400,7 +1400,7 @@ void DigitalDefaultPainter::CreateFont (
sTimeTemplate,
0,
sTimeTemplate.getLength());
-
+
// When the font size is adapted to the window size (as large as
// possible without overlapping) then that is done in a four step
// process:
@@ -1428,7 +1428,7 @@ void DigitalDefaultPainter::CreateFont (
aContext,
rendering::TextDirection::WEAK_LEFT_TO_RIGHT,
0));
-
+
if ( ! xLayout.is())
break;