From a2cbf0f5948c89334511aff60df12f4a77b4bb5e Mon Sep 17 00:00:00 2001 From: daniel-Jones Date: Tue, 16 Aug 2016 08:20:06 +0930 Subject: Many changes to the stat viewer - work on the stat viewer halted for now. I have added CS:GO game integration. You can now view live game information. Uses port 3000 (see the CS:GO wiki for setting up game integration). --- graphical_stats.h | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 graphical_stats.h (limited to 'graphical_stats.h') diff --git a/graphical_stats.h b/graphical_stats.h new file mode 100644 index 0000000..948d8de --- /dev/null +++ b/graphical_stats.h @@ -0,0 +1,33 @@ +#ifndef GRAPHICAL_STATS_H +#define GRAPHICAL_STATS_H +#include +#include +#include +#include +#include +#include + +namespace Ui { +class graphical_stats; +} + +class graphical_stats : public QWidget +{ + Q_OBJECT +protected: + void showEvent(QShowEvent *ev); +signals: + void window_loaded(); +public: + explicit graphical_stats(QWidget *parent = 0); + ~graphical_stats(); + +private: + Ui::graphical_stats *ui; + void weapon_use_graph(); + +private slots: + void window_open(); +}; + +#endif // GRAPHICAL_STATS_H -- cgit v1.2.3