os/graphics/windowing/windowserver/nonnga/SERVER/ScrDev.H
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 2000-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
// Defines the screen device class
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#ifndef __SCRDEV_H__
sl@0
    19
#define __SCRDEV_H__
sl@0
    20
sl@0
    21
#ifndef __E32STD_H__
sl@0
    22
#include <e32std.h>
sl@0
    23
#endif
sl@0
    24
#ifndef __E32BASE_H__
sl@0
    25
#include <e32base.h>
sl@0
    26
#endif
sl@0
    27
#ifndef __OBJECT_H__
sl@0
    28
#include "OBJECT.H"
sl@0
    29
#endif
sl@0
    30
#ifndef __SCREEN_H__
sl@0
    31
#include "screen.h"
sl@0
    32
#endif
sl@0
    33
sl@0
    34
class DWsBitmap : public CWsObject
sl@0
    35
	{
sl@0
    36
public:
sl@0
    37
	DWsBitmap(CWsClient *aOwner);
sl@0
    38
	void ConstructL(const TWsClCmdCreateBitmap &aParams);
sl@0
    39
	inline CFbsBitmap *FbsBitmap() const;
sl@0
    40
	void CommandL(TInt aOpcode, const TAny *aCmdData);
sl@0
    41
	void CloseObject();
sl@0
    42
	void IncRefCount();
sl@0
    43
	void DecRefCount();
sl@0
    44
private:
sl@0
    45
	~DWsBitmap();
sl@0
    46
private:
sl@0
    47
	enum // Flags
sl@0
    48
		{
sl@0
    49
		EWsBitmapClientObjectFreed = 0x00000001 // Set if the associated CWsBitmap object has been deleted
sl@0
    50
		};
sl@0
    51
private:
sl@0
    52
	CFbsBitmap *iFbsBitmap;
sl@0
    53
	TInt iRefCount;
sl@0
    54
	TUint32 iFlags;
sl@0
    55
	};
sl@0
    56
sl@0
    57
class DWsScreenDevice : public CWsScreenObject
sl@0
    58
	{
sl@0
    59
public:
sl@0
    60
	DWsScreenDevice(CWsClient* aOwner, TInt aDefaultScreenNumber, TUint aClientScreenDevicePointer);
sl@0
    61
	~DWsScreenDevice();
sl@0
    62
	void CommandL(TInt aOpcode, const TAny *aCmdData);
sl@0
    63
	void ConstructL();
sl@0
    64
	void GetDefaultScreenSizeAndRotationCmd();
sl@0
    65
	void GetDefaultScreenSizeAndRotationCmd2();
sl@0
    66
	void GetScreenSizeAndRotationCmd(TInt aMode);
sl@0
    67
	void GetScreenSizeAndRotationCmd2(TInt aMode);
sl@0
    68
	void GetScreenModeOriginCmd(TInt aMode);
sl@0
    69
	void GetScreenScale(TInt aMode);
sl@0
    70
	void SetAppScreenMode(TInt aMode);
sl@0
    71
	void SetScreenSizeAndRotation(const TPixelsTwipsAndRotation &aSar);
sl@0
    72
	void SetScreenSizeAndRotation(const TPixelsAndRotation &aSar);
sl@0
    73
	TBool ScreenDeviceValidState() const;
sl@0
    74
	void SetPaletteL();
sl@0
    75
	void GetPalette(TInt aNumColors);
sl@0
    76
	inline TPoint ScreenModeOrigin();
sl@0
    77
	void GetCurrentScreenModeAttributes();
sl@0
    78
	void SetCurrentScreenModeAttributes(const TSizeMode &aModeData);
sl@0
    79
//
sl@0
    80
	inline CFbsBitGc::TGraphicsOrientation Orientation();
sl@0
    81
	void NewOrientation(TInt aMode,CFbsBitGc::TGraphicsOrientation aRotation);
sl@0
    82
	void SetScreenMode(TInt aMode);
sl@0
    83
	inline TInt AppMode();
sl@0
    84
	void GetScreenModeDisplayMode(TInt aMode);
sl@0
    85
	inline TDisplayMode DefaultDisplayMode();
sl@0
    86
	TUint ClientDevicePointer();
sl@0
    87
private:
sl@0
    88
	void CopyScreenToBitmapL(const TRect &aRect, TInt aHandle);
sl@0
    89
	void SetScreenDeviceValidStates(const DWsScreenDevice *aDevice);
sl@0
    90
private:
sl@0
    91
// Non-static app specific data
sl@0
    92
	TSize iAppScreenSizeInPixels;
sl@0
    93
	TSize iAppScreenSizeInTwips;
sl@0
    94
	CFbsBitGc::TGraphicsOrientation iAppRotation;
sl@0
    95
	TInt iAppMode;
sl@0
    96
	TSize iAppScale;
sl@0
    97
	TUint iClientScreenDevicePointer; //This is the pointer to the screen device on the client side CWsScreenDevice
sl@0
    98
	};
sl@0
    99
sl@0
   100
sl@0
   101
//
sl@0
   102
// inlines			//
sl@0
   103
//
sl@0
   104
sl@0
   105
//
sl@0
   106
// DWsScreenDevice
sl@0
   107
//
sl@0
   108
inline CFbsBitGc::TGraphicsOrientation DWsScreenDevice::Orientation()
sl@0
   109
	{return iAppRotation;}
sl@0
   110
inline TInt DWsScreenDevice::AppMode()
sl@0
   111
	{return iAppMode;}
sl@0
   112
inline TPoint DWsScreenDevice::ScreenModeOrigin()
sl@0
   113
	{return iScreen->ScreenModeOrigin(iAppMode);}
sl@0
   114
inline TDisplayMode DWsScreenDevice::DefaultDisplayMode()
sl@0
   115
	{return iScreen->DefaultDisplayMode(iAppMode);}
sl@0
   116
sl@0
   117
//
sl@0
   118
// DWsBitmap
sl@0
   119
//
sl@0
   120
inline CFbsBitmap* DWsBitmap::FbsBitmap() const
sl@0
   121
	{return(iFbsBitmap);}
sl@0
   122
sl@0
   123
#endif