aboutsummaryrefslogtreecommitdiff
path: root/client/mainwindow.h
diff options
context:
space:
mode:
Diffstat (limited to 'client/mainwindow.h')
-rw-r--r--client/mainwindow.h20
1 files changed, 15 insertions, 5 deletions
diff --git a/client/mainwindow.h b/client/mainwindow.h
index 1e73657..25e22ec 100644
--- a/client/mainwindow.h
+++ b/client/mainwindow.h
@@ -8,6 +8,10 @@
#include <QMessageBox>
#include <QtSql>
#include <QSqlDatabase>
+#include <QtCharts>
+#include <QWidget>
+#include <QWidgetSet>
+
#include "main.h"
@@ -23,20 +27,26 @@ public:
MainWindow(QWidget *parent = nullptr);
~MainWindow();
+ virtual void drawGraph();
+
private slots:
- void on_actionAbout_triggered();
+// void on_actionAbout_triggered();
- void on_pushButton_clicked();
+// void on_pushButton_clicked();
void on_actionConnection_triggered();
+ void on_actionRefresh_triggered();
+
+ void on_actionDisconnenct_triggered();
+
private:
Ui::MainWindow *ui;
dbConnector *_dbConenctor;
-// QSqlDatabase db;
- QSqlQueryModel *pQueryModel;
+ QChart *_pChart;
+// QLineSeries *_pSeries;
+ QChartView *_pChartView;
-// Database database;
};