examples/Graphics/coverflow/src/coverflowappview.cpp

00001 /*
00002 * ==============================================================================
00003 *  Name        : Coverflowappview.cpp
00004 *  Part of     : CoverflowApp
00005 *  Interface   :
00006 *  Description :
00007 *  Version     :
00008 *
00009 *  Copyright (c) 2005-2006 Nokia Corporation.
00010 *  This material, including documentation and any related
00011 *  computer programs, is protected by copyright controlled by
00012 *  Nokia Corporation.
00013 * ==============================================================================
00014 */
00015 
00016 // INCLUDE FILES
00017 #include <coemain.h>
00018 #include <aknutils.h>
00019 #include "CoverflowAppView.h"
00020 
00021 // -----------------------------------------------------------------------------
00022 // CCoverflowAppView::ConstructL()
00023 // Symbian 2nd phase constructor can leave.
00024 // -----------------------------------------------------------------------------
00025 //
00026 void CCoverflowAppView::ConstructL( const TRect& aRect )
00027     {
00028     CreateWindowL();
00029     EnableDragEvents();
00030     SetExtentToWholeScreen();
00031     //Window().SetBackgroundColor();
00032     }
00033 
00034 // -----------------------------------------------------------------------------
00035 // CCoverflowAppView::CCoverflowAppView()
00036 // C++ default constructor can NOT contain any code, that might leave.
00037 // -----------------------------------------------------------------------------
00038 //
00039 CCoverflowAppView::CCoverflowAppView(CCoverflowAppUi& aAppUi):
00040 CCoeControl(),
00041 iAppUi(aAppUi)
00042     {
00043     // No implementation required
00044     }
00045 
00046 
00047 // -----------------------------------------------------------------------------
00048 // CCoverflowAppView::~CCoverflowAppView()
00049 // Destructor.
00050 // -----------------------------------------------------------------------------
00051 //
00052 CCoverflowAppView::~CCoverflowAppView()
00053     {
00054     // No implementation required
00055     }
00056 
00057 // End of File
00058 

Generated by  doxygen 1.6.2