Qucs-GUI  0.0.18
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
newprojdialog.h
Go to the documentation of this file.
1 /***************************************************************************
2  newprojdialog.h - description
3  -------------------
4  begin : Sun Aug 24 2003
5  copyright : (C) 2003 by Michael Margraf
6  email : michael.margraf@alumni.tu-berlin.de
7  ***************************************************************************/
8 
9 /***************************************************************************
10  * *
11  * This program is free software; you can redistribute it and/or modify *
12  * it under the terms of the GNU General Public License as published by *
13  * the Free Software Foundation; either version 2 of the License, or *
14  * (at your option) any later version. *
15  * *
16  ***************************************************************************/
17 
18 #ifndef NEWPROJDIALOG_H
19 #define NEWPROJDIALOG_H
20 
21 #include <QDialog>
22 #include <QGridLayout>
23 
24 class QLineEdit;
25 class QCheckBox;
26 class QPushButton;
27 class QGridLayout;
28 
33 class NewProjDialog : public QDialog {
34  Q_OBJECT
35 public:
36  NewProjDialog(QWidget *parent=0, const char *name=0);
38 
39  QLineEdit *ProjName;
40  QCheckBox *OpenProj;
41 
42 private:
43  QPushButton *ButtonOk, *ButtonCancel;
44  QGridLayout *gbox;
45 };
46 
47 #endif
NewProjDialog(QWidget *parent=0, const char *name=0)
QCheckBox * OpenProj
Definition: newprojdialog.h:40
QPushButton * ButtonCancel
Definition: newprojdialog.h:43
QLineEdit * ProjName
Definition: newprojdialog.h:39
QPushButton * ButtonOk
Definition: newprojdialog.h:43
QGridLayout * gbox
Definition: newprojdialog.h:44