#include "connection_indicator.h" #include static const int SIZE = 20; static const QString greenSS = QString("color: white;border-radius: %1;background-color: qlineargradient(spread:pad, x1:0.145, y1:0.16, x2:1, y2:1, stop:0 rgba(20, 252, 7, 255), stop:1 rgba(25, 134, 5, 255));").arg(SIZE/2); static const QString redSS = QString("color: white;border-radius: %1;background-color: qlineargradient(spread:pad, x1:0.145, y1:0.16, x2:0.92, y2:0.988636, stop:0 rgba(255, 12, 12, 255), stop:0.869347 rgba(103, 0, 0, 255));").arg(SIZE/2); static const QString orangeSS = QString("color: white;border-radius: %1;background-color: qlineargradient(spread:pad, x1:0.232, y1:0.272, x2:0.98, y2:0.959773, stop:0 rgba(255, 113, 4, 255), stop:1 rgba(91, 41, 7, 255))").arg(SIZE/2); static const QString blueSS = QString("color: white;border-radius: %1;background-color: qlineargradient(spread:pad, x1:0.04, y1:0.0565909, x2:0.799, y2:0.795, stop:0 rgba(203, 220, 255, 255), stop:0.41206 rgba(0, 115, 255, 255), stop:1 rgba(0, 49, 109, 255));").arg(SIZE/2); ConnectionIndicator::ConnectionIndicator(QWidget *parent) : QLabel(parent) { //Set to ok by default setState(StateDisconnected); setFixedSize(SIZE, SIZE); } void ConnectionIndicator::setState(State state) { qDebug() << "setState" << state; switch(state){ case StateConnected: setStyleSheet(greenSS); break; case StateWarning: setStyleSheet(orangeSS); break; case StateDisconnected: setStyleSheet(redSS); break; case StateOkBlue: default: setStyleSheet(blueSS); break; } } void ConnectionIndicator::setState(bool state) { setState(state ? StateConnected : StateDisconnected); }