calendarui/application/inc/calenapplication.h
changeset 55 2c54b51f39c4
child 57 bb2d3e476f29
equal deleted inserted replaced
51:0b38fc5b94c6 55:2c54b51f39c4
       
     1 /*
       
     2 * Copyright (c) 2010 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: Header file for class CalenApplication.
       
    15 *
       
    16 */
       
    17 
       
    18 // system includes
       
    19 #include <QPointer>
       
    20 #include <HbApplication>
       
    21 
       
    22 // Forward Declarations.
       
    23 class CCalenController;
       
    24 
       
    25 class CalenApplication : public HbApplication
       
    26 {
       
    27 
       
    28 Q_OBJECT
       
    29 
       
    30 public:
       
    31 	CalenApplication(int &argc, char *argv[]);
       
    32 	virtual ~CalenApplication();
       
    33 
       
    34 signals:
       
    35 	void applicationReady();
       
    36 	
       
    37 public:
       
    38 	void createController();
       
    39 	bool execution();
       
    40 	void releaseController();
       
    41 	
       
    42 private slots:
       
    43 	void handleAppReady();
       
    44 	
       
    45 private:
       
    46 	QPointer<CCalenController> mController;
       
    47 };
       
    48 
       
    49 // End of file	--Don't remove this.