|
1 /* |
|
2 * Copyright (c) 2002 - 2007 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: Test aknnotecontrol.h |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 // INCLUDES |
|
20 #include "testsdknotesnotecontrol.h" |
|
21 |
|
22 // ----------------------------------------------------------------------------- |
|
23 // CTestSDKNotesNoteControl::CTestSDKNotesNoteControl |
|
24 // ----------------------------------------------------------------------------- |
|
25 CTestSDKNotesNoteControl::CTestSDKNotesNoteControl() : CAknNoteControl() |
|
26 { |
|
27 |
|
28 } |
|
29 |
|
30 // ----------------------------------------------------------------------------- |
|
31 // CTestSDKNotesNoteControl::MopSupplyObject |
|
32 // ----------------------------------------------------------------------------- |
|
33 TTypeUid::Ptr CTestSDKNotesNoteControl::MopSupplyObject( TTypeUid aId ) |
|
34 { |
|
35 return CAknNoteControl::MopSupplyObject( aId ); |
|
36 } |
|
37 |
|
38 // ----------------------------------------------------------------------------- |
|
39 // CTestSDKNotesNoteControl::ConstructFromResourceL |
|
40 // ----------------------------------------------------------------------------- |
|
41 void CTestSDKNotesNoteControl::ConstructFromResourceL(TResourceReader& /*aRes*/) |
|
42 { |
|
43 |
|
44 } |
|
45 |
|
46 // ----------------------------------------------------------------------------- |
|
47 // CTestSDKNotesNoteControl::Draw |
|
48 // ----------------------------------------------------------------------------- |
|
49 void CTestSDKNotesNoteControl::Draw(const TRect& /*aRect*/) const |
|
50 { |
|
51 |
|
52 } |
|
53 |
|
54 // ----------------------------------------------------------------------------- |
|
55 // CTestSDKNotesNoteControl::SizeChanged |
|
56 // ----------------------------------------------------------------------------- |
|
57 void CTestSDKNotesNoteControl::SizeChanged() |
|
58 { |
|
59 |
|
60 } |
|
61 |
|
62 // ----------------------------------------------------------------------------- |
|
63 // CTestSDKNotesNoteControl::MinimumSize |
|
64 // ----------------------------------------------------------------------------- |
|
65 TSize CTestSDKNotesNoteControl::MinimumSize() |
|
66 { |
|
67 return TSize( 0, 0 ); |
|
68 } |
|
69 |
|
70 // ----------------------------------------------------------------------------- |
|
71 // CTestSDKNotesNoteControl::CountComponentControls |
|
72 // ----------------------------------------------------------------------------- |
|
73 TInt CTestSDKNotesNoteControl::CountComponentControls() const |
|
74 { |
|
75 return 0; |
|
76 } |
|
77 |
|
78 // ----------------------------------------------------------------------------- |
|
79 // CTestSDKNotesNoteControl::ComponentControl |
|
80 // ----------------------------------------------------------------------------- |
|
81 CCoeControl* CTestSDKNotesNoteControl::ComponentControl(TInt /*anIndex*/) const |
|
82 { |
|
83 return NULL; |
|
84 } |
|
85 |