qucs_s/qucs/dialogs/settingsdialog.h

57 lines
1.7 KiB
C
Raw Normal View History

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
2003-10-28 11:54:29 +00:00
#include <qdialog.h>
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;
2006-07-17 06:02:57 +00:00
class QTextEdit;
2004-11-21 17:47:19 +00:00
class QCheckBox;
2006-07-24 06:12:23 +00:00
class QComboBox;
2004-11-21 17:47:19 +00:00
class QVBoxLayout;
class QRegExpValidator;
2004-10-31 17:55:57 +00:00
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:
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;
2006-07-17 06:02:57 +00:00
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;
2004-11-21 17:47:19 +00:00
QVBoxLayout *all;
QRegExpValidator *valExpr;
2003-10-15 21:32:36 +00:00
};
#endif