sl@0
|
1 |
// Copyright (c) 2008-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 |
#ifndef __WSUIBUFFER_H__
|
sl@0
|
17 |
#define __WSUIBUFFER_H__
|
sl@0
|
18 |
|
sl@0
|
19 |
#include <pixelformats.h>
|
sl@0
|
20 |
#include <graphics/wsgraphicdrawerinterface.h>
|
sl@0
|
21 |
|
sl@0
|
22 |
/**
|
sl@0
|
23 |
@file
|
sl@0
|
24 |
@publishedPartner
|
sl@0
|
25 |
@prototype
|
sl@0
|
26 |
*/
|
sl@0
|
27 |
|
sl@0
|
28 |
/**
|
sl@0
|
29 |
This class provides direct access to the memory of the UI buffer.
|
sl@0
|
30 |
|
sl@0
|
31 |
This interface is to be used by CRPs that don't want to go through MWsGraphicsContext
|
sl@0
|
32 |
to handle their rendering, but want direct memory access.
|
sl@0
|
33 |
@publishedPartner
|
sl@0
|
34 |
@prototype
|
sl@0
|
35 |
*/
|
sl@0
|
36 |
class MWsUiBuffer: public MWsObjectProvider
|
sl@0
|
37 |
{
|
sl@0
|
38 |
public:
|
sl@0
|
39 |
DECLARE_WS_TYPE_ID(KMWsUiBufferInterfaceId)
|
sl@0
|
40 |
|
sl@0
|
41 |
/**
|
sl@0
|
42 |
Finishes pending rendering to the buffer and temporarily makes the pixel
|
sl@0
|
43 |
data of the buffer image accessible for reading and writing by the CPU.
|
sl@0
|
44 |
|
sl@0
|
45 |
When finished with the pixel data, the caller must end the mapping by
|
sl@0
|
46 |
calling @c Unmap().
|
sl@0
|
47 |
|
sl@0
|
48 |
This method should only be called from the context of
|
sl@0
|
49 |
@c CWsGraphicDrawer::Draw().
|
sl@0
|
50 |
@param aDataAddress On return, the base address of the pixel data in the
|
sl@0
|
51 |
address space of the calling process
|
sl@0
|
52 |
@param aDataStride On return, the number of bytes between rows of the
|
sl@0
|
53 |
pixel data
|
sl@0
|
54 |
@return KErrNone if successful, otherwise one of the standard Symbian
|
sl@0
|
55 |
error codes
|
sl@0
|
56 |
@see Unmap()
|
sl@0
|
57 |
@publishedPartner
|
sl@0
|
58 |
@prototype
|
sl@0
|
59 |
*/
|
sl@0
|
60 |
virtual TInt MapReadWrite(TAny*& aDataAddress, TInt& aDataStride) = 0;
|
sl@0
|
61 |
|
sl@0
|
62 |
/**
|
sl@0
|
63 |
Finishes pending rendering to the buffer and temporarily makes the pixel
|
sl@0
|
64 |
data of the buffer image accessible for writing by the CPU.
|
sl@0
|
65 |
|
sl@0
|
66 |
When finished with the pixel data, the caller must end the mapping by
|
sl@0
|
67 |
calling @c Unmap().
|
sl@0
|
68 |
|
sl@0
|
69 |
This method should only be called from the context of
|
sl@0
|
70 |
@c CWsGraphicDrawer::Draw().
|
sl@0
|
71 |
@param aDataAddress On return, the base address of the pixel data in the
|
sl@0
|
72 |
address space of the calling process
|
sl@0
|
73 |
@param aDataStride On return, the number of bytes between rows of the
|
sl@0
|
74 |
pixel data
|
sl@0
|
75 |
@return KErrNone if successful, otherwise one of the standard Symbian
|
sl@0
|
76 |
error codes
|
sl@0
|
77 |
@see Unmap()
|
sl@0
|
78 |
@publishedPartner
|
sl@0
|
79 |
@prototype
|
sl@0
|
80 |
*/
|
sl@0
|
81 |
virtual TInt MapWriteOnly(TAny*& aDataAddress, TInt& aDataStride) = 0;
|
sl@0
|
82 |
|
sl@0
|
83 |
/**
|
sl@0
|
84 |
Makes the pixel data of an image no longer accessible to the CPU.
|
sl@0
|
85 |
|
sl@0
|
86 |
Before calling this method the buffer must be mapped for CPU access by
|
sl@0
|
87 |
a previous call to @c MapReadWrite() or @c MapWriteOnly().
|
sl@0
|
88 |
|
sl@0
|
89 |
This method should only be called from the context of
|
sl@0
|
90 |
@c CWsGraphicDrawer::Draw().
|
sl@0
|
91 |
@return KErrNone if successful, otherwise one of the standard Symbian
|
sl@0
|
92 |
error codes
|
sl@0
|
93 |
@see MapReadWrite()
|
sl@0
|
94 |
@see MapWriteOnly()
|
sl@0
|
95 |
@publishedPartner
|
sl@0
|
96 |
@prototype
|
sl@0
|
97 |
*/
|
sl@0
|
98 |
virtual TInt Unmap() = 0;
|
sl@0
|
99 |
|
sl@0
|
100 |
/**
|
sl@0
|
101 |
Gets the pixel format of the buffer.
|
sl@0
|
102 |
@return The pixel format of the buffer
|
sl@0
|
103 |
@publishedPartner
|
sl@0
|
104 |
@prototype
|
sl@0
|
105 |
*/
|
sl@0
|
106 |
virtual TUidPixelFormat PixelFormat() const = 0;
|
sl@0
|
107 |
|
sl@0
|
108 |
/**
|
sl@0
|
109 |
Gets the current size of the buffer.
|
sl@0
|
110 |
|
sl@0
|
111 |
The actual size of the whole buffer might be larger than the returned
|
sl@0
|
112 |
value depending on the current screen mode. However, it is the size
|
sl@0
|
113 |
returned by this method that should be used when accessing the pixel data.
|
sl@0
|
114 |
@return The current size of the buffer
|
sl@0
|
115 |
@publishedPartner
|
sl@0
|
116 |
@prototype
|
sl@0
|
117 |
*/
|
sl@0
|
118 |
virtual TSize SizeInPixels() const = 0;
|
sl@0
|
119 |
};
|
sl@0
|
120 |
|
sl@0
|
121 |
#endif //__WSUiBUFFER_H__
|