Lines Matching refs:rImplWallpaper

52 ImplWallpaper::ImplWallpaper( const ImplWallpaper& rImplWallpaper ) :  in ImplWallpaper()  argument
53 maColor( rImplWallpaper.maColor ) in ImplWallpaper()
56 meStyle = rImplWallpaper.meStyle; in ImplWallpaper()
58 if ( rImplWallpaper.mpBitmap ) in ImplWallpaper()
59 mpBitmap = new BitmapEx( *rImplWallpaper.mpBitmap ); in ImplWallpaper()
62 if( rImplWallpaper.mpCache ) in ImplWallpaper()
63 mpCache = new BitmapEx( *rImplWallpaper.mpCache ); in ImplWallpaper()
66 if ( rImplWallpaper.mpGradient ) in ImplWallpaper()
67 mpGradient = new Gradient( *rImplWallpaper.mpGradient ); in ImplWallpaper()
70 if ( rImplWallpaper.mpRect ) in ImplWallpaper()
71 mpRect = new Rectangle( *rImplWallpaper.mpRect ); in ImplWallpaper()
106 SvStream& operator>>( SvStream& rIStm, ImplWallpaper& rImplWallpaper ) in operator >>() argument
111 delete rImplWallpaper.mpRect; in operator >>()
112 rImplWallpaper.mpRect = NULL; in operator >>()
114 delete rImplWallpaper.mpGradient; in operator >>()
115 rImplWallpaper.mpGradient = NULL; in operator >>()
117 delete rImplWallpaper.mpBitmap; in operator >>()
118 rImplWallpaper.mpBitmap = NULL; in operator >>()
121 rIStm >> rImplWallpaper.maColor; in operator >>()
122 rIStm >> nTmp16; rImplWallpaper.meStyle = (WallpaperStyle) nTmp16; in operator >>()
133 rImplWallpaper.mpRect = new Rectangle; in operator >>()
134 rIStm >> *rImplWallpaper.mpRect; in operator >>()
139 rImplWallpaper.mpGradient = new Gradient; in operator >>()
140 rIStm >> *rImplWallpaper.mpGradient; in operator >>()
145 rImplWallpaper.mpBitmap = new BitmapEx; in operator >>()
146 ReadDIBBitmapEx(*rImplWallpaper.mpBitmap, rIStm); in operator >>()
152 rImplWallpaper.maColor.Read( rIStm, sal_True ); in operator >>()
161 SvStream& operator<<( SvStream& rOStm, const ImplWallpaper& rImplWallpaper ) in operator <<() argument
164 sal_Bool bRect = ( rImplWallpaper.mpRect != NULL ); in operator <<()
165 sal_Bool bGrad = ( rImplWallpaper.mpGradient != NULL ); in operator <<()
166 sal_Bool bBmp = ( rImplWallpaper.mpBitmap != NULL ); in operator <<()
170 rOStm << rImplWallpaper.maColor << (sal_uInt16) rImplWallpaper.meStyle; in operator <<()
176 rOStm << *rImplWallpaper.mpRect; in operator <<()
179 rOStm << *rImplWallpaper.mpGradient; in operator <<()
182 WriteDIBBitmapEx(*rImplWallpaper.mpBitmap, rOStm); in operator <<()
185 ( (Color&) rImplWallpaper.maColor ).Write( rOStm, sal_True ); in operator <<()