sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
* This component and the accompanying materials are made available
|
sl@0
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
sl@0
|
6 |
* which accompanies this distribution, and is available
|
sl@0
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* Initial Contributors:
|
sl@0
|
10 |
* Nokia Corporation - initial contribution.
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* Contributors:
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* Description:
|
sl@0
|
15 |
*
|
sl@0
|
16 |
*/
|
sl@0
|
17 |
|
sl@0
|
18 |
|
sl@0
|
19 |
#ifndef __CONPICS_H__
|
sl@0
|
20 |
#define __CONPICS_H__
|
sl@0
|
21 |
|
sl@0
|
22 |
#include <e32std.h>
|
sl@0
|
23 |
#include <e32base.h>
|
sl@0
|
24 |
#include <s32stor.h>
|
sl@0
|
25 |
#include <gdi.h>
|
sl@0
|
26 |
#include <fldbltin.h>
|
sl@0
|
27 |
|
sl@0
|
28 |
//
|
sl@0
|
29 |
// Classes declared in this file
|
sl@0
|
30 |
class CXzePicture;
|
sl@0
|
31 |
class CTestPicture;
|
sl@0
|
32 |
class CDummyField;
|
sl@0
|
33 |
|
sl@0
|
34 |
/**
|
sl@0
|
35 |
@internalTechnology
|
sl@0
|
36 |
*/
|
sl@0
|
37 |
const TUid KUidXzePictureType={268435508};
|
sl@0
|
38 |
|
sl@0
|
39 |
/**
|
sl@0
|
40 |
@internalComponent
|
sl@0
|
41 |
*/
|
sl@0
|
42 |
const TUid KUidXzeDoorType={268435509};
|
sl@0
|
43 |
|
sl@0
|
44 |
/**
|
sl@0
|
45 |
@internalComponent
|
sl@0
|
46 |
*/
|
sl@0
|
47 |
const TInt KWidthInTwips=360;
|
sl@0
|
48 |
const TInt KHeightInTwips=360;
|
sl@0
|
49 |
|
sl@0
|
50 |
class MDemPictureFactory : public MPictureFactory
|
sl@0
|
51 |
/**
|
sl@0
|
52 |
@internalComponent
|
sl@0
|
53 |
*/
|
sl@0
|
54 |
{
|
sl@0
|
55 |
// Instantiates new CDemPictureHeaders.
|
sl@0
|
56 |
public:
|
sl@0
|
57 |
IMPORT_C MDemPictureFactory(); // Force GCC to export vtable.
|
sl@0
|
58 |
IMPORT_C virtual void NewPictureL(TPictureHeader& aHeader,const CStreamStore& aDeferredPictureStore)const;
|
sl@0
|
59 |
};
|
sl@0
|
60 |
|
sl@0
|
61 |
|
sl@0
|
62 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
63 |
|
sl@0
|
64 |
class CXzePicture : public CPicture
|
sl@0
|
65 |
/**
|
sl@0
|
66 |
@internalTechnology
|
sl@0
|
67 |
*/
|
sl@0
|
68 |
{
|
sl@0
|
69 |
// A simple test picture, that is store aware, and has state.
|
sl@0
|
70 |
//
|
sl@0
|
71 |
public:
|
sl@0
|
72 |
IMPORT_C static CXzePicture* NewL(TChar aLabel);
|
sl@0
|
73 |
IMPORT_C static CXzePicture* NewL(const CStreamStore& aStore,TStreamId aId);
|
sl@0
|
74 |
IMPORT_C virtual ~CXzePicture();
|
sl@0
|
75 |
//
|
sl@0
|
76 |
IMPORT_C void ExternalizeL(RWriteStream& aStream)const;
|
sl@0
|
77 |
IMPORT_C void InternalizeL(RReadStream& aStream);
|
sl@0
|
78 |
IMPORT_C void RestoreL(const CStreamStore& aStore,TStreamId aId);
|
sl@0
|
79 |
//
|
sl@0
|
80 |
IMPORT_C void GetOriginalSizeInTwips(TSize& aSize) const;
|
sl@0
|
81 |
//
|
sl@0
|
82 |
IMPORT_C virtual void Draw(CGraphicsContext& aGc,const TPoint& aTopLeft,const TRect& aClipRect,MGraphicsDeviceMap* aMap=NULL)const;
|
sl@0
|
83 |
protected:
|
sl@0
|
84 |
IMPORT_C CXzePicture(TChar aLabel);
|
sl@0
|
85 |
IMPORT_C CXzePicture();
|
sl@0
|
86 |
public:
|
sl@0
|
87 |
TSize iOriginalSizeInTwips;
|
sl@0
|
88 |
TChar iLabel; // Provides object state.
|
sl@0
|
89 |
};
|
sl@0
|
90 |
|
sl@0
|
91 |
|
sl@0
|
92 |
class CXzeDoor : public CXzePicture
|
sl@0
|
93 |
/**
|
sl@0
|
94 |
@internalComponent
|
sl@0
|
95 |
*/
|
sl@0
|
96 |
{
|
sl@0
|
97 |
// A sample door, that has emulates 2 states of presence. An iconic representation
|
sl@0
|
98 |
// and a deep representation.
|
sl@0
|
99 |
//
|
sl@0
|
100 |
public:
|
sl@0
|
101 |
IMPORT_C static CXzeDoor* NewL(TChar aLabel,TBool aAlwaysFailToDetach=EFalse);
|
sl@0
|
102 |
IMPORT_C static CXzeDoor* NewL(const CStreamStore& aStore,TStreamId aId);
|
sl@0
|
103 |
//
|
sl@0
|
104 |
IMPORT_C virtual void DetachFromStoreL(TDetach aDegree);
|
sl@0
|
105 |
//
|
sl@0
|
106 |
IMPORT_C void ExternalizeL(RWriteStream& aStream)const;
|
sl@0
|
107 |
IMPORT_C void InternalizeL(RReadStream& aStream);
|
sl@0
|
108 |
IMPORT_C void RestoreL(const CStreamStore& aStore,TStreamId aId);
|
sl@0
|
109 |
protected:
|
sl@0
|
110 |
IMPORT_C CXzeDoor(TChar aLabel,TBool aAlwaysFailToDetach);
|
sl@0
|
111 |
IMPORT_C CXzeDoor(TBool aAlwaysFailToDetach);
|
sl@0
|
112 |
public:
|
sl@0
|
113 |
TBool iAlwaysFailToDetach;
|
sl@0
|
114 |
};
|
sl@0
|
115 |
|
sl@0
|
116 |
|
sl@0
|
117 |
class CTestPicture : public CPicture
|
sl@0
|
118 |
/**
|
sl@0
|
119 |
@internalTechnology
|
sl@0
|
120 |
*/
|
sl@0
|
121 |
{
|
sl@0
|
122 |
public:
|
sl@0
|
123 |
IMPORT_C static CTestPicture* NewL();
|
sl@0
|
124 |
//
|
sl@0
|
125 |
IMPORT_C void ExternalizeL(RWriteStream& aStream)const;
|
sl@0
|
126 |
//
|
sl@0
|
127 |
IMPORT_C void GetOriginalSizeInTwips(TSize& aSize) const;
|
sl@0
|
128 |
//
|
sl@0
|
129 |
IMPORT_C virtual void Draw(CGraphicsContext& aGc,const TPoint& aTopLeft,const TRect& aClipRect,MGraphicsDeviceMap* aMap=NULL) const;
|
sl@0
|
130 |
protected:
|
sl@0
|
131 |
IMPORT_C CTestPicture();
|
sl@0
|
132 |
public:
|
sl@0
|
133 |
TSize iOriginalSizeInTwips;
|
sl@0
|
134 |
};
|
sl@0
|
135 |
|
sl@0
|
136 |
///////////////////////////////////////////////////////////////////////
|
sl@0
|
137 |
|
sl@0
|
138 |
|
sl@0
|
139 |
class CDummyField : public CTextField
|
sl@0
|
140 |
/**
|
sl@0
|
141 |
@internalTechnology
|
sl@0
|
142 |
*/
|
sl@0
|
143 |
{
|
sl@0
|
144 |
public:
|
sl@0
|
145 |
IMPORT_C CDummyField();
|
sl@0
|
146 |
IMPORT_C virtual TInt Value(TPtr& aValueText); // value is always "XXX"
|
sl@0
|
147 |
IMPORT_C virtual void InternalizeL(RReadStream& aStream);
|
sl@0
|
148 |
IMPORT_C virtual void ExternalizeL(RWriteStream& aStream)const;
|
sl@0
|
149 |
IMPORT_C virtual TUid Type() const;
|
sl@0
|
150 |
};
|
sl@0
|
151 |
|
sl@0
|
152 |
#endif
|