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 // |
|
15 |
|
16 #ifndef __CONTROLTESTCONTAINER_H__ |
|
17 #define __CONTROLTESTCONTAINER_H__ |
|
18 |
|
19 #include "tmultiptrtestcontrol.h" |
|
20 #include "tmultiptrtestchildcontrol.h" |
|
21 /** |
|
22 The window-owning container control |
|
23 */ |
|
24 |
|
25 class CMultPtrTestCompoundControlContainer : public CCoeControl |
|
26 { |
|
27 public: |
|
28 CMultPtrTestCompoundControlContainer(); |
|
29 ~CMultPtrTestCompoundControlContainer(); |
|
30 void ConstructL( const TRect& aRect ); |
|
31 |
|
32 public: // From CCoeControl. |
|
33 void Draw( const TRect& ) const; |
|
34 void HandlePointerEventL( const TPointerEvent& aPointerEvent ); |
|
35 |
|
36 public: |
|
37 CMultiPtrTestChildControl* iChildOne; |
|
38 CMultiPtrTestChildControl* iChildTwo; |
|
39 }; |
|
40 |
|
41 |
|
42 #endif // __CONTROLTESTCONTAINER_H__ |
|
43 |