1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/nonnga/SERVER/ScrDev.H Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,123 @@
1.4 +// Copyright (c) 2000-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// Defines the screen device class
1.18 +//
1.19 +//
1.20 +
1.21 +#ifndef __SCRDEV_H__
1.22 +#define __SCRDEV_H__
1.23 +
1.24 +#ifndef __E32STD_H__
1.25 +#include <e32std.h>
1.26 +#endif
1.27 +#ifndef __E32BASE_H__
1.28 +#include <e32base.h>
1.29 +#endif
1.30 +#ifndef __OBJECT_H__
1.31 +#include "OBJECT.H"
1.32 +#endif
1.33 +#ifndef __SCREEN_H__
1.34 +#include "screen.h"
1.35 +#endif
1.36 +
1.37 +class DWsBitmap : public CWsObject
1.38 + {
1.39 +public:
1.40 + DWsBitmap(CWsClient *aOwner);
1.41 + void ConstructL(const TWsClCmdCreateBitmap &aParams);
1.42 + inline CFbsBitmap *FbsBitmap() const;
1.43 + void CommandL(TInt aOpcode, const TAny *aCmdData);
1.44 + void CloseObject();
1.45 + void IncRefCount();
1.46 + void DecRefCount();
1.47 +private:
1.48 + ~DWsBitmap();
1.49 +private:
1.50 + enum // Flags
1.51 + {
1.52 + EWsBitmapClientObjectFreed = 0x00000001 // Set if the associated CWsBitmap object has been deleted
1.53 + };
1.54 +private:
1.55 + CFbsBitmap *iFbsBitmap;
1.56 + TInt iRefCount;
1.57 + TUint32 iFlags;
1.58 + };
1.59 +
1.60 +class DWsScreenDevice : public CWsScreenObject
1.61 + {
1.62 +public:
1.63 + DWsScreenDevice(CWsClient* aOwner, TInt aDefaultScreenNumber, TUint aClientScreenDevicePointer);
1.64 + ~DWsScreenDevice();
1.65 + void CommandL(TInt aOpcode, const TAny *aCmdData);
1.66 + void ConstructL();
1.67 + void GetDefaultScreenSizeAndRotationCmd();
1.68 + void GetDefaultScreenSizeAndRotationCmd2();
1.69 + void GetScreenSizeAndRotationCmd(TInt aMode);
1.70 + void GetScreenSizeAndRotationCmd2(TInt aMode);
1.71 + void GetScreenModeOriginCmd(TInt aMode);
1.72 + void GetScreenScale(TInt aMode);
1.73 + void SetAppScreenMode(TInt aMode);
1.74 + void SetScreenSizeAndRotation(const TPixelsTwipsAndRotation &aSar);
1.75 + void SetScreenSizeAndRotation(const TPixelsAndRotation &aSar);
1.76 + TBool ScreenDeviceValidState() const;
1.77 + void SetPaletteL();
1.78 + void GetPalette(TInt aNumColors);
1.79 + inline TPoint ScreenModeOrigin();
1.80 + void GetCurrentScreenModeAttributes();
1.81 + void SetCurrentScreenModeAttributes(const TSizeMode &aModeData);
1.82 +//
1.83 + inline CFbsBitGc::TGraphicsOrientation Orientation();
1.84 + void NewOrientation(TInt aMode,CFbsBitGc::TGraphicsOrientation aRotation);
1.85 + void SetScreenMode(TInt aMode);
1.86 + inline TInt AppMode();
1.87 + void GetScreenModeDisplayMode(TInt aMode);
1.88 + inline TDisplayMode DefaultDisplayMode();
1.89 + TUint ClientDevicePointer();
1.90 +private:
1.91 + void CopyScreenToBitmapL(const TRect &aRect, TInt aHandle);
1.92 + void SetScreenDeviceValidStates(const DWsScreenDevice *aDevice);
1.93 +private:
1.94 +// Non-static app specific data
1.95 + TSize iAppScreenSizeInPixels;
1.96 + TSize iAppScreenSizeInTwips;
1.97 + CFbsBitGc::TGraphicsOrientation iAppRotation;
1.98 + TInt iAppMode;
1.99 + TSize iAppScale;
1.100 + TUint iClientScreenDevicePointer; //This is the pointer to the screen device on the client side CWsScreenDevice
1.101 + };
1.102 +
1.103 +
1.104 +//
1.105 +// inlines //
1.106 +//
1.107 +
1.108 +//
1.109 +// DWsScreenDevice
1.110 +//
1.111 +inline CFbsBitGc::TGraphicsOrientation DWsScreenDevice::Orientation()
1.112 + {return iAppRotation;}
1.113 +inline TInt DWsScreenDevice::AppMode()
1.114 + {return iAppMode;}
1.115 +inline TPoint DWsScreenDevice::ScreenModeOrigin()
1.116 + {return iScreen->ScreenModeOrigin(iAppMode);}
1.117 +inline TDisplayMode DWsScreenDevice::DefaultDisplayMode()
1.118 + {return iScreen->DefaultDisplayMode(iAppMode);}
1.119 +
1.120 +//
1.121 +// DWsBitmap
1.122 +//
1.123 +inline CFbsBitmap* DWsBitmap::FbsBitmap() const
1.124 + {return(iFbsBitmap);}
1.125 +
1.126 +#endif