diff options
author | bd <bdunahu@operationnull.com> | 2025-04-18 22:34:46 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-04-18 22:34:46 -0400 |
commit | 80dba1457231afd13a667a85f07c3db74f30aa87 (patch) | |
tree | d252652a4eb006eae6cf73293b0b4b85975c9c60 /gui/gui.cc | |
parent | 1613c52e8e52a5c1a2a8120fcfa7ed3a011fbdf1 (diff) |
Add a status bar
Diffstat (limited to 'gui/gui.cc')
-rw-r--r-- | gui/gui.cc | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -7,6 +7,12 @@ GUI::GUI(QWidget *parent) { ui->setupUi(this); + QLabel* status_label = new QLabel("CONSENSUS: WAITING FOR USER.", this); + QLabel* risc_vector = new QLabel("RISC V[ECTOR], CS535 UMASS AMHERST", this); + status_label->setMinimumWidth(1200); + ui->statusBar->addWidget(status_label); + ui->statusBar->addPermanentWidget(risc_vector); + worker = new Worker(); worker->moveToThread(&workerThread); |