-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainwindow.cpp
102 lines (83 loc) · 3.3 KB
/
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
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
#include "mainwindow.h"
#include "ui_mainwindow.h"
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
// Prepare Lookup class object
lookup = new Lookup(this);
// Load data file
if (!lookup->loadFile()) {
QMessageBox::critical(this, tr("ITU prefix lookup"),
tr("Could not open prefixlist.csv\n"
"Did you run update.py script?"),
QMessageBox::Ok);
QTimer::singleShot(0, this, SLOT(close()));
}
// QTableWidget first two columns fixed width
ui->tblResults->setColumnWidth(0, 50);
ui->tblResults->setColumnWidth(1, 50);
// QTableWidget last column auto-resizing
ui->tblResults->horizontalHeader()->setStretchLastSection(true);
// QTableWidget disabled editing
ui->tblResults->setEditTriggers(QAbstractItemView::NoEditTriggers);
ui->tblResults->setSelectionMode(QAbstractItemView::SingleSelection);
ui->tblResults->setSelectionBehavior(QAbstractItemView::SelectRows);
// Connect search box signals
connect(ui->edQuery, SIGNAL(textChanged(QString)), this, SLOT(doSearch()));
// Connect menu signals
connect(ui->actionAbout_author, SIGNAL(triggered(bool)), this, SLOT(showAboutAuthor()));
connect(ui->actionAbout_Qt, SIGNAL(triggered(bool)), this, SLOT(showAboutQt()));
connect(ui->actionExit, SIGNAL(triggered(bool)), this, SLOT(close()));
}
MainWindow::~MainWindow()
{
delete lookup;
delete ui;
}
void MainWindow::doSearch() {
// Get text to search
QString query = ui->edQuery->text();
// Clear table for results
ui->tblResults->clearContents();
ui->tblResults->setRowCount(0);
// Return if search should't executed
if (query.isEmpty())
return;
// Allocate memory for search result
TEntriesList result;
// Selecting proper function
if (ui->cbSearchType->currentIndex() == 0) {
// Search by callsign
result = lookup->searchByCallsign(query);
} else {
// Search by country
result = lookup->searchByCountry(query);
}
// Fill table
for (auto it = result.begin(); it != result.end(); it++) {
// Get current row count
int row = ui->tblResults->rowCount();
// Insert new row on end
ui->tblResults->insertRow(row);
// Set values on newly added row
ui->tblResults->setItem(row, 0, new QTableWidgetItem(it->first.first));
ui->tblResults->setItem(row, 1, new QTableWidgetItem(it->first.second));
ui->tblResults->setItem(row, 2, new QTableWidgetItem(it->second));
}
}
void MainWindow::showAboutAuthor() {
QMessageBox aboutBox(this);
aboutBox.setWindowTitle(tr("About this application"));
aboutBox.setTextFormat(Qt::RichText);
aboutBox.setText(tr("A simple application that checks the caller's country.<br /><br />"
"Author: Jan \"SP2ASO\" Szenborn<br />"
"<a href='http://sp2aso.pl'>http://sp2aso.pl</a><br /><br />"
"Licensed under LGPLv3, source on<br />"
"<a href='http://github.com/aso824/ituprefix'>github.com/aso824/ituprefix</a>"));
aboutBox.exec();
}
void MainWindow::showAboutQt() {
QApplication::aboutQt();
}