2003-10-15 21:32:36 +00:00
|
|
|
/***************************************************************************
|
2006-03-28 06:10:52 +00:00
|
|
|
settingsdialog.h
|
|
|
|
------------------
|
2003-10-28 11:54:29 +00:00
|
|
|
begin : Mon Oct 20 2003
|
2003-10-15 21:32:36 +00:00
|
|
|
copyright : (C) 2003 by Michael Margraf
|
2004-06-16 17:41:33 +00:00
|
|
|
email : michael.margraf@alumni.tu-berlin.de
|
2003-10-15 21:32:36 +00:00
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
/***************************************************************************
|
|
|
|
* *
|
|
|
|
* 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. *
|
|
|
|
* *
|
|
|
|
***************************************************************************/
|
|
|
|
|
2003-10-28 11:54:29 +00:00
|
|
|
#ifndef SETTINGSDIALOG_H
|
|
|
|
#define SETTINGSDIALOG_H
|
2003-10-15 21:32:36 +00:00
|
|
|
|
2013-06-05 12:32:45 +02:00
|
|
|
#include <QDialog>
|
|
|
|
#include <QVBoxLayout>
|
2023-01-17 13:27:12 +03:00
|
|
|
#include <QRegularExpressionValidator>
|
2003-10-15 21:32:36 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
class Schematic;
|
2004-11-21 17:47:19 +00:00
|
|
|
class QLineEdit;
|
2013-06-05 12:32:45 +02:00
|
|
|
class QTextEdit;
|
2004-11-21 17:47:19 +00:00
|
|
|
class QCheckBox;
|
2006-07-24 06:12:23 +00:00
|
|
|
class QComboBox;
|
2013-06-05 12:32:45 +02:00
|
|
|
class QVBoxLayout;
|
2004-11-21 17:47:19 +00:00
|
|
|
class QRegExpValidator;
|
2016-01-31 22:41:36 +01:00
|
|
|
class QTreeView;
|
|
|
|
class QFileSystemModel;
|
|
|
|
class QModelIndex;
|
2003-10-15 21:32:36 +00:00
|
|
|
|
2003-10-28 11:54:29 +00:00
|
|
|
class SettingsDialog : public QDialog {
|
|
|
|
Q_OBJECT
|
2004-10-31 17:55:57 +00:00
|
|
|
public:
|
2006-03-28 06:10:52 +00:00
|
|
|
SettingsDialog(Schematic*);
|
|
|
|
~SettingsDialog();
|
2003-10-28 11:54:29 +00:00
|
|
|
|
|
|
|
private slots:
|
2016-01-31 22:41:36 +01:00
|
|
|
void slotDataSetBrowse();
|
|
|
|
void slotDataDisplayBrowse();
|
|
|
|
void slotScriptBrowse();
|
2003-10-28 11:54:29 +00:00
|
|
|
void slotOK();
|
|
|
|
void slotApply();
|
2003-10-15 21:32:36 +00:00
|
|
|
|
2003-10-28 11:54:29 +00:00
|
|
|
public:
|
2006-03-28 06:10:52 +00:00
|
|
|
Schematic *Doc;
|
2003-10-15 21:32:36 +00:00
|
|
|
|
2006-07-24 06:12:23 +00:00
|
|
|
QComboBox *Combo_Frame;
|
2013-06-05 12:32:45 +02:00
|
|
|
QTextEdit *Input_Frame0;
|
2006-07-17 06:02:57 +00:00
|
|
|
QLineEdit *Input_Frame1, *Input_Frame2, *Input_Frame3;
|
2011-03-08 19:12:09 +00:00
|
|
|
QLineEdit *Input_DataSet, *Input_DataDisplay, *Input_Script;
|
2003-11-18 15:12:51 +00:00
|
|
|
QLineEdit *Input_GridX, *Input_GridY;
|
2011-03-08 19:12:09 +00:00
|
|
|
QCheckBox *Check_OpenDpl, *Check_GridOn, *Check_RunScript;
|
2004-11-21 17:47:19 +00:00
|
|
|
|
2013-06-05 12:32:45 +02:00
|
|
|
QVBoxLayout *all;
|
2023-01-17 13:27:12 +03:00
|
|
|
QRegularExpressionValidator *valExpr;
|
2003-10-15 21:32:36 +00:00
|
|
|
};
|
|
|
|
|
2016-01-31 22:41:36 +01:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
|
2003-10-15 21:32:36 +00:00
|
|
|
#endif
|