mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-24 07:55:35 +08:00
119 lines
4.4 KiB
C++
119 lines
4.4 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. 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 "blackgui/components/datainfoareacomponent.h"
|
|
#include "blackgui/components/datamaininfoareacomponent.h"
|
|
#include "blackgui/components/dbaircrafticaocomponent.h"
|
|
#include "blackgui/components/dbliverycomponent.h"
|
|
#include "blackgui/components/dbmappingcomponent.h"
|
|
#include "blackgui/components/dbmodelcomponent.h"
|
|
#include "blackgui/components/logcomponent.h"
|
|
#include "blackmisc/icons.h"
|
|
#include "blackmisc/verify.h"
|
|
#include "ui_datamaininfoareacomponent.h"
|
|
#include <QIcon>
|
|
|
|
using namespace BlackMisc;
|
|
using namespace BlackGui;
|
|
using namespace BlackGui::Components;
|
|
|
|
namespace BlackGui
|
|
{
|
|
namespace Components
|
|
{
|
|
CDataMainInfoAreaComponent::CDataMainInfoAreaComponent(QWidget *parent) :
|
|
CInfoArea(parent),
|
|
ui(new Ui::CDataMainInfoAreaComponent)
|
|
{
|
|
ui->setupUi(this);
|
|
this->initInfoArea(); // init base class
|
|
this->setWindowIcon(CIcons::swiftDatabase24());
|
|
|
|
connect(ui->comp_Mapping, &CDbMappingComponent::filterByLivery, ui->comp_DataInfoArea->getLiveryComponent(), &CDbLiveryComponent::filter);
|
|
connect(ui->comp_Mapping, &CDbMappingComponent::filterByAircraftIcao, ui->comp_DataInfoArea->getAircraftComponent(), &CDbAircraftIcaoComponent::filter);
|
|
connect(ui->comp_Mapping, &CDbMappingComponent::requestUpdatedData, ui->comp_DataInfoArea, &CDataInfoAreaComponent::requestUpdatedData);
|
|
|
|
connect(ui->comp_DataInfoArea->getModelComponent(), &CDbModelComponent::requestStash, ui->comp_Mapping, &CDbMappingComponent::stashModels);
|
|
connect(ui->comp_Log, &CLogComponent::requestAttention, this, &CDataMainInfoAreaComponent::selectLog);
|
|
|
|
ui->comp_Log->showFilterBar();
|
|
}
|
|
|
|
CDataMainInfoAreaComponent::~CDataMainInfoAreaComponent()
|
|
{ }
|
|
|
|
CLogComponent *CDataMainInfoAreaComponent::getLogComponent() const
|
|
{
|
|
return ui->comp_Log;
|
|
}
|
|
|
|
CDbMappingComponent *CDataMainInfoAreaComponent::getMappingComponent() const
|
|
{
|
|
return ui->comp_Mapping;
|
|
}
|
|
|
|
CDataInfoAreaComponent *CDataMainInfoAreaComponent::getDataInfoAreaComponent() const
|
|
{
|
|
return ui->comp_DataInfoArea;
|
|
}
|
|
|
|
CDataSettingsComponent *CDataMainInfoAreaComponent::getDataSettingsComponent() const
|
|
{
|
|
return ui->comp_Settings;
|
|
}
|
|
|
|
void CDataMainInfoAreaComponent::displayLog()
|
|
{
|
|
this->selectArea(InfoAreaLog);
|
|
BLACK_VERIFY_X(this->getLogComponent(), Q_FUNC_INFO, "No log component");
|
|
if (!this->getLogComponent()) { return; }
|
|
this->getLogComponent()->displayLog();
|
|
}
|
|
|
|
void CDataMainInfoAreaComponent::displayConsole()
|
|
{
|
|
this->selectArea(InfoAreaLog);
|
|
BLACK_VERIFY_X(this->getLogComponent(), Q_FUNC_INFO, "No log component");
|
|
if (!this->getLogComponent()) { return; }
|
|
this->getLogComponent()->displayConsole();
|
|
}
|
|
|
|
void CDataMainInfoAreaComponent::selectLog()
|
|
{
|
|
this->selectArea(InfoAreaLog);
|
|
}
|
|
|
|
QSize CDataMainInfoAreaComponent::getPreferredSizeWhenFloating(int areaIndex) const
|
|
{
|
|
const InfoArea area = static_cast<InfoArea>(areaIndex);
|
|
switch (area)
|
|
{
|
|
case InfoAreaData:
|
|
case InfoAreaMapping:
|
|
case InfoAreaSettings:
|
|
case InfoAreaLog:
|
|
default:
|
|
return QSize(800, 600);
|
|
}
|
|
}
|
|
|
|
const QPixmap &CDataMainInfoAreaComponent::indexToPixmap(int areaIndex) const
|
|
{
|
|
const InfoArea area = static_cast<InfoArea>(areaIndex);
|
|
switch (area)
|
|
{
|
|
case InfoAreaData: return CIcons::appDatabase16();
|
|
case InfoAreaMapping: return CIcons::appMappings16();
|
|
case InfoAreaSettings: return CIcons::appSettings16();
|
|
case InfoAreaLog: return CIcons::appLog16();
|
|
default: return CIcons::empty();
|
|
}
|
|
}
|
|
} // ns
|
|
} // ns
|