27 lines
604 B
C++
27 lines
604 B
C++
#ifndef DERREP2013QPLOT_H
|
|
#define DERREP2013QPLOT_H
|
|
|
|
#include <QWidget>
|
|
#include <QImage>
|
|
#include <QPainter>
|
|
#include <qmath.h>
|
|
#include <QMouseEvent>
|
|
#include <QVector>
|
|
#include <iostream>
|
|
#include "Kolch_Shind/qcustomplot.h"
|
|
#include <QTime>
|
|
|
|
class DerRep2013QPlot : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit DerRep2013QPlot(QWidget *parent = 0);
|
|
void setGraphics(QCustomPlot *customPlot, int popNum, QString name, QColor &color);
|
|
int randInt(int low, int high);
|
|
|
|
public slots:
|
|
void drawGraphics(QCustomPlot *customPlot);
|
|
};
|
|
|
|
#endif // DERREP2013QPLOT_H
|