sl@0
|
1 |
// Copyright (c) 2007-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 SURFACECONFIGURATION_H
|
sl@0
|
17 |
#define SURFACECONFIGURATION_H
|
sl@0
|
18 |
|
sl@0
|
19 |
#include <e32base.h>
|
sl@0
|
20 |
#include <graphics/surface.h>
|
sl@0
|
21 |
#include <bitstd.h>
|
sl@0
|
22 |
|
sl@0
|
23 |
/**
|
sl@0
|
24 |
The base class for the surface configuration containing the size of the surface configuration.
|
sl@0
|
25 |
Provides a Size function to help identify which attributes are available.
|
sl@0
|
26 |
|
sl@0
|
27 |
@publishedPartner
|
sl@0
|
28 |
@prototype
|
sl@0
|
29 |
*/
|
sl@0
|
30 |
class TSurfaceConfigurationSize
|
sl@0
|
31 |
{
|
sl@0
|
32 |
public:
|
sl@0
|
33 |
inline TInt Size() const;
|
sl@0
|
34 |
protected:
|
sl@0
|
35 |
inline TSurfaceConfigurationSize(TInt aSize);
|
sl@0
|
36 |
template <class Member> TBool MemberAccessible (const Member& aMember) const
|
sl@0
|
37 |
{
|
sl@0
|
38 |
return iSize>=sizeof(Member)+TInt(&aMember)-TInt(this);
|
sl@0
|
39 |
}
|
sl@0
|
40 |
inline TBool operator == (const TSurfaceConfigurationSize& aRhs)const;
|
sl@0
|
41 |
private:
|
sl@0
|
42 |
inline TSurfaceConfigurationSize();
|
sl@0
|
43 |
inline TSurfaceConfigurationSize(const TSurfaceConfigurationSize& /*aSurfaceConfigurationSize*/);
|
sl@0
|
44 |
inline TSurfaceConfigurationSize operator = (const TSurfaceConfigurationSize& /*aRhs*/)const;
|
sl@0
|
45 |
protected:
|
sl@0
|
46 |
TInt iSize;
|
sl@0
|
47 |
};
|
sl@0
|
48 |
|
sl@0
|
49 |
/**
|
sl@0
|
50 |
The first set of surface configuration attributes containing the surface id, viewport, extent
|
sl@0
|
51 |
and orientation of the surface, along with a SupportsAllMembers function to help identify which
|
sl@0
|
52 |
attributes are available.
|
sl@0
|
53 |
|
sl@0
|
54 |
@publishedPartner
|
sl@0
|
55 |
@prototype
|
sl@0
|
56 |
*/
|
sl@0
|
57 |
class TSurfaceConfiguration1: public TSurfaceConfigurationSize
|
sl@0
|
58 |
{
|
sl@0
|
59 |
public:
|
sl@0
|
60 |
inline TSurfaceConfiguration1();
|
sl@0
|
61 |
inline TInt SetSurfaceId (const TSurfaceId& aSurfaceId);
|
sl@0
|
62 |
inline void GetSurfaceId (TSurfaceId& aSurfaceId) const;
|
sl@0
|
63 |
inline TInt SetViewport (const TRect& aViewport);
|
sl@0
|
64 |
inline void GetViewport (TRect& aViewport) const;
|
sl@0
|
65 |
inline TInt SetOrientation (CFbsBitGc::TGraphicsOrientation aOrientation);
|
sl@0
|
66 |
inline CFbsBitGc::TGraphicsOrientation Orientation() const;
|
sl@0
|
67 |
inline TInt SetExtent(const TRect& aExtent);
|
sl@0
|
68 |
inline void GetExtent(TRect& aExtent) const;
|
sl@0
|
69 |
inline TBool SupportsAllMembers();
|
sl@0
|
70 |
protected:
|
sl@0
|
71 |
inline TSurfaceConfiguration1(TInt aSize);
|
sl@0
|
72 |
inline TBool operator == (const TSurfaceConfiguration1& aRhs)const;
|
sl@0
|
73 |
private:
|
sl@0
|
74 |
inline TSurfaceConfiguration1(const TSurfaceConfiguration1& /*aSurfaceConfiguration1*/);
|
sl@0
|
75 |
inline TSurfaceConfiguration1 operator = (const TSurfaceConfiguration1& /*aRhs*/)const;
|
sl@0
|
76 |
private:
|
sl@0
|
77 |
TSurfaceId iSurfaceId;
|
sl@0
|
78 |
CFbsBitGc::TGraphicsOrientation iOrientation;
|
sl@0
|
79 |
TRect iExtent;
|
sl@0
|
80 |
TRect iViewport;
|
sl@0
|
81 |
};
|
sl@0
|
82 |
|
sl@0
|
83 |
/**
|
sl@0
|
84 |
The second set of surface configuration attributes containing the flip attribute of the surface, along with a SupportsAllMembers function to help identify which
|
sl@0
|
85 |
attributes are available.
|
sl@0
|
86 |
|
sl@0
|
87 |
@publishedPartner
|
sl@0
|
88 |
@prototype
|
sl@0
|
89 |
*/
|
sl@0
|
90 |
class TSurfaceConfiguration2: public TSurfaceConfiguration1
|
sl@0
|
91 |
{
|
sl@0
|
92 |
public:
|
sl@0
|
93 |
inline TSurfaceConfiguration2();
|
sl@0
|
94 |
inline TInt SetFlip(TBool aFlip);
|
sl@0
|
95 |
inline TBool Flip()const;
|
sl@0
|
96 |
inline TBool SupportsAllMembers();
|
sl@0
|
97 |
protected:
|
sl@0
|
98 |
inline TSurfaceConfiguration2(TInt aSize);
|
sl@0
|
99 |
inline TBool operator == (const TSurfaceConfiguration2& aRhs)const;
|
sl@0
|
100 |
private:
|
sl@0
|
101 |
inline TSurfaceConfiguration2(const TSurfaceConfiguration2& /*aSurfaceConfiguration2*/);
|
sl@0
|
102 |
inline TSurfaceConfiguration2 operator = (const TSurfaceConfiguration2& /*aRhs*/)const;
|
sl@0
|
103 |
//iFlip is a x-axis flip
|
sl@0
|
104 |
TBool iFlip;
|
sl@0
|
105 |
};
|
sl@0
|
106 |
|
sl@0
|
107 |
/**
|
sl@0
|
108 |
TSurfaceConfiguration is provided as a chain of derived classes representing the growing
|
sl@0
|
109 |
history of the class.
|
sl@0
|
110 |
|
sl@0
|
111 |
@publishedPartner
|
sl@0
|
112 |
@prototype
|
sl@0
|
113 |
*/
|
sl@0
|
114 |
class TSurfaceConfiguration: public TSurfaceConfiguration2
|
sl@0
|
115 |
{
|
sl@0
|
116 |
typedef TSurfaceConfiguration2 TBiggestConfiguration;
|
sl@0
|
117 |
public:
|
sl@0
|
118 |
inline TSurfaceConfiguration();
|
sl@0
|
119 |
inline TSurfaceConfiguration(const TSurfaceConfiguration& aSurfaceConfiguration);
|
sl@0
|
120 |
inline TSurfaceConfiguration(TInt aPreferredMaxSize);
|
sl@0
|
121 |
inline TBool operator == (const TSurfaceConfiguration& aRhs)const
|
sl@0
|
122 |
{
|
sl@0
|
123 |
return TSurfaceConfiguration2::operator==(aRhs);
|
sl@0
|
124 |
}
|
sl@0
|
125 |
private:
|
sl@0
|
126 |
inline TSurfaceConfiguration operator = (const TSurfaceConfiguration& /*aRhs*/);
|
sl@0
|
127 |
};
|
sl@0
|
128 |
#include <graphics/surfaceconfiguration.inl>
|
sl@0
|
129 |
#endif // SURFACECONFIGURATION_H
|