qucs_s/qucs/diagrams/diagramdialog.h

137 lines
3.9 KiB
C
Raw Normal View History

2003-10-16 14:02:09 +00:00
/***************************************************************************
2005-06-06 06:29:49 +00:00
diagramdialog.h
-----------------
2003-10-16 14:02:09 +00:00
begin : Sun Oct 5 2003
copyright : (C) 2003 by Michael Margraf
2004-06-16 17:41:33 +00:00
email : michael.margraf@alumni.tu-berlin.de
2003-10-16 14:02:09 +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. *
* *
***************************************************************************/
#ifndef DIAGRAMDIALOG_H
#define DIAGRAMDIALOG_H
#include "diagram.h"
2006-04-05 08:34:45 +00:00
#include "node.h"
/*#ifndef pi
2015-01-20 16:09:41 +01:00
#define pi 3.1415926535897932384626433832795029
#endif*/
2003-10-16 14:02:09 +00:00
#include <QDialog>
2023-01-17 13:27:12 +03:00
#include <QRegularExpression>
#include <QRegularExpressionValidator>
#include "qt3_compat/qt_compat.h"
2003-10-16 14:02:09 +00:00
2014-10-30 04:02:48 +08:00
class QVBoxLayout;
2005-06-23 06:06:40 +00:00
class Cross3D;
2004-11-21 17:47:19 +00:00
class QLabel;
class QLineEdit;
class QCheckBox;
class QComboBox;
class QDoubleValidator;
2005-03-22 18:39:40 +00:00
class QIntValidator;
2005-04-19 06:33:22 +00:00
class QRegExpValidator;
2005-03-22 18:39:40 +00:00
class QSlider;
class QTableWidgetItem;
class QListWidgetItem;
class QTableWidget;
class QListWidget;
2003-10-16 14:02:09 +00:00
class DiagramDialog : public QDialog {
Q_OBJECT
2004-11-21 17:47:19 +00:00
public:
DiagramDialog(Diagram *d, QWidget *parent=0,
2005-06-06 06:29:49 +00:00
Graph *currentGraph=0);
2004-06-16 17:41:33 +00:00
~DiagramDialog();
bool loadVarData(const QString&);
2004-08-14 06:40:55 +00:00
void copyDiagramGraphs();
2003-10-16 14:02:09 +00:00
2005-03-22 18:39:40 +00:00
private slots:
2004-06-16 17:41:33 +00:00
void slotReadVars(int);
void slotReadVarsAndSetSimulator(int);
void slotTakeVar(QTableWidgetItem *item);
2003-11-27 13:34:25 +00:00
// void slotSelectGraph(int index);
void slotSelectGraph(QListWidgetItem*);
2003-10-16 14:02:09 +00:00
void slotNewGraph();
void slotDeleteGraph();
void slotOK();
void slotApply();
2004-08-14 06:40:55 +00:00
void slotCancel();
2003-11-27 13:34:25 +00:00
void slotSetColor();
2004-06-21 08:22:13 +00:00
void slotSetGridColor();
2003-11-27 13:34:25 +00:00
void slotResetToTake(const QString&);
2004-06-16 17:41:33 +00:00
void slotSetProp2(const QString&);
void slotSetNumMode(int);
2004-06-21 08:22:13 +00:00
void slotSetGridBox(int);
void slotSetGraphStyle(int);
2004-11-06 16:29:51 +00:00
void slotSetYAxis(int);
2004-11-21 17:47:19 +00:00
void slotManualX(int);
void slotManualY(int);
void slotManualZ(int);
2004-11-28 18:29:33 +00:00
void slotChangeTab(QWidget*);
2003-10-16 14:02:09 +00:00
2005-03-22 18:39:40 +00:00
void slotNewRotX(int);
void slotNewRotY(int);
void slotNewRotZ(int);
void slotEditRotX(const QString&);
void slotEditRotY(const QString&);
void slotEditRotZ(const QString&);
void slotRecalcDbLimitsY();
void slotRecalcDbLimitsZ();
2005-03-22 18:39:40 +00:00
void slotPlotVs(int);
2005-06-06 06:29:49 +00:00
protected slots:
void reject();
private:
void SelectGraph(Graph*);
void updateXVar();
2005-06-06 06:29:49 +00:00
2003-10-16 14:02:09 +00:00
Diagram *Diag;
2003-11-03 10:27:28 +00:00
QString defaultDataSet;
2004-06-21 08:22:13 +00:00
2023-01-17 13:27:12 +03:00
QRegularExpression Expr;
2004-11-21 17:47:19 +00:00
QDoubleValidator *ValDouble;
2005-04-19 06:33:22 +00:00
QIntValidator *ValInteger;
2023-01-17 13:27:12 +03:00
QRegularExpressionValidator *Validator;
2004-11-21 17:47:19 +00:00
QLabel *lblSim;
QLabel *lblPlotVs;
2003-10-16 14:02:09 +00:00
QComboBox *ChooseData;
QComboBox *ChooseSimulator;
QComboBox *ChooseXVar;
QComboBox *LogUnitsY;
QComboBox *LogUnitsZ;
QTableWidget *ChooseVars;
QListWidget *GraphList;
2003-10-16 14:02:09 +00:00
QVBoxLayout *all; // the mother of all widgets
2004-11-06 16:29:51 +00:00
QLineEdit *GraphInput, *Property2, *xLabel, *ylLabel, *yrLabel;
2004-11-28 18:29:33 +00:00
QCheckBox *GridOn, *GridLogX, *GridLogY, *GridLogZ;
2005-10-24 06:10:35 +00:00
QCheckBox *manualX, *manualY, *manualZ, *hideInvisible;
2004-11-11 18:32:34 +00:00
QLineEdit *startX, *stepX, *stopX;
QLineEdit *startY, *stepY, *stopY;
QLineEdit *startZ, *stepZ, *stopZ;
2005-03-22 18:39:40 +00:00
QLineEdit *rotationX, *rotationY, *rotationZ;
QLabel *GridLabel1, *GridLabel2, *Label1, *Label2, *Label3, *Label4,
*NotationLabel;
QComboBox *PropertyBox, *GridStyleBox, *yAxisBox, *NotationBox;
2004-06-21 08:22:13 +00:00
QPushButton *ColorButt, *GridColorButt;
2005-03-22 18:39:40 +00:00
QSlider *SliderRotX, *SliderRotY, *SliderRotZ;
2005-06-23 06:06:40 +00:00
Cross3D *DiagCross;
2005-04-26 06:25:18 +00:00
bool changed, transfer, toTake;
Q3PtrList<Graph> Graphs;
2003-10-16 14:02:09 +00:00
};
#endif