update credits
[LibreOffice.git] / sdext / source / presenter / PresenterSprite.cxx
blobd58eefd2141294e061d764f85e45d129fa8a8cb7
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #include "PresenterSprite.hxx"
22 #include <com/sun/star/lang/XComponent.hpp>
23 #include <com/sun/star/rendering/CompositeOperation.hpp>
24 #include <com/sun/star/rendering/RenderState.hpp>
25 #include <com/sun/star/rendering/ViewState.hpp>
27 using namespace ::com::sun::star;
28 using ::com::sun::star::uno::Reference;
29 using ::com::sun::star::uno::UNO_QUERY;
31 namespace sdext::presenter {
33 PresenterSprite::PresenterSprite()
34 : mxSpriteFactory(),
35 mxSprite(),
36 maSize(0,0),
37 maLocation(0,0),
38 mbIsVisible(false)
42 PresenterSprite::~PresenterSprite()
44 if (mxSprite.is())
46 mxSprite->hide();
47 Reference<lang::XComponent> xComponent (mxSprite, UNO_QUERY);
48 if (xComponent.is())
49 xComponent->dispose();
50 mxSprite = nullptr;
54 void PresenterSprite::SetFactory (
55 const css::uno::Reference<css::rendering::XSpriteCanvas>& rxSpriteFactory)
57 if (mxSpriteFactory != rxSpriteFactory)
59 DisposeSprite();
60 mxSpriteFactory = rxSpriteFactory;
61 if (mbIsVisible)
62 ProvideSprite();
66 css::uno::Reference<css::rendering::XCanvas> PresenterSprite::GetCanvas()
68 ProvideSprite();
69 if (mxSprite.is())
70 return mxSprite->getContentCanvas();
71 else
72 return nullptr;
75 void PresenterSprite::Show()
77 mbIsVisible = true;
78 if (mxSprite.is())
79 mxSprite->show();
80 else
81 ProvideSprite();
84 void PresenterSprite::Hide()
86 mbIsVisible = false;
87 if (mxSprite.is())
88 mxSprite->hide();
91 void PresenterSprite::Resize (const css::geometry::RealSize2D& rSize)
93 maSize = rSize;
94 if (mxSprite.is())
95 DisposeSprite();
96 if (mbIsVisible)
97 ProvideSprite();
100 void PresenterSprite::MoveTo (const css::geometry::RealPoint2D& rLocation)
102 maLocation = rLocation;
103 if (mxSprite.is())
104 mxSprite->move(
105 maLocation,
106 rendering::ViewState(
107 geometry::AffineMatrix2D(1,0,0, 0,1,0),
108 nullptr),
109 rendering::RenderState(
110 geometry::AffineMatrix2D(1,0,0, 0,1,0),
111 nullptr,
112 uno::Sequence<double>(4),
113 rendering::CompositeOperation::SOURCE)
117 void PresenterSprite::Update()
119 if (mxSpriteFactory.is())
120 mxSpriteFactory->updateScreen(false);
123 void PresenterSprite::ProvideSprite()
125 if ( !(! mxSprite.is()
126 && mxSpriteFactory.is()
127 && maSize.Width>0
128 && maSize.Height>0))
129 return;
131 mxSprite = mxSpriteFactory->createCustomSprite(maSize);
132 if (!mxSprite.is())
133 return;
135 mxSprite->move(maLocation,
136 rendering::ViewState(
137 geometry::AffineMatrix2D(1,0,0, 0,1,0),
138 nullptr),
139 rendering::RenderState(
140 geometry::AffineMatrix2D(1,0,0, 0,1,0),
141 nullptr,
142 uno::Sequence<double>(4),
143 rendering::CompositeOperation::SOURCE)
145 mxSprite->setAlpha(1.0);
146 mxSprite->setPriority(0);
147 if (mbIsVisible)
148 mxSprite->show();
151 void PresenterSprite::DisposeSprite()
153 if (mxSprite.is())
155 mxSprite->hide();
156 Reference<lang::XComponent> xComponent (mxSprite, UNO_QUERY);
157 if (xComponent.is())
158 xComponent->dispose();
159 mxSprite = nullptr;
163 } //end of namespace sdext::presenter
165 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */