105 lines
4.0 KiB
C++
105 lines
4.0 KiB
C++
//
|
|
// Created by Krad on 2021/10/8.
|
|
//
|
|
#include "ui_tabformwidget.h"
|
|
#include "SelectFormWidget.h"
|
|
#include <QHBoxLayout>
|
|
#include <QToolButton>
|
|
#include <QTableWidget>
|
|
#include <QHeaderView>
|
|
#include "db/SQLHelper.h"
|
|
#include "editpatientform.h"
|
|
#include "guimacros.h"
|
|
|
|
#define ADD_CENTER_ITEM(row,col,text)\
|
|
item = new QTableWidgetItem(text);\
|
|
item->setTextAlignment(Qt::AlignmentFlag::AlignCenter);\
|
|
table->setItem(row,col,item);
|
|
|
|
SelectFormWidget::SelectFormWidget(QWidget *parent) :
|
|
TabFormWidget(parent)
|
|
{
|
|
const char* style="QHeaderView::section{background-color:#595959;"
|
|
" min-height:50px;max-height:50px;"
|
|
"font-weight:Bold; font-size:16px; border:1px solid #323232;}"
|
|
"QHeaderView::section:horizontal{border-bottom: 1px solid rgb(0,170,255);}"
|
|
"QHeaderView::section:vertical{min-height:36px;max-height:36px;}"
|
|
"QWidget#edit_patient{min-width:300px;max-width:300px;}"
|
|
"QTableWidget{border:none}"
|
|
"QTableView{alternate-background-color: #595959;selection-color:white;selection-background-color:#0078d8}"
|
|
;
|
|
|
|
this->setStyleSheet(this->styleSheet().append(style));
|
|
//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");
|
|
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");
|
|
|
|
//Init content widget
|
|
QHBoxLayout* contentLayout =new QHBoxLayout();
|
|
this->ui->contentWidget->setLayout(contentLayout);
|
|
// TableView for patient
|
|
QTableView* table= new QTableView(this);
|
|
table->setAlternatingRowColors(true);
|
|
table->setSelectionMode(QAbstractItemView::SingleSelection);
|
|
table->setEditTriggers(QAbstractItemView::NoEditTriggers);
|
|
table->setSelectionBehavior(QAbstractItemView::SelectRows);
|
|
table->verticalHeader()->setDefaultSectionSize(38);
|
|
table->horizontalHeader()->setSectionResizeMode(QHeaderView::Stretch);
|
|
//dat from SQLITE
|
|
SQLHelper::Open();
|
|
auto model = SQLHelper::getTable("Patient");
|
|
model->select();
|
|
model->setHeaderData(1,Qt::Horizontal,"ID");
|
|
model->setHeaderData(2,Qt::Horizontal,"Name");
|
|
model->setHeaderData(3,Qt::Horizontal,"Birth Date");
|
|
table->setModel((QAbstractItemModel*)model);
|
|
table->hideColumn(0);
|
|
table->show();
|
|
contentLayout->addWidget(table);
|
|
QWidget* spacerLine2= new QWidget(this);
|
|
spacerLine2->setFixedWidth(2);
|
|
spacerLine2->setObjectName("verSpaceLine");
|
|
contentLayout->addWidget(spacerLine2);
|
|
//edit panel
|
|
EditPatientForm* edit_patient= new EditPatientForm(this);
|
|
edit_patient->setObjectName("edit_patient");
|
|
contentLayout->addWidget(edit_patient);
|
|
|
|
//events----------------------------------------------------------------------
|
|
//table current row selection changing event
|
|
connect(table,&QTableView::clicked,[=](const QModelIndex & modelIndex){
|
|
if (currentRow!=modelIndex.row())
|
|
{
|
|
PatientInformation pat;
|
|
#define ADD_PATIENT_PROPERTY(val)\
|
|
pat. val = model->data(model->index(modelIndex.row(),PatientInformationEnum:: val)).toString();
|
|
EDIT_PATIENT()
|
|
#undef ADD_PATIENT_PROPERTY
|
|
edit_patient->setPatientInformation(&pat);
|
|
}
|
|
});
|
|
|
|
connect(btnAdd, &QToolButton::clicked,[=](){
|
|
edit_patient->clearPatientInformation();
|
|
edit_patient->setEditEnable(true);
|
|
});
|
|
connect(btnEdit, &QToolButton::clicked,[=](){
|
|
table->clicked(table->currentIndex());
|
|
edit_patient->setEditEnable(true);
|
|
});
|
|
}
|
|
|
|
SelectFormWidget::~SelectFormWidget()
|
|
{
|
|
} |