-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainwindow.cpp
35 lines (29 loc) · 869 Bytes
/
mainwindow.cpp
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
#include "mainwindow.h"
#include <QDebug>
#include "ui_mainwindow.h"
MainWindow::MainWindow(OLAWorker *worker, QWidget *parent)
: QMainWindow(parent),
worker_(worker),
ui(new Ui::MainWindow),
timer_(this) {
ui->setupUi(this);
ui->sourceTreeView->setModel(&model_);
QObject::connect(
worker,
SIGNAL(E131SourceList(const QVector<E131Source>&)),
this,
SLOT(E131SourceList(const QVector<E131Source>&)),
Qt::BlockingQueuedConnection);
connect(&timer_, SIGNAL(timeout()), this, SLOT(RefreshSourceList()));
timer_.start(1000);
}
MainWindow::~MainWindow() {
delete ui;
}
void MainWindow::E131SourceList(const QVector<E131Source> &sources) {
model_.UpdateModel(sources);
}
void MainWindow::RefreshSourceList() {
worker_->RefreshDiscoveredE131Sources();
ui->sourceTreeView->resizeColumnToContents(0);
}