jce-manager/src/jceData/Grades/graph/gradegraph.h
Sagi Dayan 791bdcc5af Tweaked the progress bar and added debuging msgs
ProgressBar will be visible only if the value is NOT 0 or NOT 100.
that means, if there is no progress going on, there is no progress bar
visible.
2014-10-07 23:58:09 +03:00

34 lines
529 B
C++

#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:
gradegraph(QWidget *parent = 0, GradePage *gpPTR = 0);
void showGraph(GradePage *gpPTR);
~gradegraph();
private slots:
void on_pushButton_clicked();
private:
GradePage *gp;
void setVisualization();
void setGraphsData();
Ui::gradegraph *ui;
};
#endif // GRADEGRAPH_H