新增超级曲线图表

This commit is contained in:
feiyangqingyun
2021-12-10 20:34:18 +08:00
parent 1a2302c05d
commit e215d3989b
143 changed files with 120241 additions and 5 deletions

View File

@@ -0,0 +1,39 @@
#ifndef FRMINTERACTION_H
#define FRMINTERACTION_H
#include <QWidget>
#include <QInputDialog>
#include "qcustomplot.h"
namespace Ui {
class frmInterAction;
}
class frmInterAction : public QWidget
{
Q_OBJECT
public:
explicit frmInterAction(QWidget *parent = 0);
~frmInterAction();
private:
Ui::frmInterAction *ui;
private slots:
void initForm();
void titleDoubleClick(QMouseEvent *event);
void axisLabelDoubleClick(QCPAxis* axis, QCPAxis::SelectablePart part);
void legendDoubleClick(QCPLegend* legend, QCPAbstractLegendItem* item);
void selectionChanged();
void mousePress();
void mouseWheel();
void addRandomGraph();
void removeSelectedGraph();
void removeAllGraphs();
void contextMenuRequest(QPoint pos);
void moveLegend();
void graphClicked(QCPAbstractPlottable *plottable, int dataIndex);
};
#endif // FRMINTERACTION_H