2021-10-25 15:00:32 +08:00
|
|
|
|
#include "tabformwidget.h"
|
2021-10-09 16:38:34 +08:00
|
|
|
|
#include "ui_tabformwidget.h"
|
2021-10-11 09:22:31 +08:00
|
|
|
|
#include <QDateTime>
|
2021-12-23 10:09:35 +08:00
|
|
|
|
#include "components/RollingMessageWidget.h"
|
2021-10-14 17:54:22 +08:00
|
|
|
|
#include "event/EventCenter.h"
|
2021-10-25 15:00:32 +08:00
|
|
|
|
|
|
|
|
|
|
#if defined(_MSC_VER) && (_MSC_VER >= 1600)
|
|
|
|
|
|
# pragma execution_character_set("utf-8")
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
TabFormWidget::TabFormWidget(QWidget* parent) :
|
|
|
|
|
|
QWidget(parent),
|
|
|
|
|
|
ui(new Ui::TabFormWidget)
|
2021-10-09 16:38:34 +08:00
|
|
|
|
{
|
2021-10-25 15:00:32 +08:00
|
|
|
|
ui->setupUi(this);
|
2021-12-17 10:24:05 +08:00
|
|
|
|
return;
|
2021-10-09 16:38:34 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TabFormWidget::~TabFormWidget()
|
|
|
|
|
|
{
|
2021-10-25 15:00:32 +08:00
|
|
|
|
delete ui;
|
2021-10-09 16:38:34 +08:00
|
|
|
|
}
|