Qucs-GUI
0.0.19
|
00001 /*************************************************************************** 00002 vasettingsdialog.h 00003 -------------------- 00004 begin : Sun Oct 26 2009 00005 copyright : (C) 2009 by Stefan Jahn 00006 email : stefa@lkcc.org 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 VASETTINGSDIALOG_H 00019 #define VASETTINGSDIALOG_H 00020 00021 #include <QDialog> 00022 #include <QRegExp> 00023 #include <QLabel> 00024 00025 class TextDoc; 00026 class QLineEdit; 00027 class QPushButton; 00028 class QRegExpValidator; 00029 class QLabel; 00030 class QCheckBox; 00031 class QButtonGroup; 00032 class QVBoxLayout; 00033 00034 class VASettingsDialog : public QDialog { 00035 Q_OBJECT 00036 public: 00037 VASettingsDialog (TextDoc *); 00038 ~VASettingsDialog (); 00039 00040 QLineEdit * IconEdit, * OutputEdit, * NameEdit, * ShortDescEdit, 00041 * LongDescEdit; 00042 QPushButton * BrowseButt; 00043 QLabel * IconButt; 00044 QCheckBox * RecreateCheck; 00045 QButtonGroup * toggleGroupDev, * toggleGroupTyp; 00046 00047 private slots: 00048 void slotOk (); 00049 void slotBrowse (); 00050 00051 private: 00052 TextDoc * Doc; 00053 QRegExp Expr; 00054 QRegExpValidator * Validator; 00055 QVBoxLayout *vLayout; 00056 }; 00057 00058 #endif