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"
|
|
|
|
|
2016-06-20 15:58:00 +03:00
|
|
|
/*#ifndef pi
|
2015-01-20 16:09:41 +01:00
|
|
|
#define pi 3.1415926535897932384626433832795029
|
2016-06-20 15:58:00 +03:00
|
|
|
#endif*/
|
2003-10-16 14:02:09 +00:00
|
|
|
|
2013-11-26 16:06:53 +01:00
|
|
|
#include <QDialog>
|
2023-01-17 13:27:12 +03:00
|
|
|
#include <QRegularExpression>
|
|
|
|
#include <QRegularExpressionValidator>
|
2022-02-13 18:32:19 +01:00
|
|
|
#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;
|
2014-11-04 12:29:06 +08:00
|
|
|
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:
|
2015-05-06 16:31:46 +02:00
|
|
|
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);
|
2016-06-23 17:08:23 +03:00
|
|
|
void slotReadVarsAndSetSimulator(int);
|
2014-03-02 19:14:17 +01:00
|
|
|
void slotTakeVar(QTableWidgetItem *item);
|
2003-11-27 13:34:25 +00:00
|
|
|
// void slotSelectGraph(int index);
|
2014-03-02 18:25:44 +01:00
|
|
|
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&);
|
2022-08-24 18:08:20 +03:00
|
|
|
void slotRecalcDbLimitsY();
|
|
|
|
void slotRecalcDbLimitsZ();
|
2005-03-22 18:39:40 +00:00
|
|
|
|
2015-09-28 16:05:46 +03:00
|
|
|
void slotPlotVs(int);
|
|
|
|
|
2005-06-06 06:29:49 +00:00
|
|
|
protected slots:
|
|
|
|
void reject();
|
|
|
|
|
|
|
|
private:
|
|
|
|
void SelectGraph(Graph*);
|
2015-09-29 12:52:29 +03:00
|
|
|
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
|
|
|
|
2015-04-22 11:25:23 +03:00
|
|
|
QLabel *lblSim;
|
2015-09-27 17:52:40 +03:00
|
|
|
QLabel *lblPlotVs;
|
2003-10-16 14:02:09 +00:00
|
|
|
QComboBox *ChooseData;
|
2015-04-22 11:25:23 +03:00
|
|
|
QComboBox *ChooseSimulator;
|
2015-09-27 17:52:40 +03:00
|
|
|
QComboBox *ChooseXVar;
|
2022-07-12 17:43:44 +03:00
|
|
|
QComboBox *LogUnitsY;
|
|
|
|
QComboBox *LogUnitsZ;
|
2014-03-02 19:14:17 +01:00
|
|
|
QTableWidget *ChooseVars;
|
2014-03-02 18:25:44 +01:00
|
|
|
QListWidget *GraphList;
|
2003-10-16 14:02:09 +00:00
|
|
|
|
2014-03-02 18:25:44 +01: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;
|
2022-07-03 16:00:03 +03:00
|
|
|
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;
|
2012-10-31 09:15:06 +01:00
|
|
|
Q3PtrList<Graph> Graphs;
|
2003-10-16 14:02:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|