stifui/qt/inc/dlgsetting.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Tue, 27 Apr 2010 16:38:40 +0300
branchRCL_3
changeset 14 404ad6c9bc20
child 31 e7a04a6385be
permissions -rw-r--r--
Revision: 201015 Kit: 201017

/*
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description: QT C++ based Class.
*/

#ifndef DLGSETTING_H_
#define DLGSETTING_H_
#include <QDialog>
#include "uisetting.h"


QT_BEGIN_NAMESPACE
class QTabWidget;
class QGridLayout;
class QCheckBox;
class QPushButton;
QT_END_NAMESPACE

class DlgSetting : public QDialog {    
    Q_OBJECT
    
public:
    DlgSetting(UiSetting* settingObj, QWidget *parent = 0);
    
private:
    void SetupUI();
    
private:
    QPushButton* btnOk;
    QPushButton* btnCancel;
    QCheckBox* chkShowoutput;
    
private slots:
    void on_btnOk_clicked();
    void on_btnCancel_clicked();
    
private:
    UiSetting* setting;
    
    };

#endif /* DLGSETTING_H_ */