Qucs-GUI
0.0.19
|
00001 /*************************************************************************** 00002 settingsdialog.h 00003 ------------------ 00004 begin : Mon Oct 20 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 SETTINGSDIALOG_H 00019 #define SETTINGSDIALOG_H 00020 00021 #include <QDialog> 00022 #include <QVBoxLayout> 00023 00024 class Schematic; 00025 class QLineEdit; 00026 class QTextEdit; 00027 class QCheckBox; 00028 class QComboBox; 00029 class QVBoxLayout; 00030 class QRegExpValidator; 00031 00032 00033 class SettingsDialog : public QDialog { 00034 Q_OBJECT 00035 public: 00036 SettingsDialog(Schematic*); 00037 ~SettingsDialog(); 00038 00039 private slots: 00040 void slotOK(); 00041 void slotApply(); 00042 00043 public: 00044 Schematic *Doc; 00045 00046 QComboBox *Combo_Frame; 00047 QTextEdit *Input_Frame0; 00048 QLineEdit *Input_Frame1, *Input_Frame2, *Input_Frame3; 00049 QLineEdit *Input_DataSet, *Input_DataDisplay, *Input_Script; 00050 QLineEdit *Input_GridX, *Input_GridY; 00051 QCheckBox *Check_OpenDpl, *Check_GridOn, *Check_RunScript; 00052 00053 QVBoxLayout *all; 00054 QRegExpValidator *valExpr; 00055 }; 00056 00057 #endif