equal
deleted
inserted
replaced
|
1 // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
2 // All rights reserved. |
|
3 // This component and the accompanying materials are made available |
|
4 // under the terms of "Eclipse Public License v1.0" |
|
5 // which accompanies this distribution, and is available |
|
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // wsscreencapture.h |
|
15 // Interface for Render Stage Screen Capture Utils to be used by the render stage |
|
16 // |
|
17 // |
|
18 |
|
19 #ifndef WSTESTSCREENDEVICEUTILS_H_ |
|
20 #define WSTESTSCREENDEVICEUTILS_H_ |
|
21 |
|
22 /** |
|
23 @file |
|
24 @publishedpartner |
|
25 @released |
|
26 */ |
|
27 |
|
28 #include <graphics/wsgraphicdrawerinterface.h> |
|
29 |
|
30 class MWsScreenDeviceUtils : public MWsObjectProvider |
|
31 { |
|
32 public: |
|
33 enum |
|
34 { |
|
35 KMWsScreenCaptureUtils = 0x10286505, // registered GUID |
|
36 ETypeId= KMWsScreenCaptureUtils, |
|
37 EWsObjectInterfaceId= KMWsScreenCaptureUtils |
|
38 }; |
|
39 virtual void PanicCurrentClient(TInt aPanic) = 0; |
|
40 virtual void SetReply(TInt aReply) = 0; |
|
41 virtual void RedrawNowIfPending() = 0; |
|
42 virtual void ReplyBuf(const TAny* aSource, TInt aLength) = 0; |
|
43 }; |
|
44 |
|
45 #endif /*WSTESTSCREENDEVICEUTILS_H_*/ |
|
46 |
|
47 |