os/graphics/graphicsdeviceinterface/gdi/sgdi/PICTURE.CPP
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
#include <gdi.h>
sl@0
    17
#include "GDIPANIC.h"
sl@0
    18
sl@0
    19
_LIT(KGdiCPicturePanicCategory,"CPicture");
sl@0
    20
sl@0
    21
EXPORT_C TPictureHeader::TPictureHeader():
sl@0
    22
	iPicture(NULL),
sl@0
    23
	iPictureType(KNullUid),
sl@0
    24
	iSize()
sl@0
    25
/** Constructs a default picture header. */
sl@0
    26
	{}
sl@0
    27
sl@0
    28
EXPORT_C void TPictureHeader::DeletePicture()
sl@0
    29
/** Deletes the internalised picture.
sl@0
    30
sl@0
    31
The picture can only be deleted if the picture has been internalized. */
sl@0
    32
	{
sl@0
    33
	if (iPicture.IsPtr())
sl@0
    34
		{
sl@0
    35
		delete iPicture.AsPtr();
sl@0
    36
		iPicture=NULL;
sl@0
    37
		}
sl@0
    38
	}
sl@0
    39
sl@0
    40
sl@0
    41
// Persist this object
sl@0
    42
// Does not take responsibility for storing the picture
sl@0
    43
//
sl@0
    44
EXPORT_C void TPictureHeader::ExternalizeL(RWriteStream& aStream)const
sl@0
    45
/** Externalises a picture header object to a write stream. 
sl@0
    46
sl@0
    47
The presence of this function means that the standard templated stream operator<<() 
sl@0
    48
is available to externalise objects of this class.
sl@0
    49
sl@0
    50
@param aStream The write stream. */
sl@0
    51
    {
sl@0
    52
    aStream<< iPictureType;
sl@0
    53
    aStream<< iPicture;
sl@0
    54
	aStream.WriteInt32L(iSize.iWidth);
sl@0
    55
	aStream.WriteInt32L(iSize.iHeight);
sl@0
    56
    }
sl@0
    57
sl@0
    58
sl@0
    59
// Restore this object from the specified stream
sl@0
    60
// Does not take responsibility for restoring the picture
sl@0
    61
//
sl@0
    62
EXPORT_C void TPictureHeader::InternalizeL(RReadStream& aStream)
sl@0
    63
/** Internalises a picture header object from a read stream.
sl@0
    64
sl@0
    65
The presence of this function means that the standard templated stream operator>>() 
sl@0
    66
is available to internalise objects of this class.
sl@0
    67
sl@0
    68
@param aStream The read stream. */
sl@0
    69
    {
sl@0
    70
    aStream>> iPictureType;
sl@0
    71
    aStream>> iPicture;
sl@0
    72
	iSize.iWidth=aStream.ReadInt32L();
sl@0
    73
	iSize.iHeight=aStream.ReadInt32L();
sl@0
    74
    }
sl@0
    75
sl@0
    76
EXPORT_C CPicture::CPicture():
sl@0
    77
	CBase()
sl@0
    78
	{
sl@0
    79
	__DECLARE_NAME(_S("CPicture"));
sl@0
    80
	}
sl@0
    81
sl@0
    82
EXPORT_C CPicture::~CPicture()
sl@0
    83
/** Frees all resources owned by the object prior to its destruction. */
sl@0
    84
	{}
sl@0
    85
sl@0
    86
EXPORT_C TPictureCapability CPicture::Capability() const
sl@0
    87
/** Gets the picture's capabilities.
sl@0
    88
sl@0
    89
These include whether it is scalable and croppable.
sl@0
    90
sl@0
    91
@return The capabilities of the picture. */
sl@0
    92
	{
sl@0
    93
	return TPictureCapability(TPictureCapability::ENotScaleable,EFalse);
sl@0
    94
	}
sl@0
    95
sl@0
    96
// Assumes everything goes into the head stream.
sl@0
    97
// (Must be replaced by concrete pictures that have components)
sl@0
    98
