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 |
// Definition of Direct Screen Access class
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#ifndef __DIRECT_H__
|
sl@0
|
19 |
#define __DIRECT_H__
|
sl@0
|
20 |
|
sl@0
|
21 |
#include <e32std.h>
|
sl@0
|
22 |
#include <e32base.h>
|
sl@0
|
23 |
#include <w32std.h>
|
sl@0
|
24 |
#include "w32cmd.h"
|
sl@0
|
25 |
#include "OBJECT.H"
|
sl@0
|
26 |
#include "CLIENT.H"
|
sl@0
|
27 |
#include <e32msgqueue.h>
|
sl@0
|
28 |
|
sl@0
|
29 |
class CWsClientWindow;
|
sl@0
|
30 |
class CWsDirectScreenAccess;
|
sl@0
|
31 |
class CDsaMsgQueue;
|
sl@0
|
32 |
|
sl@0
|
33 |
NONSHARABLE_CLASS(CWsAbortDirect) : public CActive
|
sl@0
|
34 |
{
|
sl@0
|
35 |
public:
|
sl@0
|
36 |
CWsAbortDirect(CWsDirectScreenAccess* aDirect,CDsaMsgQueue* aParent);
|
sl@0
|
37 |
~CWsAbortDirect();
|
sl@0
|
38 |
void Started();
|
sl@0
|
39 |
void Complete(TInt aReason);
|
sl@0
|
40 |
private:
|
sl@0
|
41 |
//Pure virtual function from CActive
|
sl@0
|
42 |
void RunL();
|
sl@0
|
43 |
void DoCancel();
|
sl@0
|
44 |
private:
|
sl@0
|
45 |
CWsDirectScreenAccess* iDirect;
|
sl@0
|
46 |
CDsaMsgQueue* iParent;
|
sl@0
|
47 |
};
|
sl@0
|
48 |
|
sl@0
|
49 |
NONSHARABLE_CLASS(CDsaMsgQueue) : public CBase
|
sl@0
|
50 |
{
|
sl@0
|
51 |
public:
|
sl@0
|
52 |
static CDsaMsgQueue* NewL(CWsDirectScreenAccess* aDirect);
|
sl@0
|
53 |
~CDsaMsgQueue();
|
sl@0
|
54 |
TInt CreateSendQueue();
|
sl@0
|
55 |
TInt CreateRecQueue();
|
sl@0
|
56 |
RMsgQueueBase* SendQueue();
|
sl@0
|
57 |
RMsgQueueBase* RecQueue();
|
sl@0
|
58 |
void Cancel();
|
sl@0
|
59 |
void Complete();
|
sl@0
|
60 |
void CompleteAbort();
|
sl@0
|
61 |
void Started();
|
sl@0
|
62 |
TInt Send(TInt aData);
|
sl@0
|
63 |
TInt ReceiveData();
|
sl@0
|
64 |
TRequestStatus& Status()
|
sl@0
|
65 |
{
|
sl@0
|
66 |
return iAborted->iStatus;
|
sl@0
|
67 |
}
|
sl@0
|
68 |
|
sl@0
|
69 |
private:
|
sl@0
|
70 |
CDsaMsgQueue();
|
sl@0
|
71 |
void ConstructL(CWsDirectScreenAccess* aDirect);
|
sl@0
|
72 |
private:
|
sl@0
|
73 |
RMsgQueueBase iSendQueue;
|
sl@0
|
74 |
RMsgQueueBase iRecQueue;
|
sl@0
|
75 |
CWsAbortDirect* iAborted;
|
sl@0
|
76 |
};
|
sl@0
|
77 |
|
sl@0
|
78 |
class CWsDirectScreenAccess : public CWsScreenObject
|
sl@0
|
79 |
{
|
sl@0
|
80 |
public:
|
sl@0
|
81 |
enum TStatus
|
sl@0
|
82 |
{
|
sl@0
|
83 |
EDirectStatusTimeNotCreated,
|
sl@0
|
84 |
EDirectStatusNone,
|
sl@0
|
85 |
EDirectStatusInitialising,
|
sl@0
|
86 |
EDirectStatusRunning,
|
sl@0
|
87 |
EDirectStatusCompleted,
|
sl@0
|
88 |
EDirectStatusCanceling,
|
sl@0
|
89 |
EDirectStatusAbortedWindow,
|
sl@0
|
90 |
EDirectStatusAbortedGlobal,
|
sl@0
|
91 |
EDirectStatusAborted=EDirectStatusAbortedWindow,
|
sl@0
|
92 |
};
|
sl@0
|
93 |
public:
|
sl@0
|
94 |
static CWsDirectScreenAccess* NewL(CWsClient* aOwner);
|
sl@0
|
95 |
~CWsDirectScreenAccess();
|
sl@0
|
96 |
void Request(TInt handle);
|
sl@0
|
97 |
void GetRegion(TInt aNumRects);
|
sl@0
|
98 |
void Cancel();
|
sl@0
|
99 |
void Aborted();
|
sl@0
|
100 |
void AbortNow();
|
sl@0
|
101 |
TInt GetSendQueue();
|
sl@0
|
102 |
TInt GetRecQueue();
|
sl@0
|
103 |
void SignalAbort(RDirectScreenAccess::TTerminationReasons aReason);
|
sl@0
|
104 |
inline TRequestStatus& AbortStatus() {return iMsgQueue->Status();}
|
sl@0
|
105 |
void CancelAbortObject();
|
sl@0
|
106 |
void Abort();
|
sl@0
|
107 |
//Pure virtual function from CWsObject
|
sl@0
|
108 |
void CommandL(TInt aOpcode, const TAny* aCmdData);
|
sl@0
|
109 |
inline TBool IsVisible() const;
|
sl@0
|
110 |
TBool IsAbortRequired(const TRegion& aTopVisibleRegion) const;
|
sl@0
|
111 |
inline RWsRegion& VisibleRegion();
|
sl@0
|
112 |
inline CWsClientWindow* ClientWindow() const;
|
sl@0
|
113 |
public:
|
sl@0
|
114 |
TSglQueLink iLink;
|
sl@0
|
115 |
TSglQueLink iMultipleDSALink;
|
sl@0
|
116 |
TSglQueLink iAbortLink; // Used to build a list of DSA objects that need to be aborted on a specific window
|
sl@0
|
117 |
private:
|
sl@0
|
118 |
inline CWsDirectScreenAccess(CWsClient* aOwner): CWsScreenObject(aOwner,WS_HANDLE_DIRECT, aOwner->Screen()) {}
|
sl@0
|
119 |
void ConstructL();
|
sl@0
|
120 |
void Initiate();
|
sl@0
|
121 |
void Terminate1();
|
sl@0
|
122 |
void Terminate2();
|
sl@0
|
123 |
void CorrectScreen();
|
sl@0
|
124 |
#if defined(_DEBUG)
|
sl@0
|
125 |
TBool OnQueue();
|
sl@0
|
126 |
#endif
|
sl@0
|
127 |
private:
|
sl@0
|
128 |
CWsClientWindow* iWin;
|
sl@0
|
129 |
RWsRegion iVisible;
|
sl@0
|
130 |
CDsaMsgQueue* iMsgQueue;
|
sl@0
|
131 |
TStatus iStatus;
|
sl@0
|
132 |
RDirectScreenAccess::TTerminationReasons iAbortReason;
|
sl@0
|
133 |
public:
|
sl@0
|
134 |
TBool IsSyncTimeoutPending() const;
|
sl@0
|
135 |
inline RRegion& RegionUnderSync();
|
sl@0
|
136 |
public:
|
sl@0
|
137 |
class CDSARegionSyncTimer : public CTimer
|
sl@0
|
138 |
{
|
sl@0
|
139 |
|
sl@0
|
140 |
public:
|
sl@0
|
141 |
enum TConsts
|
sl@0
|
142 |
{
|
sl@0
|
143 |
KRegionSyncTimeoutMicrosec = 100000 // 0.1 sec
|
sl@0
|
144 |
};
|
sl@0
|
145 |
|
sl@0
|
146 |
public:
|
sl@0
|
147 |
static CDSARegionSyncTimer* NewL(CWsDirectScreenAccess& aDSA);
|
sl@0
|
148 |
|
sl@0
|
149 |
private:
|
sl@0
|
150 |
void RunL();
|
sl@0
|
151 |
CDSARegionSyncTimer(CWsDirectScreenAccess& aDSA);
|
sl@0
|
152 |
|
sl@0
|
153 |
private:
|
sl@0
|
154 |
CWsDirectScreenAccess& iDSA;
|
sl@0
|
155 |
};
|
sl@0
|
156 |
|
sl@0
|
157 |
private:
|
sl@0
|
158 |
void DeleteRegionSyncWatchcat();
|
sl@0
|
159 |
void CancelFrozenRegion();
|
sl@0
|
160 |
void RegionSyncTimeout();
|
sl@0
|
161 |
|
sl@0
|
162 |
private:
|
sl@0
|
163 |
CDSARegionSyncTimer* iRegionSync;
|
sl@0
|
164 |
RRegion iFrozenRegion;
|
sl@0
|
165 |
|
sl@0
|
166 |
friend class CWsDirectScreenAccess::CDSARegionSyncTimer;
|
sl@0
|
167 |
};
|
sl@0
|
168 |
|
sl@0
|
169 |
inline TBool CWsDirectScreenAccess::IsVisible() const
|
sl@0
|
170 |
{
|
sl@0
|
171 |
return !iVisible.IsEmpty();
|
sl@0
|
172 |
}
|
sl@0
|
173 |
|
sl@0
|
174 |
inline CWsClientWindow* CWsDirectScreenAccess::ClientWindow() const
|
sl@0
|
175 |
{
|
sl@0
|
176 |
return iWin;
|
sl@0
|
177 |
}
|
sl@0
|
178 |
|
sl@0
|
179 |
inline RRegion& CWsDirectScreenAccess::RegionUnderSync()
|
sl@0
|
180 |
{
|
sl@0
|
181 |
return iFrozenRegion;
|
sl@0
|
182 |
}
|
sl@0
|
183 |
#endif
|