stifui/qt/inc/dlgsetting.h
changeset 38 aca9d8bb5fbc
parent 31 e7a04a6385be
child 39 a5449825eaf3
--- a/stifui/qt/inc/dlgsetting.h	Thu Jun 24 14:55:55 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,60 +0,0 @@
-/*
-* 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;
-class QLabel;
-class QLineEdit;
-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;
-    QLabel* lblFilter;
-    QLineEdit* ledFilter;
-    QCheckBox* chkFilterCaseSens;
-    
-private slots:
-    void on_btnOk_clicked();
-    void on_btnCancel_clicked();
-    
-private:
-    UiSetting* setting;
-    
-    };
-
-#endif /* DLGSETTING_H_ */
-
-// End of File