//
sl@0
    99
EXPORT_C TStreamId CPicture::StoreL(CStreamStore& aStore) const
sl@0
   100
/** Stores the picture to the specified store.
sl@0
   101
sl@0
   102
The default implementation assumes that the content of the picture is externalized 
sl@0
   103
to a single stream. The implementation may need to be changed for those derived 
sl@0
   104
classes that have components.
sl@0
   105
sl@0
   106
@param aStore The store. 
sl@0
   107
@return The ID of the (head) stream used to store the picture. */
sl@0
   108
	{
sl@0
   109
	RStoreWriteStream stream;
sl@0
   110
	TStreamId id=stream.CreateLC(aStore);
sl@0
   111
	ExternalizeL(stream);  // provided by the concrete picture stream.CommitL();
sl@0
   112
	stream.CommitL();
sl@0
   113
	CleanupStack::PopAndDestroy();
sl@0
   114
	return id;
sl@0
   115
	}
sl@0
   116
sl@0
   117
EXPORT_C void CPicture::ResetToOriginal()
sl@0
   118
/** Resets the picture's scaling and cropping attributes to their original values. */
sl@0
   119
	{
sl@0
   120
	TMargins cropInTwips;
sl@0
   121
	cropInTwips.iLeft=0;
sl@0
   122
	cropInTwips.iRight=0;
sl@0
   123
	cropInTwips.iTop=0;
sl@0
   124
	cropInTwips.iBottom=0;
sl@0
   125
	SetCropInTwips(cropInTwips);
sl@0
   126
	SetScaleFactor(1000,1000);
sl@0
   127
	}
sl@0
   128
sl@0
   129
EXPORT_C void CPicture::GetSizeInPixels(MGraphicsDeviceMap* aMap,TSize& aSize) const
sl@0
   130
/** Gets the picture's size in pixels. 
sl@0
   131
sl@0
   132
This is calculated from the original size of the picture, taking cropping 
sl@0
   133
and scaling into account.
sl@0
   134
sl@0
   135
@param aMap The pixels to twips mapping interface of the graphics device 
sl@0
   136
@param aSize The size of the picture, in pixels. */
sl@0
   137
	{
sl@0
   138
	GDI_ASSERT_ALWAYS_GENERAL(aMap!=NULL,User::Panic(KGdiCPicturePanicCategory,KErrNotFound));
sl@0
   139
	TSize size;
sl@0
   140
	GetSizeInTwips(size);
sl@0
   141
	aSize.iWidth = aMap->HorizontalTwipsToPixels(size.iWidth);
sl@0
   142
	aSize.iHeight = aMap->VerticalTwipsToPixels(size.iHeight);
sl@0
   143
	}
sl@0
   144
sl@0
   145
EXPORT_C void CPicture::SetSizeInPixels(MGraphicsDeviceMap* aMap,const TSize& aSize)
sl@0
   146
/** Sets the picture's size in pixels.
sl@0
   147
sl@0
   148
@param aMap The pixels to twips mapping interface of the graphics device. 
sl@0
   149
@param aSize The size of the picture, in pixels. */
sl@0
   150
	{
sl@0
   151
	GDI_ASSERT_ALWAYS_GENERAL(aMap!=NULL,User::Panic(KGdiCPicturePanicCategory,KErrNotFound));
sl@0
   152
	TSize size;
sl@0
   153
	size.iWidth = aMap->HorizontalPixelsToTwips(aSize.iWidth);
sl@0
   154
	size.iHeight = aMap->VerticalPixelsToTwips(aSize.iHeight);
sl@0
   155
	SetSizeInTwips(size);
sl@0
   156
	}
sl@0
   157
sl@0
   158
EXPORT_C void CPicture::SetScaleFactor(TInt /*aScaleFactorWidth*/,TInt /*aScaleFactorHeight*/)
sl@0
   159
/** Sets the picture's scale factors.
sl@0
   160
	
sl@0
   161
	@param aScaleFactorWidth The width scale factor, in percent. 
sl@0
   162
	@param aScaleFactorHeight The height scale factor, in percent. */
