00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef EXELAUNCHER_S60CONTAINER_H
00010 #define EXELAUNCHER_S60CONTAINER_H
00011
00012
00013 #include <coecntrl.h>
00014
00015
00016
00017
00018
00019
00020
00021 class MEikCommandObserver;
00022
00023
00029 class CExeLauncher_S60Container : public CCoeControl
00030 {
00031 public:
00032
00033 CExeLauncher_S60Container();
00034 static CExeLauncher_S60Container* NewL(
00035 const TRect& aRect,
00036 const CCoeControl* aParent,
00037 MEikCommandObserver* aCommandObserver );
00038 static CExeLauncher_S60Container* NewLC(
00039 const TRect& aRect,
00040 const CCoeControl* aParent,
00041 MEikCommandObserver* aCommandObserver );
00042 void ConstructL(
00043 const TRect& aRect,
00044 const CCoeControl* aParent,
00045 MEikCommandObserver* aCommandObserver );
00046 virtual ~CExeLauncher_S60Container();
00047
00048 public:
00049
00050 TInt CountComponentControls() const;
00051 CCoeControl* ComponentControl( TInt aIndex ) const;
00052 TKeyResponse OfferKeyEventL(
00053 const TKeyEvent& aKeyEvent,
00054 TEventCode aType );
00055 void HandleResourceChange( TInt aType );
00056
00057 protected:
00058
00059 void SizeChanged();
00060
00061 private:
00062
00063 void Draw( const TRect& aRect ) const;
00064
00065 private:
00066 void InitializeControlsL();
00067 void LayoutControls();
00068 CCoeControl* iFocusControl;
00069 MEikCommandObserver* iCommandObserver;
00070
00071 public:
00072
00073
00074
00075 public:
00076
00077
00078
00079 private:
00080
00081
00082
00083
00084 protected:
00085
00086
00087
00088
00089 protected:
00090
00091
00092 public:
00093 enum TControls
00094 {
00095
00096
00097
00098
00099
00100
00101 ELastControl
00102 };
00103 };
00104
00105 #endif // EXELAUNCHER_S60CONTAINER_H