equal
deleted
inserted
replaced
|
1 // Copyright (c) 1995-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 the License "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 // e32\include\e32event_private.h |
|
15 // |
|
16 // |
|
17 |
|
18 #ifndef __E32EVENT_PRIVATE_H__ |
|
19 #define __E32EVENT_PRIVATE_H__ |
|
20 #include <e32cmn.h> |
|
21 #include <e32cmn_private.h> |
|
22 |
|
23 /** |
|
24 @publishedPartner |
|
25 @released |
|
26 |
|
27 Encapsulates information about a device's display screen. |
|
28 */ |
|
29 class TScreenInfoV01 |
|
30 { |
|
31 public: |
|
32 TBool iWindowHandleValid; /**< Indicates whether the window handle is valid.*/ |
|
33 TAny *iWindowHandle; /**< The window handle.*/ |
|
34 TBool iScreenAddressValid;/**< Indicates whether the screen address is valid.*/ |
|
35 TAny *iScreenAddress; /**< The linear address of the screen.*/ |
|
36 TSize iScreenSize; /**< The size of the screen.*/ |
|
37 }; |
|
38 // |
|
39 #endif |
|
40 |