sl@0
   163
	{
sl@0
   164
	}
sl@0
   165
sl@0
   166
EXPORT_C TInt CPicture::ScaleFactorWidth() const
sl@0
   167
/** Gets the picture's width scale factor.
sl@0
   168
sl@0
   169
@return The width scale factor, in percent. */
sl@0
   170
	{
sl@0
   171
	return 1000; // no scaling
sl@0
   172
	}
sl@0
   173
sl@0
   174
EXPORT_C TInt CPicture::ScaleFactorHeight() const
sl@0
   175
/** Gets the pictures height scale factor.
sl@0
   176
sl@0
   177
@return The height scale factor, in percent. */
sl@0
   178
	{
sl@0
   179
	return 1000; // no scaling
sl@0
   180
	}
sl@0
   181
sl@0
   182
EXPORT_C void CPicture::GetCropInTwips(TMargins& aCrop) const
sl@0
   183
/** Gets the cropping margins of a picture in twips.
sl@0
   184
	
sl@0
   185
These margins are relative to the original unscaled size of the picture.
sl@0
   186
	
sl@0
   187
@param aMargins The cropping margins of the picture, in twips */
sl@0
   188
    {
sl@0
   189
	aCrop.iLeft=0;
sl@0
   190
	aCrop.iRight=0;
sl@0
   191
	aCrop.iTop=0;
sl@0
   192
	aCrop.iBottom=0;
sl@0
   193
	}
sl@0
   194
sl@0
   195
EXPORT_C void CPicture::SetCropInTwips(const TMargins& /*aMargins*/)
sl@0
   196
/** Sets the cropping margins of a picture in twips.
sl@0
   197
	
sl@0
   198
These are relative to the original unscaled size of the picture.
sl@0
   199
	
sl@0
   200
@param aMargins The cropping margins of the picture, in twips. */
sl@0
   201
	{
sl@0
   202
	}
sl@0
   203
sl@0
   204
sl@0
   205
EXPORT_C TBool CPicture::LineBreakPossible(TUint /*aClass*/,TBool /*aBeforePicture*/,TBool /*aHaveSpaces*/) const
sl@0
   206
/** States whether a line break is possible, either before or after a picture.
sl@0
   207
	
sl@0
   208
The default implementation returns ETrue, implying that there is a break opportunity 
sl@0
   209
both before and after the picture, whether or not a space is present.
sl@0
   210
sl@0
   211
This may be overridden for special types of pictures.
sl@0
   212
sl@0
   213
@param aClass The line breaking class of the adjacent character. Line breaking 
sl@0
   214
classes are defined in the header file, tagma.h
sl@0
   215
@param aBeforePicture ETrue, if the adjacent character is before the picture; 
sl@0
   216
EFalse, if the adjacent character is afterwards.
sl@0
   217
@param aHaveSpaces ETrue, if spaces occur between the adjacent character and 
sl@0
   218
the picture; EFalse, otherwise.
sl@0
   219
@return ETrue, if a line break is possible; EFalse, otherwise. */
sl@0
   220
	{
sl@0
   221
	return TRUE;
sl@0
   222
	}
sl@0
   223
sl@0
   224
sl@0
   225
sl@0
   226
EXPORT_C TBool CPicture::NativePixelSize(TSize&)
sl@0
   227
/** Derived classes might be implemented as bitmaps, in that case it might 
sl@0
   228
be interesting to now the native pixel size of the bitmap. */
sl@0
   229
	{
sl@0
   230
	return EFalse;
sl@0
   231
	}
sl@0
   232
sl@0
   233
EXPORT_C void CPicture::GetSizeInTwips(TSize& aSize) const
sl@0
   234
