Qucs-GUI
0.0.19
|
00001 /*************************************************************************** 00002 newprojdialog.h - description 00003 ------------------- 00004 begin : Sun Aug 24 2003 00005 copyright : (C) 2003 by Michael Margraf 00006 email : michael.margraf@alumni.tu-berlin.de 00007 ***************************************************************************/ 00008 00009 /*************************************************************************** 00010 * * 00011 * This program is free software; you can redistribute it and/or modify * 00012 * it under the terms of the GNU General Public License as published by * 00013 * the Free Software Foundation; either version 2 of the License, or * 00014 * (at your option) any later version. * 00015 * * 00016 ***************************************************************************/ 00017 00018 #ifndef NEWPROJDIALOG_H 00019 #define NEWPROJDIALOG_H 00020 00021 #include <QDialog> 00022 #include <QGridLayout> 00023 00024 class QLineEdit; 00025 class QCheckBox; 00026 class QPushButton; 00027 class QGridLayout; 00028 00033 class NewProjDialog : public QDialog { 00034 Q_OBJECT 00035 public: 00036 NewProjDialog(QWidget *parent=0, const char *name=0); 00037 ~NewProjDialog(); 00038 00039 QLineEdit *ProjName; 00040 QCheckBox *OpenProj; 00041 00042 private: 00043 QPushButton *ButtonOk, *ButtonCancel; 00044 QGridLayout *gbox; 00045 }; 00046 00047 #endif