2003-10-15 21:32:36 +00:00
|
|
|
/***************************************************************************
|
2003-10-28 11:54:29 +00:00
|
|
|
settingsdialog.h - description
|
2003-10-15 21:32:36 +00:00
|
|
|
-------------------
|
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>
|
|
|
|
#include <qlineedit.h>
|
2003-11-03 10:27:28 +00:00
|
|
|
#include <qcheckbox.h>
|
2003-11-18 15:12:51 +00:00
|
|
|
#include <qregexp.h>
|
2003-10-15 21:32:36 +00:00
|
|
|
|
2004-10-31 17:55:57 +00:00
|
|
|
class QucsDoc;
|
|
|
|
|
2003-10-15 21:32:36 +00:00
|
|
|
/**
|
|
|
|
*@author Michael Margraf
|
|
|
|
*/
|
|
|
|
|
2003-10-28 11:54:29 +00:00
|
|
|
class SettingsDialog : public QDialog {
|
|
|
|
Q_OBJECT
|
2004-10-31 17:55:57 +00:00
|
|
|
public:
|
2003-10-28 11:54:29 +00:00
|
|
|
SettingsDialog(QucsDoc *d, QWidget *parent=0, const char *name=0);
|
|
|
|
~SettingsDialog();
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void slotOK();
|
|
|
|
void slotApply();
|
2003-10-15 21:32:36 +00:00
|
|
|
|
2003-10-28 11:54:29 +00:00
|
|
|
public:
|
2003-11-18 15:12:51 +00:00
|
|
|
QucsDoc *Doc;
|
2003-10-15 21:32:36 +00:00
|
|
|
|
2003-10-28 11:54:29 +00:00
|
|
|
QLineEdit *Input_DataSet, *Input_DataDisplay;
|
2003-11-18 15:12:51 +00:00
|
|
|
QLineEdit *Input_GridX, *Input_GridY;
|
|
|
|
QCheckBox *Check_OpenDpl, *Check_GridOn;
|
2003-10-15 21:32:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|