android: Update app-specific/MIME type icons
[LibreOffice.git] / cppcanvas / source / wrapper / implsprite.hxx
blobd40fb0574a96bc90e35852c77fb5b32890e5720c
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 #pragma once
22 #include <com/sun/star/uno/Reference.hxx>
23 #include <com/sun/star/rendering/XSpriteCanvas.hpp>
24 #include <com/sun/star/rendering/XSprite.hpp>
25 #include <cppcanvas/sprite.hxx>
26 #include "implspritecanvas.hxx"
28 namespace cppcanvas::internal
30 class ImplSprite : public virtual Sprite
32 public:
33 ImplSprite( const css::uno::Reference<
34 css::rendering::XSpriteCanvas >& rParentCanvas,
35 css::uno::Reference<
36 css::rendering::XSprite > xSprite,
37 ImplSpriteCanvas::TransformationArbiterSharedPtr xTransformArbiter );
38 virtual ~ImplSprite() override;
40 virtual void setAlpha( const double& rAlpha ) override;
41 virtual void movePixel( const ::basegfx::B2DPoint& rNewPos ) override;
42 virtual void move( const ::basegfx::B2DPoint& rNewPos ) override;
43 virtual void transform( const ::basegfx::B2DHomMatrix& rMatrix ) override;
44 virtual void setClipPixel( const ::basegfx::B2DPolyPolygon& rClipPoly ) override;
45 virtual void setClip( const ::basegfx::B2DPolyPolygon& rClipPoly ) override;
46 virtual void setClip() override;
48 virtual void show() override;
49 virtual void hide() override;
51 virtual void setPriority( double fPriority ) override;
53 private:
54 ImplSprite(const ImplSprite&) = delete;
55 ImplSprite& operator=( const ImplSprite& ) = delete;
57 css::uno::Reference< css::rendering::XGraphicDevice > mxGraphicDevice;
58 const css::uno::Reference< css::rendering::XSprite > mxSprite;
59 ImplSpriteCanvas::TransformationArbiterSharedPtr mpTransformArbiter;
63 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */