Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Multi QSO Upload #465

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions QLog.pro
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,8 @@ SOURCES += \
ui/SwitchButton.cpp \
ui/WebEnginePage.cpp \
ui/WsjtxFilterDialog.cpp \
ui/WsjtxWidget.cpp
ui/WsjtxWidget.cpp \
ui/multiqsoupload.cpp

HEADERS += \
core/AlertEvaluator.h \
Expand Down Expand Up @@ -309,7 +310,8 @@ HEADERS += \
ui/WsjtxFilterDialog.h \
ui/WsjtxWidget.h \
i18n/dbstrings.tri \
i18n/datastrings.tri
i18n/datastrings.tri \
ui/multiqsoupload.h

FORMS += \
ui/AlertRuleDetail.ui \
Expand Down Expand Up @@ -352,7 +354,8 @@ FORMS += \
ui/ShowUploadDialog.ui \
ui/StatisticsWidget.ui \
ui/WsjtxFilterDialog.ui \
ui/WsjtxWidget.ui
ui/WsjtxWidget.ui \
ui/multiqsoupload.ui

RESOURCES += \
i18n/i18n.qrc \
Expand Down
12 changes: 12 additions & 0 deletions ui/MainWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
#include "ui/ClublogDialog.h"
#include "ui/QrzDialog.h"
#include "ui/AwardsDialog.h"
#include "ui/multiqsoupload.h"
#include "core/Lotw.h"
#include "core/Eqsl.h"
#include "core/QRZ.h"
Expand Down Expand Up @@ -971,6 +972,17 @@ void MainWindow::showLotw()
}
}

void MainWindow::showMultiQSOUpload()
{
FCT_IDENTIFICATION;


MultiQSOUpload dialog;
dialog.exec();
ui->logbookWidget->updateTable();

}

void MainWindow::showeQSL()
{
FCT_IDENTIFICATION;
Expand Down
1 change: 1 addition & 0 deletions ui/MainWindow.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ private slots:
void importLog();
void exportLog();
void showLotw();
void showMultiQSOUpload();
void showeQSL();
void showClublog();
void showHRDLog();
Expand Down
Loading
Loading