Qucs-GUI  0.0.18
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
digisettingsdialog.h
Go to the documentation of this file.
1 /***************************************************************************
2  digisettingsdialog.h
3  ----------------------
4  begin : Sat Apr 01 2006
5  copyright : (C) 2006 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 DIGISETTINGSDIALOG_H
19 #define DIGISETTINGSDIALOG_H
20 
21 #include <QDialog>
22 #include <QRegExp>
23 #include <QLabel>
24 
25 class TextDoc;
26 class QLineEdit;
27 class QPushButton;
28 class QRegExpValidator;
29 class QLabel;
30 class QRadioButton;
31 
32 
33 class DigiSettingsDialog : public QDialog {
34 Q_OBJECT
35 public:
38 
39  QString SimTime;
40  QLineEdit *TimeEdit, *LibEdit, *NameEdit;
42  QRadioButton *simRadio, *comRadio;
43 
44 private slots:
45  void slotOk();
46  void slotChangeMode(int);
47 
48 private:
50  QRegExp Expr;
51  QRegExpValidator *Validator;
52 };
53 
54 #endif
QRegExpValidator * Validator
QRadioButton * comRadio
QRadioButton * simRadio
The TextDoc class definition.
Definition: textdoc.h:49