mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
77 lines
2.1 KiB
C++
77 lines
2.1 KiB
C++
/***************************************************************************
|
|
simsettingsdialog.h
|
|
----------------
|
|
begin : Tue Apr 21 2015
|
|
copyright : (C) 2015 by Vadim Kuznetsov
|
|
email : ra3xdh@gmail.com
|
|
***************************************************************************/
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License as published by *
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
* (at your option) any later version. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
|
|
#ifndef SIMSETTINGSDIALOG_H
|
|
#define SIMSETTINGSDIALOG_H
|
|
|
|
#include <QtGui>
|
|
|
|
class SimSettingsDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
private:
|
|
QLabel *lblXyce;
|
|
QLabel *lblNgspice;
|
|
QLabel *lblSpiceOpus;
|
|
QLabel *lblXycePar;
|
|
QLabel *lblNprocs;
|
|
QLabel *lblQucsator;
|
|
QLabel *lblWorkdir;
|
|
QLabel *lblSimulator;
|
|
QLabel *lblSimParam;
|
|
|
|
QComboBox *cbxSimulator;
|
|
|
|
QLineEdit *edtNgspice;
|
|
QLineEdit *edtSpiceOpus;
|
|
QLineEdit *edtXyce;
|
|
QLineEdit *edtXycePar;
|
|
QLineEdit *edtQucsator;
|
|
QSpinBox *spbNprocs;
|
|
QLineEdit *edtWorkdir;
|
|
QLineEdit *edtSimParam;
|
|
|
|
QPushButton *btnOK;
|
|
QPushButton *btnCancel;
|
|
|
|
QPushButton *btnSetNgspice;
|
|
QPushButton *btnSetSpOpus;
|
|
QPushButton *btnSetXyce;
|
|
QPushButton *btnSetXycePar;
|
|
QPushButton *btnSetQucsator;
|
|
QPushButton *btnSetWorkdir;
|
|
|
|
public:
|
|
explicit SimSettingsDialog(QWidget *parent = 0);
|
|
|
|
|
|
private slots:
|
|
void slotApply();
|
|
void slotCancel();
|
|
void slotSetNgspice();
|
|
void slotSetXyce();
|
|
void slotSetXycePar();
|
|
void slotSetSpiceOpus();
|
|
void slotSetQucsator();
|
|
void slotSetWorkdir();
|
|
|
|
};
|
|
|
|
#endif // SIMSETTINGSDIALOG_H
|