summaryrefslogtreecommitdiffstats
path: root/gui/widgets/ServerStatus.h
diff options
context:
space:
mode:
Diffstat (limited to 'gui/widgets/ServerStatus.h')
-rw-r--r--gui/widgets/ServerStatus.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/gui/widgets/ServerStatus.h b/gui/widgets/ServerStatus.h
new file mode 100644
index 00000000..a116d3d4
--- /dev/null
+++ b/gui/widgets/ServerStatus.h
@@ -0,0 +1,32 @@
+#pragma once
+#include <QWidget>
+#include <memory>
+
+class QToolButton;
+class QHBoxLayout;
+
+class ServerStatus: public QWidget
+{
+ Q_OBJECT
+public:
+ explicit ServerStatus(QWidget *parent = nullptr, Qt::WindowFlags f = 0);
+ virtual ~ServerStatus() {};
+public slots:
+ void updateStatusUI();
+
+ void updateStatusFailedUI();
+
+ void reloadStatus();
+ void StatusChanged();
+
+private: /* methods */
+ clear();
+ addLine();
+ addStatus(QString name, bool online);
+private: /* data */
+ QHBoxLayout * layout = nullptr;
+ QToolButton *m_statusRefresh = nullptr;
+ QPixmap goodIcon;
+ QPixmap badIcon;
+ QTimer statusTimer;
+};