clock/ftudatetimewizard/inc/ftudatetimewizard.h
changeset 45 b6db4fd4947b
parent 23 fd30d51f876b
child 46 ecd7b9840282
equal deleted inserted replaced
23:fd30d51f876b 45:b6db4fd4947b
     1 /*
       
     2  * Copyright (c) 2009 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: Implementation of the plugin wizard class FtuDateTimeWizard
       
    15  *
       
    16  */
       
    17 
       
    18 #ifndef FTUDATETIMEWIZARD_H
       
    19 #define FTUDATETIMEWIZARD_H
       
    20 
       
    21 // System includes
       
    22 #include <QPointer>
       
    23 #include <QDate>
       
    24 
       
    25 // User includes
       
    26 #include "ftuwizard.h"
       
    27 
       
    28 // Forward declarations
       
    29 class FtuDateTimeView;
       
    30 
       
    31 class FtuDateTimeWizard : public FtuWizard
       
    32 {
       
    33 	Q_OBJECT
       
    34 
       
    35 public:
       
    36 	FtuDateTimeWizard();
       
    37 	~FtuDateTimeWizard();
       
    38 
       
    39 protected:
       
    40 	void initializeWizard(qint32 cenrepOwnerId, int wizardIdx);
       
    41 	void activateWizard();
       
    42 	void deactivateWizard();
       
    43 	bool shutdownWizard(ShutdownReason reason);
       
    44 	void resizeWizard(const QRectF& geometry);
       
    45 	const FtuWizardSetting& wizardSettings();
       
    46 	bool handleBackEvent();
       
    47 	QDate wizardCompletedDate();
       
    48 
       
    49 private:
       
    50 	QPointer<FtuDateTimeView> mFtuDateTimeView;
       
    51 	FtuWizardSetting mWizardSettings;
       
    52 };
       
    53 
       
    54 #endif // FTUDATETIMEWIZARD_H
       
    55 
       
    56 // End of file  --Don't remove this.