mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
80 lines
2.2 KiB
C++
80 lines
2.2 KiB
C++
/***************************************************************************
|
|
settingsdialog.h
|
|
------------------
|
|
begin : Mon Oct 20 2003
|
|
copyright : (C) 2003 by Michael Margraf
|
|
email : michael.margraf@alumni.tu-berlin.de
|
|
***************************************************************************/
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* 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 SETTINGSDIALOG_H
|
|
#define SETTINGSDIALOG_H
|
|
|
|
#include <QDialog>
|
|
#include <QVBoxLayout>
|
|
#include <QRegularExpressionValidator>
|
|
|
|
class Schematic;
|
|
class QLineEdit;
|
|
class QTextEdit;
|
|
class QCheckBox;
|
|
class QComboBox;
|
|
class QVBoxLayout;
|
|
class QRegExpValidator;
|
|
class QTreeView;
|
|
class QFileSystemModel;
|
|
class QModelIndex;
|
|
|
|
class SettingsDialog : public QDialog {
|
|
Q_OBJECT
|
|
public:
|
|
SettingsDialog(Schematic*);
|
|
~SettingsDialog();
|
|
|
|
private slots:
|
|
void slotDataSetBrowse();
|
|
void slotDataDisplayBrowse();
|
|
void slotScriptBrowse();
|
|
void slotOK();
|
|
void slotApply();
|
|
|
|
public:
|
|
Schematic *Doc;
|
|
|
|
QComboBox *Combo_Frame;
|
|
QTextEdit *Input_Frame0;
|
|
QLineEdit *Input_Frame1, *Input_Frame2, *Input_Frame3;
|
|
QLineEdit *Input_DataSet, *Input_DataDisplay, *Input_Script;
|
|
QLineEdit *Input_GridX, *Input_GridY;
|
|
QCheckBox *Check_OpenDpl, *Check_GridOn, *Check_RunScript;
|
|
|
|
QVBoxLayout *all;
|
|
QRegularExpressionValidator *valExpr;
|
|
};
|
|
|
|
class AuxFilesDialog : public QDialog {
|
|
Q_OBJECT
|
|
public:
|
|
AuxFilesDialog(QWidget *, const QString &);
|
|
|
|
QString fileName;
|
|
|
|
private slots:
|
|
void slotSelect();
|
|
void slotDoubleClick(const QModelIndex &);
|
|
|
|
private:
|
|
QFileSystemModel *model;
|
|
QTreeView *tree;
|
|
};
|
|
|
|
#endif
|