mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-22 23:05:36 +08:00
155 lines
4.3 KiB
C++
155 lines
4.3 KiB
C++
/* Copyright (C) 2015
|
|
* swift project Community / Contributors
|
|
*
|
|
* This file is part of swift project. It is subject to the license terms in the LICENSE file found in the top-level
|
|
* directory of this distribution and at http://www.swift-project.org/license.html. No part of swift project,
|
|
* including this file, may be copied, modified, propagated, or distributed except according to the terms
|
|
* contained in the LICENSE file.
|
|
*/
|
|
|
|
#include "swiftdata.h"
|
|
#include "blackcore/data/globalsetup.h"
|
|
#include "blackgui/components/datamaininfoareacomponent.h"
|
|
#include "blackgui/components/dbmappingcomponent.h"
|
|
#include "blackgui/components/logcomponent.h"
|
|
#include "blackgui/guiapplication.h"
|
|
#include "blackgui/stylesheetutility.h"
|
|
#include "blackmisc/loghandler.h"
|
|
#include "blackmisc/logpattern.h"
|
|
#include "blackmisc/network/url.h"
|
|
#include "ui_swiftdata.h"
|
|
|
|
#include <QAction>
|
|
#include <QString>
|
|
#include <QStyle>
|
|
#include <QtGlobal>
|
|
|
|
class QWidget;
|
|
|
|
using namespace BlackMisc;
|
|
using namespace BlackMisc::Network;
|
|
using namespace BlackCore;
|
|
using namespace BlackCore::Data;
|
|
using namespace BlackGui;
|
|
using namespace BlackGui::Components;
|
|
|
|
CSwiftData::CSwiftData(QWidget *parent) :
|
|
QMainWindow(parent),
|
|
CIdentifiable(this),
|
|
ui(new Ui::CSwiftData)
|
|
{
|
|
ui->setupUi(this);
|
|
this->init();
|
|
}
|
|
|
|
void CSwiftData::initStyleSheet()
|
|
{
|
|
const QString s = sGui->getStyleSheetUtility().styles(
|
|
{
|
|
CStyleSheetUtility::fileNameFonts(),
|
|
CStyleSheetUtility::fileNameStandardWidget(),
|
|
CStyleSheetUtility::fileNameSwiftData()
|
|
}
|
|
);
|
|
this->setStyleSheet(s);
|
|
}
|
|
|
|
CSwiftData::~CSwiftData()
|
|
{ }
|
|
|
|
void CSwiftData::closeEvent(QCloseEvent *event)
|
|
{
|
|
if (sGui)
|
|
{
|
|
// save settings
|
|
if (sGui->showCloseDialog(this, event) == QDialog::Rejected) { return; }
|
|
}
|
|
this->performGracefulShutdown();
|
|
}
|
|
|
|
void CSwiftData::ps_appendLogMessage(const CStatusMessage &message)
|
|
{
|
|
if (!ui->comp_MainInfoArea) { return; } // not initialized yet
|
|
CLogComponent *logComponent = ui->comp_MainInfoArea->getLogComponent();
|
|
Q_ASSERT_X(logComponent, Q_FUNC_INFO, "missing log component");
|
|
logComponent->appendStatusMessageToList(message);
|
|
|
|
// status bar
|
|
m_statusBar.displayStatusMessage(message);
|
|
}
|
|
|
|
void CSwiftData::ps_onStyleSheetsChanged()
|
|
{
|
|
this->initStyleSheet();
|
|
}
|
|
|
|
void CSwiftData::init()
|
|
{
|
|
sGui->initMainApplicationWindow(this);
|
|
this->initLogDisplay();
|
|
|
|
this->m_mwaLogComponent = ui->comp_MainInfoArea->getLogComponent();
|
|
this->m_mwaStatusBar = &this->m_statusBar;
|
|
this->m_mwaOverlayFrame = ui->comp_MainInfoArea->getMappingComponent();
|
|
|
|
this->initStyleSheet();
|
|
connect(sGui, &CGuiApplication::styleSheetsChanged, this, &CSwiftData::ps_onStyleSheetsChanged);
|
|
this->initMenu();
|
|
|
|
// update title
|
|
const CGlobalSetup s(sApp->getGlobalSetup());
|
|
if (!s.getDbHomePageUrl().isEmpty())
|
|
{
|
|
QString t(this->windowTitle());
|
|
t += " ";
|
|
t += s.getDbHomePageUrl().toQString(true);
|
|
this->setWindowTitle(t);
|
|
}
|
|
|
|
emit sGui->startUpCompleted(true);
|
|
}
|
|
|
|
void CSwiftData::initLogDisplay()
|
|
{
|
|
this->m_statusBar.initStatusBar(ui->sb_SwiftData);
|
|
|
|
CLogHandler::instance()->install(true);
|
|
CLogHandler::instance()->enableConsoleOutput(false); // default disable
|
|
auto logHandler = CLogHandler::instance()->handlerForPattern(
|
|
CLogPattern().withSeverityAtOrAbove(CStatusMessage::SeverityInfo)
|
|
);
|
|
logHandler->subscribe(this, &CSwiftData::ps_appendLogMessage);
|
|
}
|
|
|
|
void CSwiftData::initMenu()
|
|
{
|
|
// menu
|
|
|
|
this->initDynamicMenus();
|
|
ui->menu_WindowMinimize->setIcon(this->style()->standardIcon(QStyle::SP_TitleBarMinButton));
|
|
|
|
connect(ui->menu_WindowFont, &QAction::triggered, this, &CSwiftData::ps_onMenuClicked);
|
|
connect(ui->menu_MappingMaxData, &QAction::triggered, this, &CSwiftData::ps_onMenuClicked);
|
|
connect(ui->menu_MappingMaxMapping, &QAction::triggered, this, &CSwiftData::ps_onMenuClicked);
|
|
|
|
sGui->addMenuFile(*ui->menu_File);
|
|
sGui->addMenuInternals(*ui->menu_Internals);
|
|
sGui->addMenuWindow(*ui->menu_Window);
|
|
sGui->addMenuHelp(*ui->menu_Help);
|
|
}
|
|
|
|
void CSwiftData::performGracefulShutdown()
|
|
{
|
|
// void
|
|
}
|
|
|
|
void CSwiftData::displayConsole()
|
|
{
|
|
ui->comp_MainInfoArea->displayConsole();
|
|
}
|
|
|
|
void CSwiftData::displayLog()
|
|
{
|
|
ui->comp_MainInfoArea->displayLog();
|
|
}
|