jce-manager/src/jceData/Grades/graph/gradegraph.h

34 lines
507 B
C
Raw Normal View History

2014-10-05 11:16:01 +00:00
#ifndef GRADEGRAPH_H
#define GRADEGRAPH_H
#include "./src/jceData/Grades/gradePage.h"
#include "qcustomplot.h"
#include <QDialog>
namespace Ui {
class gradegraph;
}
class gradegraph : public QDialog
{
Q_OBJECT
public:
2014-10-07 21:16:27 +00:00
gradegraph(QWidget *parent = 0);
2014-10-07 14:26:11 +00:00
void showGraph(GradePage *gpPTR);
2014-10-05 11:16:01 +00:00
~gradegraph();
private slots:
void on_pushButton_clicked();
2014-10-05 11:16:01 +00:00
private:
GradePage *gp;
2014-10-07 14:26:11 +00:00
void setVisualization();
void setGraphsData();
2014-10-05 11:16:01 +00:00
Ui::gradegraph *ui;
};
#endif // GRADEGRAPH_H