equal
deleted
inserted
replaced
1 /* |
|
2 * Copyright (c) 2006 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: This class is used to send direct content fullscreen event. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef CMMADCFULLSCREENEVENT_H |
|
20 #define CMMADCFULLSCREENEVENT_H |
|
21 |
|
22 //#include <mevents.h> |
|
23 #include "cmmaevent.h" |
|
24 |
|
25 |
|
26 // CLASS DECLARATION |
|
27 /** |
|
28 * This class is used to send direct content fullscreen event. |
|
29 * |
|
30 * |
|
31 */ |
|
32 NONSHARABLE_CLASS(CMMADCFullScreenEvent): public CMMAEvent |
|
33 { |
|
34 public: |
|
35 /** |
|
36 * Default constructor. |
|
37 * @param aGUIObject Java object to set fullscreen status |
|
38 * @param aFullScreen Indicates whether or not to render in full |
|
39 * screen mode |
|
40 */ |
|
41 CMMADCFullScreenEvent(jobject aGUIObject, TBool aFullScreen); |
|
42 |
|
43 private: // from CJavaEvent |
|
44 /** |
|
45 * @param aJni JNI environment |
|
46 */ |
|
47 void Dispatch(JNIEnv& aJni); |
|
48 }; |
|
49 |
|
50 #endif // CMMADCFULLSCREENEVENT_H |
|