1*b1cdbd2cSJim Jagielski /************************************************************** 2*b1cdbd2cSJim Jagielski * 3*b1cdbd2cSJim Jagielski * Licensed to the Apache Software Foundation (ASF) under one 4*b1cdbd2cSJim Jagielski * or more contributor license agreements. See the NOTICE file 5*b1cdbd2cSJim Jagielski * distributed with this work for additional information 6*b1cdbd2cSJim Jagielski * regarding copyright ownership. The ASF licenses this file 7*b1cdbd2cSJim Jagielski * to you under the Apache License, Version 2.0 (the 8*b1cdbd2cSJim Jagielski * "License"); you may not use this file except in compliance 9*b1cdbd2cSJim Jagielski * with the License. You may obtain a copy of the License at 10*b1cdbd2cSJim Jagielski * 11*b1cdbd2cSJim Jagielski * http://www.apache.org/licenses/LICENSE-2.0 12*b1cdbd2cSJim Jagielski * 13*b1cdbd2cSJim Jagielski * Unless required by applicable law or agreed to in writing, 14*b1cdbd2cSJim Jagielski * software distributed under the License is distributed on an 15*b1cdbd2cSJim Jagielski * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16*b1cdbd2cSJim Jagielski * KIND, either express or implied. See the License for the 17*b1cdbd2cSJim Jagielski * specific language governing permissions and limitations 18*b1cdbd2cSJim Jagielski * under the License. 19*b1cdbd2cSJim Jagielski * 20*b1cdbd2cSJim Jagielski *************************************************************/ 21*b1cdbd2cSJim Jagielski 22*b1cdbd2cSJim Jagielski 23*b1cdbd2cSJim Jagielski 24*b1cdbd2cSJim Jagielski #ifndef INCLUDED_DRAWINGLAYER_PRIMITIVE2D_WALLPAPERPRIMITIVE2D_HXX 25*b1cdbd2cSJim Jagielski #define INCLUDED_DRAWINGLAYER_PRIMITIVE2D_WALLPAPERPRIMITIVE2D_HXX 26*b1cdbd2cSJim Jagielski 27*b1cdbd2cSJim Jagielski #include <drawinglayer/drawinglayerdllapi.h> 28*b1cdbd2cSJim Jagielski #include <drawinglayer/primitive2d/primitivetools2d.hxx> 29*b1cdbd2cSJim Jagielski #include <vcl/bitmapex.hxx> 30*b1cdbd2cSJim Jagielski #include <vcl/wall.hxx> 31*b1cdbd2cSJim Jagielski 32*b1cdbd2cSJim Jagielski ////////////////////////////////////////////////////////////////////////////// 33*b1cdbd2cSJim Jagielski 34*b1cdbd2cSJim Jagielski namespace drawinglayer 35*b1cdbd2cSJim Jagielski { 36*b1cdbd2cSJim Jagielski namespace primitive2d 37*b1cdbd2cSJim Jagielski { 38*b1cdbd2cSJim Jagielski /** WallpaperBitmapPrimitive2D class 39*b1cdbd2cSJim Jagielski 40*b1cdbd2cSJim Jagielski This is a specialized primtive for the Wallpaper definitions included in 41*b1cdbd2cSJim Jagielski VCL and Metafiles. The extraordinary about the bitmap definition part of 42*b1cdbd2cSJim Jagielski the Wallpaper is that it uses PIXEL size of the given Bitmap and not 43*b1cdbd2cSJim Jagielski the logic and/or discrete size derived by PrefMapMode/PrefSize methods. 44*b1cdbd2cSJim Jagielski To emulate this, a ViewTransformation dependent primitive is needed which 45*b1cdbd2cSJim Jagielski takes over the correct scaling(s). 46*b1cdbd2cSJim Jagielski 47*b1cdbd2cSJim Jagielski Since a specialized primitive is needed anyways, i opted to also add the 48*b1cdbd2cSJim Jagielski layouting which is dependent from WallpaperStyle; thus it does not need 49*b1cdbd2cSJim Jagielski to be handled anywhere else in the future. 50*b1cdbd2cSJim Jagielski */ 51*b1cdbd2cSJim Jagielski class DRAWINGLAYER_DLLPUBLIC WallpaperBitmapPrimitive2D : public ViewTransformationDependentPrimitive2D 52*b1cdbd2cSJim Jagielski { 53*b1cdbd2cSJim Jagielski private: 54*b1cdbd2cSJim Jagielski basegfx::B2DRange maObjectRange; 55*b1cdbd2cSJim Jagielski BitmapEx maBitmapEx; 56*b1cdbd2cSJim Jagielski WallpaperStyle meWallpaperStyle; 57*b1cdbd2cSJim Jagielski 58*b1cdbd2cSJim Jagielski protected: 59*b1cdbd2cSJim Jagielski /// create local decomposition 60*b1cdbd2cSJim Jagielski virtual Primitive2DSequence create2DDecomposition(const geometry::ViewInformation2D& rViewInformation) const; 61*b1cdbd2cSJim Jagielski 62*b1cdbd2cSJim Jagielski public: 63*b1cdbd2cSJim Jagielski /// constructor 64*b1cdbd2cSJim Jagielski WallpaperBitmapPrimitive2D( 65*b1cdbd2cSJim Jagielski const basegfx::B2DRange& rObjectRange, 66*b1cdbd2cSJim Jagielski const BitmapEx& rBitmapEx, 67*b1cdbd2cSJim Jagielski WallpaperStyle eWallpaperStyle); 68*b1cdbd2cSJim Jagielski 69*b1cdbd2cSJim Jagielski /// data read access getLocalObjectRange() const70*b1cdbd2cSJim Jagielski const basegfx::B2DRange& getLocalObjectRange() const { return maObjectRange; } getBitmapEx() const71*b1cdbd2cSJim Jagielski const BitmapEx& getBitmapEx() const { return maBitmapEx ; } getWallpaperStyle() const72*b1cdbd2cSJim Jagielski WallpaperStyle getWallpaperStyle() const { return meWallpaperStyle; } 73*b1cdbd2cSJim Jagielski 74*b1cdbd2cSJim Jagielski /// compare operator 75*b1cdbd2cSJim Jagielski virtual bool operator==(const BasePrimitive2D& rPrimitive) const; 76*b1cdbd2cSJim Jagielski 77*b1cdbd2cSJim Jagielski /// get B2Drange 78*b1cdbd2cSJim Jagielski virtual basegfx::B2DRange getB2DRange(const geometry::ViewInformation2D& rViewInformation) const; 79*b1cdbd2cSJim Jagielski 80*b1cdbd2cSJim Jagielski /// provide unique ID 81*b1cdbd2cSJim Jagielski DeclPrimitrive2DIDBlock() 82*b1cdbd2cSJim Jagielski }; 83*b1cdbd2cSJim Jagielski } // end of namespace primitive2d 84*b1cdbd2cSJim Jagielski } // end of namespace drawinglayer 85*b1cdbd2cSJim Jagielski 86*b1cdbd2cSJim Jagielski ////////////////////////////////////////////////////////////////////////////// 87*b1cdbd2cSJim Jagielski 88*b1cdbd2cSJim Jagielski #endif // INCLUDED_DRAWINGLAYER_PRIMITIVE2D_WALLPAPERPRIMITIVE2D_HXX 89*b1cdbd2cSJim Jagielski 90*b1cdbd2cSJim Jagielski ////////////////////////////////////////////////////////////////////////////// 91*b1cdbd2cSJim Jagielski // eof 92