Qucs-GUI
0.0.19
|
00001 /*************************************************************************** 00002 markerdialog.h 00003 ---------------- 00004 begin : Wed April 21 2004 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 MARKERDIALOG_H 00019 #define MARKERDIALOG_H 00020 #include "marker.h" 00021 #include <QDialog> 00022 00023 class QLineEdit; 00024 class QComboBox; 00025 class QCheckBox; 00026 00027 class MarkerDialog : public QDialog { 00028 Q_OBJECT 00029 public: 00030 MarkerDialog(Marker *pm_, QWidget *parent=0); 00031 ~MarkerDialog(); 00032 00033 private slots: 00034 void slotAcceptValues(); 00035 00036 public: 00037 Marker *pMarker; 00038 00039 QComboBox *NumberBox; 00040 QLineEdit *Precision; 00041 QLineEdit *SourceImpedance; 00042 QCheckBox *TransBox; 00043 }; 00044 00045 #endif