summaryrefslogtreecommitdiff
path: root/src/statusbar.cpp
blob: a34500b09d5867475e584fef912bce0fb02b4e80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#include "statusbar.h"
#include "nexusinterface.h"
#include "settings.h"

StatusBar::StatusBar(QStatusBar* bar, QAction* notifications) :
  m_bar(bar), m_progress(new QProgressBar), m_notifications(new QToolButton),
  m_api(new QLabel)
{
  m_bar->addPermanentWidget(m_progress);
  m_bar->addPermanentWidget(m_notifications);
  m_bar->addPermanentWidget(m_api);

  m_progress->setTextVisible(true);
  m_progress->setRange(0, 100);
  m_progress->setMaximumWidth(100);

  m_notifications->setDefaultAction(notifications);
  m_notifications->setAutoRaise(true);

  m_api->setObjectName("apistats");
  m_api->setStyleSheet("QLabel{ padding-left: 0.1em; padding-right: 0.1em; }");

  m_bar->clearMessage();
  setProgress(-1);
  updateAPI({}, {});
}

void StatusBar::setProgress(int percent)
{
  if (percent < 0 || percent >= 100) {
    m_progress->setVisible(false);
  } else if (!m_progress->isVisible()) {
    m_progress->setVisible(true);
    m_progress->setValue(percent);
  }
}

void StatusBar::setHasNotifications(bool b)
{
  m_notifications->setVisible(b);
}

void StatusBar::updateAPI(const APIStats& stats, const APIUserAccount& user)
{
  m_api->setText(
    QString("API: Q: %1 | D: %2 | H: %3")
    .arg(stats.requestsQueued)
    .arg(user.limits().remainingDailyRequests)
    .arg(user.limits().remainingHourlyRequests));

  QColor textColor;
  QColor backgroundColor;

  if (user.type() == APIUserAccountTypes::None) {
    backgroundColor = Qt::transparent;
  } else if (user.remainingRequests() > 300) {
    textColor = "white";
    backgroundColor = Qt::darkGreen;
  } else if (user.remainingRequests() < 150) {
    textColor = "white";
    backgroundColor = Qt::darkRed;
  } else {
    textColor = "black";
    backgroundColor = Qt::darkYellow;
  }

  QPalette palette = m_api->palette();

  palette.setColor(QPalette::WindowText, textColor);
  palette.setColor(QPalette::Background, backgroundColor);

  m_api->setPalette(palette);
  m_api->setAutoFillBackground(true);
}

void StatusBar::checkSettings(const Settings& settings)
{
  m_api->setVisible(!settings.hideAPICounter());
}