/** Gets the picture's size, in twips.
sl@0
   235
sl@0
   236
This size is calculated from the original size of the picture, taking cropping 
sl@0
   237
and scaling into account.
sl@0
   238
sl@0
   239
@param aSize The size of the picture, in twips. */
sl@0
   240
	{
sl@0
   241
	TSize originalSizeInTwips;
sl@0
   242
	GetOriginalSizeInTwips(originalSizeInTwips);
sl@0
   243
	TMargins cropInTwips;
sl@0
   244
	GetCropInTwips(cropInTwips);
sl@0
   245
	aSize.iWidth = (ScaleFactorWidth()*(originalSizeInTwips.iWidth-cropInTwips.iLeft-cropInTwips.iRight))/1000;
sl@0
   246
	aSize.iHeight = (ScaleFactorHeight()*(originalSizeInTwips.iHeight-cropInTwips.iTop-cropInTwips.iBottom))/1000;
sl@0
   247
	}
sl@0
   248
sl@0
   249
EXPORT_C void CPicture::SetSizeInTwips(const TSize& aSize)
sl@0
   250
/** Sets the picture's size, in twips
sl@0
   251
sl@0
   252
@param aSize The size of the picture, in twips. */
sl@0
   253
	{
sl@0
   254
	TSize originalSizeInTwips;
sl@0
   255
	GetOriginalSizeInTwips(originalSizeInTwips);
sl@0
   256
	TMargins cropInTwips;
sl@0
   257
	GetCropInTwips(cropInTwips);
sl@0
   258
	TSize size;
sl@0
   259
	size.iWidth  = originalSizeInTwips.iWidth-cropInTwips.iLeft-cropInTwips.iRight;
sl@0
   260
	size.iHeight = originalSizeInTwips.iHeight-cropInTwips.iTop-cropInTwips.iBottom;
sl@0
   261
	TSize scalefactor;
sl@0
   262
	if(size.iWidth!=0) scalefactor.iWidth=1000*aSize.iWidth/size.iWidth;
sl@0
   263
	if(size.iHeight!=0) scalefactor.iHeight=1000*aSize.iHeight/size.iHeight;
sl@0
   264
	SetScaleFactor(scalefactor.iWidth,scalefactor.iHeight);
sl@0
   265
 	}
sl@0
   266
sl@0
   267
EXPORT_C void CPicture::AddCropInPixels(MGraphicsDeviceMap* aMap,const TMargins& aMargins)
sl@0
   268
/** Adds pixel cropping margins to the picture.
sl@0
   269
sl@0
   270
@param aMap The pixels to twips mapping interface of the graphics device 
sl@0
   271
@param aMargins The additional pixel cropping margins for the picture, in pixels. */
sl@0
   272
	{
sl@0
   273
	GDI_ASSERT_ALWAYS_GENERAL(aMap!=NULL,User::Panic(KGdiCPicturePanicCategory,KErrNotFound));
sl@0
   274
	TMargins cropInTwips;
sl@0
   275
	GetCropInTwips(cropInTwips);
sl@0
   276
	TInt scaleFactorWidth=ScaleFactorWidth();
sl@0
   277
	if(scaleFactorWidth!=0)
sl@0
   278
		{
sl@0
   279
		cropInTwips.iLeft += (1000*aMap->HorizontalPixelsToTwips(aMargins.iLeft))/scaleFactorWidth;
sl@0
   280
		cropInTwips.iRight += (1000*aMap->HorizontalPixelsToTwips(aMargins.iRight))/scaleFactorWidth;
sl@0
   281
		}
sl@0
   282
	TInt scaleFactorHeight=ScaleFactorHeight();
sl@0
   283
	if(scaleFactorHeight!=0)
sl@0
   284
		{
sl@0
   285
		cropInTwips.iTop += (1000*aMap->VerticalPixelsToTwips(aMargins.iTop))/scaleFactorHeight;
sl@0
   286
		cropInTwips.iBottom += (1000*aMap->VerticalPixelsToTwips(aMargins.iBottom))/scaleFactorHeight;
sl@0
   287
		}
sl@0
   288
	SetCropInTwips(cropInTwips);
sl@0
   289
	}
sl@0
   290