mirror of
https://github.com/jankae/LibreVNA.git
synced 2026-04-05 22:45:23 +00:00
PC Application: partial firmware update dialog
This commit is contained in:
parent
8c8749accd
commit
07ba714f1f
134 changed files with 13954 additions and 7 deletions
61
Software/PC_Application/Device/devicelog.cpp
Normal file
61
Software/PC_Application/Device/devicelog.cpp
Normal file
|
|
@ -0,0 +1,61 @@
|
|||
#include "devicelog.h"
|
||||
#include "ui_devicelog.h"
|
||||
#include <QScrollBar>
|
||||
#include <QFileDialog>
|
||||
#include <fstream>
|
||||
|
||||
using namespace std;
|
||||
|
||||
DeviceLog::DeviceLog(QWidget *parent) :
|
||||
QWidget(parent),
|
||||
ui(new Ui::DeviceLog)
|
||||
{
|
||||
ui->setupUi(this);
|
||||
connect(ui->bClear, &QPushButton::clicked, this, &DeviceLog::clear);
|
||||
}
|
||||
|
||||
DeviceLog::~DeviceLog()
|
||||
{
|
||||
delete ui;
|
||||
}
|
||||
|
||||
void DeviceLog::addLine(QString line)
|
||||
{
|
||||
// Set color depending on log level
|
||||
QColor color = Qt::black;
|
||||
if(line.contains(",CRT]")) {
|
||||
color = Qt::red;
|
||||
} else if(line.contains(",ERR]")) {
|
||||
color = QColor("orange");
|
||||
} else if(line.contains(",WRN]")) {
|
||||
color = Qt::darkYellow;
|
||||
} else if(line.contains(",DBG")) {
|
||||
color = Qt::gray;
|
||||
}
|
||||
QTextCharFormat tf;
|
||||
tf = ui->text->currentCharFormat();
|
||||
tf.setForeground(QBrush(color));
|
||||
ui->text->setCurrentCharFormat(tf);
|
||||
ui->text->appendPlainText(line);
|
||||
if(ui->cbAutoscroll->isChecked()) {
|
||||
QScrollBar *sb = ui->text->verticalScrollBar();
|
||||
sb->setValue(sb->maximum());
|
||||
}
|
||||
}
|
||||
|
||||
void DeviceLog::clear()
|
||||
{
|
||||
ui->text->clear();
|
||||
}
|
||||
|
||||
void DeviceLog::on_bToFile_clicked()
|
||||
{
|
||||
auto filename = QFileDialog::getSaveFileName(this, "Select file for device log", "", "", nullptr, QFileDialog::DontUseNativeDialog);
|
||||
if(filename.length() > 0) {
|
||||
// create file
|
||||
ofstream file;
|
||||
file.open(filename.toStdString());
|
||||
file << ui->text->toPlainText().toStdString();
|
||||
file.close();
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue