cl2appcontainer.cpp

Go to the documentation of this file.
00001 #include <eiklabel.h>
00002 #include "cl2appcontainer.h"
00003 
00004 void CCl2appContainer::ConstructL(const TRect& aRect)
00005 {
00006   CreateWindowL();
00007   SetRect(aRect);
00008   ActivateL();
00009 }
00010 
00011 CCl2appContainer::~CCl2appContainer()
00012 {
00013 }
00014 
00015 void CCl2appContainer::SizeChanged()
00016 {
00017 }
00018 
00019 TInt CCl2appContainer::CountComponentControls() const
00020 {
00021   return 0;
00022 }
00023 
00024 CCoeControl* CCl2appContainer::ComponentControl(TInt aIndex) const
00025 {
00026   switch (aIndex)
00027     {
00028     default:
00029       return NULL;
00030     }
00031 }
00032 
00033 void CCl2appContainer::Draw(const TRect& aRect) const
00034 {
00035   CWindowGc& gc = SystemGc();
00036   gc.SetPenStyle(CGraphicsContext::ENullPen);
00037   gc.SetBrushColor(KRgbWhite);
00038   gc.SetBrushStyle(CGraphicsContext::ESolidBrush);
00039   gc.DrawRect(aRect);
00040 }
00041 
00042 void CCl2appContainer::HandleControlEventL
00043 (CCoeControl* /*aControl*/, TCoeEvent /*aEventType*/)
00044 {
00045 }

ContextLogger2—ContextLogger2 Logger Daemon Internals—Generated on Mon May 2 13:49:52 2011 by Doxygen 1.6.1