340 lines
11 KiB
C++
340 lines
11 KiB
C++
//
|
|
// Created by Krad on 2021/10/8.
|
|
//
|
|
#include "ui_tabformwidget.h"
|
|
#include "SelectFormWidget.h"
|
|
#include <QHBoxLayout>
|
|
#include <QToolButton>
|
|
#include <QTableWidget>
|
|
#include "components/SlideableTableView.h"
|
|
#include <QHeaderView>
|
|
#include <QUuid>
|
|
#include <QDate>
|
|
#include "db/SQLHelper.h"
|
|
#include "editpatientform.h"
|
|
#include "guimacros.h"
|
|
#include "event/EventCenter.h"
|
|
#include "AccountFormDialog.h"
|
|
#include <QDebug>
|
|
#include "log/UserOperationLog.h"
|
|
#include <QSortFilterProxyModel>
|
|
#include "src/components/VerticalTextToolButton.h"
|
|
#include "AlertDialog.h"
|
|
|
|
#include <QScroller>
|
|
|
|
#define ADD_CENTER_ITEM(row,col,text)\
|
|
item = new QTableWidgetItem(text);\
|
|
item->setTextAlignment(Qt::AlignmentFlag::AlignCenter);\
|
|
table->setItem(row,col,item);
|
|
|
|
|
|
int queryValue(QSqlTableModel* model, int colID, QVariant var)
|
|
{
|
|
for (int i = 0; i < model->rowCount(); ++i) {
|
|
if (model->data(model->index(i, colID)) == var) return i;
|
|
}
|
|
return -1;
|
|
}
|
|
|
|
SelectFormWidget::SelectFormWidget(QWidget* parent) :
|
|
TabFormWidget(parent)
|
|
{
|
|
//init command bar
|
|
QHBoxLayout* layout = new QHBoxLayout();
|
|
ui->commandWidget->setLayout(layout);
|
|
ADD_TOOL_BTN(Account, ":/icons/account.png");
|
|
ADD_TOOL_BTN(Worklist, ":/icons/setting.png");
|
|
btnAccount->setText(tr("Account"));
|
|
btnWorklist->setText(tr("Worklist"));
|
|
|
|
layout->addSpacerItem(new QSpacerItem(20, 20, QSizePolicy::Expanding));
|
|
QWidget* spacerLine = new QWidget(this);
|
|
spacerLine->setFixedWidth(2);
|
|
spacerLine->setObjectName("verSpaceLine");
|
|
layout->addWidget(spacerLine);
|
|
ADD_TOOL_BTN(Add, ":/icons/add.png");
|
|
ADD_TOOL_BTN(Edit, ":/icons/details.png");
|
|
ADD_TOOL_BTN(Delete, ":/icons/close_circle.png");
|
|
ADD_TOOL_BTN(Select, ":/icons/selected.png");
|
|
btnAdd->setText(tr("Add"));
|
|
btnEdit->setText(tr("Edit"));
|
|
btnDelete->setText(tr("Delete"));
|
|
btnSelect->setText(tr("Select"));
|
|
|
|
//Init content widget
|
|
QHBoxLayout* contentLayout = new QHBoxLayout();
|
|
contentLayout->setContentsMargins(5, 5, 0, 5);
|
|
this->ui->contentWidget->setLayout(contentLayout);
|
|
// TableView for patient
|
|
SlideableTableView* table = new SlideableTableView(this);
|
|
table->setAlternatingRowColors(true);
|
|
table->setSelectionMode(QAbstractItemView::SingleSelection);
|
|
table->setEditTriggers(QAbstractItemView::NoEditTriggers);
|
|
table->setSelectionBehavior(QAbstractItemView::SelectRows);
|
|
table->verticalHeader()->setDefaultSectionSize(38);
|
|
table->horizontalHeader()->setStretchLastSection(true);
|
|
//data from SQLITE
|
|
//
|
|
//avoid pan comsumed by tableview!
|
|
table->viewport()->ungrabGesture(Qt::PanGesture);
|
|
|
|
auto model = SQLHelper::getTable("Patient");
|
|
model->setFilter("Flag=0");
|
|
model->sort(5, Qt::DescendingOrder);
|
|
model->select();
|
|
model->setHeaderData(1, Qt::Horizontal, "ID");
|
|
model->setHeaderData(2, Qt::Horizontal, tr("Name"));
|
|
model->setHeaderData(3, Qt::Horizontal, tr("Birth Date"));
|
|
model->setHeaderData(4, Qt::Horizontal, tr("Gender"));
|
|
model->setHeaderData(5, Qt::Horizontal, tr("Add Date"));
|
|
model->setHeaderData(6, Qt::Horizontal, tr("Comment"));
|
|
table->setSortingEnabled(true); // enable sortingEnabled
|
|
|
|
table->setModel((QAbstractItemModel*)model);
|
|
table->hideColumn(0);
|
|
table->hideColumn(7);
|
|
table->show();
|
|
|
|
table->setColumnWidth(1, 250);
|
|
table->setColumnWidth(2, 250);
|
|
table->setColumnWidth(3, 160);
|
|
table->setColumnWidth(4, 120);
|
|
table->setColumnWidth(5, 250);
|
|
contentLayout->addWidget(table);
|
|
QWidget* spacerLine2 = new QWidget(this);
|
|
spacerLine2->setFixedWidth(2);
|
|
spacerLine2->setObjectName("verSpaceLine");
|
|
contentLayout->addWidget(spacerLine2);
|
|
// prepare edit panel
|
|
EditPatientForm* edit_patient = new EditPatientForm(this);
|
|
edit_patient->setObjectName("edit_patient");
|
|
edit_patient->hide();
|
|
contentLayout->addWidget(edit_patient);
|
|
auto* btnShowEdit = new VerticalTextToolButton(this);
|
|
btnShowEdit->setObjectName("showeditBtn");
|
|
btnShowEdit->setIcon(QIcon(":/icons/edit.png"));
|
|
btnShowEdit->setIconSize(QSize(30, 30));
|
|
btnShowEdit->setToolButtonStyle(Qt::ToolButtonTextUnderIcon);
|
|
btnShowEdit->setFixedHeight(225);
|
|
btnShowEdit->setVerticalText("Patient Detail");
|
|
contentLayout->addWidget(btnShowEdit);
|
|
contentLayout->setAlignment(btnShowEdit, Qt::AlignmentFlag::AlignTop);
|
|
|
|
// btn show slot
|
|
connect(btnShowEdit, &QToolButton::clicked, [=]() {
|
|
edit_patient->show();
|
|
btnShowEdit->hide();
|
|
});
|
|
//btn hide slot
|
|
connect(edit_patient, &EditPatientForm::hideBtnClicked, [=]() {
|
|
edit_patient->hide();
|
|
btnShowEdit->show();
|
|
});
|
|
|
|
//select default row 0
|
|
if (model->rowCount() > 0)
|
|
{
|
|
table->selectRow(0);
|
|
PatientInformation pat;
|
|
#define ADD_PATIENT_PROPERTY(val)\
|
|
pat. val = model->data(model->index(table->currentIndex().row(),PatientInformationEnum:: val)).toString();
|
|
EDIT_PATIENT()
|
|
#undef ADD_PATIENT_PROPERTY
|
|
edit_patient->setPatientInformation(&pat);
|
|
}
|
|
//events----------------------------------------------------------------------
|
|
//prepare button state
|
|
auto prepareButtons = [=](bool disableALL){
|
|
bool state_flag = (table->currentIndex().row()>=0);
|
|
btnSelect->setEnabled(state_flag && !disableALL);
|
|
btnDelete->setEnabled(state_flag && !disableALL);
|
|
btnEdit->setEnabled(state_flag && !disableALL);
|
|
btnAdd->setEnabled(!disableALL);
|
|
};
|
|
//table current row selection changing event
|
|
connect(table, &SlideableTableView::currentRowChanged, [=](int row) {
|
|
PatientInformation pat;
|
|
#define ADD_PATIENT_PROPERTY(val)\
|
|
pat. val = model->data(model->index(row,PatientInformationEnum:: val)).toString();
|
|
EDIT_PATIENT()
|
|
#undef ADD_PATIENT_PROPERTY
|
|
edit_patient->setPatientInformation(&pat);
|
|
prepareButtons(false);
|
|
});
|
|
|
|
// after sort by column
|
|
connect(table->horizontalHeader(),&QHeaderView::sectionClicked,[=](int index){
|
|
edit_patient->clearPatientInformation();
|
|
prepareButtons(false);
|
|
});
|
|
|
|
// btn add slot
|
|
connect(btnAdd, &QToolButton::clicked, [=]() {
|
|
edit_patient->show();
|
|
btnShowEdit->hide();
|
|
edit_patient->clearPatientInformation();
|
|
edit_patient->setEditEnable(true);
|
|
btnSelect->setEnabled(false);
|
|
});
|
|
|
|
// btn edit slot
|
|
connect(btnEdit, &QToolButton::clicked, [=]() {
|
|
edit_patient->show();
|
|
btnShowEdit->hide();
|
|
table->clicked(table->currentIndex());
|
|
edit_patient->setEditEnable(true);
|
|
btnSelect->setEnabled(false);
|
|
});
|
|
|
|
// btn add slot
|
|
connect(edit_patient, &EditPatientForm::editCancel, [=]() {
|
|
if (table->currentIndex().row()<0) return;
|
|
btnSelect->setEnabled(true);
|
|
});
|
|
|
|
// btn add slot
|
|
connect(edit_patient, &EditPatientForm::editAccept, [=](PatientInformation* inf, bool& result) {
|
|
int selectedRow = table->currentIndex().row();
|
|
bool isAdd = inf->PatientUID.isEmpty();
|
|
if (isAdd) {
|
|
int ref_rowid = queryValue(model, 1, inf->ID);
|
|
if (ref_rowid >= 0)
|
|
{
|
|
//非触屏时,如果被选中的行在选中区域外,以下代码可能会出错
|
|
//但是触屏时一般没问题
|
|
qDebug() << ref_rowid;
|
|
table->scrollTo(model->index(ref_rowid, 3));
|
|
table->selectRow(ref_rowid);
|
|
result = false;
|
|
return;
|
|
}
|
|
selectedRow = model->rowCount();
|
|
inf->PatientUID = QUuid::createUuid().toString();
|
|
inf->AddDate = QDateTime::currentDateTime().toString("yyyy-MM-dd HH:mm:ss");
|
|
model->insertRow(0);
|
|
selectedRow = 0;
|
|
}
|
|
qDebug() << inf->PatientUID << inf->AddDate;
|
|
#define ADD_PATIENT_PROPERTY(val)\
|
|
model->setData(model->index(selectedRow,PatientInformationEnum:: val),inf-> val);
|
|
EDIT_PATIENT()
|
|
#undef ADD_PATIENT_PROPERTY
|
|
if (model->submitAll())
|
|
{
|
|
table->selectRow(selectedRow);
|
|
model->selectRow(selectedRow);
|
|
}
|
|
else {
|
|
//TODO:add some error handle logic
|
|
}
|
|
if (isAdd) {
|
|
LOG_USER_OPERATION(AddPatient);
|
|
}
|
|
else
|
|
{
|
|
LOG_USER_OPERATION(ChangePatientInfo);
|
|
}
|
|
btnSelect->setEnabled(true);
|
|
});
|
|
|
|
// btn delete slot
|
|
connect(btnDelete, &QToolButton::clicked, [=]() {
|
|
if (table->currentIndex().row()<0) return;
|
|
AlertDialog dialog(this);
|
|
dialog.setWindowModality(Qt::WindowModal);
|
|
QString pUid = model->index(table->currentIndex().row(), PatientInformationEnum::PatientUID).data().toString();
|
|
// patient has been selected as the scan patient!
|
|
if (selectedPatientUID == pUid){
|
|
dialog.setButtonMode(OkOnly);
|
|
dialog.setTitle(tr("Alert"));
|
|
dialog.setAlertMessage(QString(tr("Can't delete selected Patient !")));
|
|
dialog.exec();
|
|
return;
|
|
}
|
|
// not the selected one, confirm!
|
|
dialog.setButtonMode(OkAndCancel);
|
|
dialog.setTitle("Confirm");
|
|
QString pat_name = model->index(table->currentIndex().row(), PatientInformationEnum::Name).data().toString();
|
|
dialog.setAlertMessage(QString(tr("Delete Patient \"%1\" ?")).arg(pat_name));
|
|
if (dialog.exec() != QDialog::Accepted) return;
|
|
// need delete clear edit panel detail
|
|
edit_patient->setEditEnable(false);
|
|
edit_patient->clearPatientInformation();
|
|
model->setData(model->index(table->currentIndex().row(), PatientInformationEnum::Flag), 9);
|
|
|
|
if (model->submitAll()) {
|
|
model->select();
|
|
if (model->rowCount() > 0) {
|
|
table->selectRow(0);
|
|
model->selectRow(0);
|
|
PatientInformation pat;
|
|
#define ADD_PATIENT_PROPERTY(val)\
|
|
pat. val = model->data(model->index(0,PatientInformationEnum:: val)).toString();
|
|
EDIT_PATIENT()
|
|
#undef ADD_PATIENT_PROPERTY
|
|
edit_patient->setPatientInformation(&pat);
|
|
LOG_USER_OPERATION(DeletePatient);
|
|
}
|
|
} else {
|
|
//TODO:error handle
|
|
}
|
|
prepareButtons(false);
|
|
|
|
});
|
|
|
|
// btn select slot
|
|
connect(btnSelect, &QToolButton::clicked, [=]() {
|
|
|
|
EventCenter::Default()->triggerEvent(GUIEvents::PatientSelected, nullptr, edit_patient->getPatientInformation()->Copy());
|
|
selectedPatientUID = edit_patient->getPatientInformation()->PatientUID;
|
|
LOG_USER_OPERATION(SelectPatient);
|
|
});
|
|
|
|
// btn account slot
|
|
connect(btnAccount, &QToolButton::clicked, [=]() {
|
|
AccountFormDialog dia(this);
|
|
dia.setWindowModality(Qt::WindowModal);
|
|
dia.exec();
|
|
});
|
|
|
|
// event ResponsePreview slot
|
|
connect(EventCenter::Default(), &EventCenter::ResponsePreview, [=](QObject* sender, QObject* data) {
|
|
prepareButtons(true);
|
|
});
|
|
|
|
// event ResponseStop slot
|
|
connect(EventCenter::Default(), &EventCenter::ResponseStop, [=](QObject* sender, QObject* data) {
|
|
prepareButtons(false);
|
|
});
|
|
|
|
// event ReloadLanguage slot;
|
|
connect(EventCenter::Default(), &EventCenter::ReloadLanguage, [=]() {
|
|
|
|
model->setHeaderData(1, Qt::Horizontal, "ID");
|
|
model->setHeaderData(2, Qt::Horizontal, tr("Name"));
|
|
model->setHeaderData(3, Qt::Horizontal, tr("Birth Date"));
|
|
model->setHeaderData(4, Qt::Horizontal, tr("Gender"));
|
|
model->setHeaderData(5, Qt::Horizontal, tr("Add Date"));
|
|
model->setHeaderData(6, Qt::Horizontal, tr("Comment"));
|
|
|
|
btnAccount->setText(tr("Account"));
|
|
//btnWorklist->setText(tr("Worklist"));
|
|
btnAdd->setText(tr("Add"));
|
|
btnEdit->setText(tr("Edit"));
|
|
btnDelete->setText(tr("Delete"));
|
|
btnSelect->setText(tr("Select"));
|
|
});
|
|
|
|
//first prepare buttons!
|
|
prepareButtons(false);
|
|
}
|
|
|
|
|
|
SelectFormWidget::~SelectFormWidget()
|
|
{
|
|
|
|
}
|
|
|
|
|