mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-02 06:35:52 +08:00
232 lines
8.1 KiB
C++
232 lines
8.1 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 "blackcore/webdataservices.h"
|
|
#include "blackgui/components/colorselector.h"
|
|
#include "blackgui/components/dbliveryselectorcomponent.h"
|
|
#include "blackgui/dropsite.h"
|
|
#include "blackgui/editors/airlineicaoform.h"
|
|
#include "blackgui/editors/liveryform.h"
|
|
#include "blackgui/editors/validationindicator.h"
|
|
#include "blackgui/guiapplication.h"
|
|
#include "blackgui/guiutility.h"
|
|
#include "blackgui/labelandicon.h"
|
|
#include "blackmisc/aviation/liverylist.h"
|
|
#include "blackmisc/compare.h"
|
|
#include "blackmisc/icons.h"
|
|
#include "liveryform.h"
|
|
#include "ui_liveryform.h"
|
|
|
|
#include <QCheckBox>
|
|
#include <QLineEdit>
|
|
#include <QMetaType>
|
|
|
|
using namespace BlackMisc;
|
|
using namespace BlackMisc::Aviation;
|
|
using namespace BlackGui;
|
|
using namespace BlackGui::Components;
|
|
|
|
namespace BlackGui
|
|
{
|
|
namespace Editors
|
|
{
|
|
CLiveryForm::CLiveryForm(QWidget *parent) :
|
|
CForm(parent),
|
|
ui(new Ui::CLiveryForm)
|
|
{
|
|
ui->setupUi(this);
|
|
ui->le_Id->setReadOnly(true);
|
|
ui->le_Updated->setReadOnly(true);
|
|
ui->lai_Id->set(CIcons::appLiveries16(), "Id:");
|
|
ui->comp_LiverySelector->withLiveryDescription(false);
|
|
|
|
// selector
|
|
connect(ui->comp_LiverySelector, &CDbLiverySelectorComponent::changedLivery, this, &CLiveryForm::setValue);
|
|
|
|
// drag and drop
|
|
connect(ui->drop_DropData, &CDropSite::droppedValueObject, this, &CLiveryForm::ps_droppedLivery);
|
|
ui->drop_DropData->setInfoText("<drop livery>");
|
|
ui->drop_DropData->setAcceptedMetaTypeIds({ qMetaTypeId<CLivery>(), qMetaTypeId<CLiveryList>()});
|
|
|
|
// embedded form
|
|
connect(ui->editor_AirlineIcao, &CAirlineIcaoForm::airlineChanged, this, &CLiveryForm::ps_airlineChanged);
|
|
|
|
// Set as temp.livery or search color
|
|
connect(ui->pb_TempLivery, &QPushButton::pressed, this, &CLiveryForm::ps_setTemporaryLivery);
|
|
connect(ui->pb_SearchColor, &QPushButton::pressed, this, &CLiveryForm::ps_searchForColor);
|
|
}
|
|
|
|
CLiveryForm::~CLiveryForm() { }
|
|
|
|
CLivery CLiveryForm::getValue() const
|
|
{
|
|
CLivery livery(ui->comp_LiverySelector->getLivery());
|
|
if (livery.hasCompleteData() && livery.hasValidDbKey())
|
|
{
|
|
// already complete data from selector
|
|
return livery;
|
|
}
|
|
|
|
CAirlineIcaoCode airline(ui->editor_AirlineIcao->getValue());
|
|
livery.setAirlineIcaoCode(airline);
|
|
livery.setDescription(ui->le_Description->text());
|
|
livery.setMilitary(ui->cb_Military->isChecked());
|
|
return livery;
|
|
}
|
|
|
|
CAirlineIcaoCode CLiveryForm::getValueAirlineIcao() const
|
|
{
|
|
return ui->editor_AirlineIcao->getValue();
|
|
}
|
|
|
|
bool CLiveryForm::setValue(const CLivery &livery)
|
|
{
|
|
if (this->m_originalLivery == livery) { return false; }
|
|
|
|
this->m_originalLivery = livery;
|
|
ui->comp_LiverySelector->setLivery(livery);
|
|
ui->le_Id->setText(livery.getDbKeyAsString());
|
|
ui->le_Description->setText(livery.getDescription());
|
|
ui->le_Updated->setText(livery.getFormattedUtcTimestampYmdhms());
|
|
ui->color_Fuselage->setColor(livery.getColorFuselage());
|
|
ui->color_Tail->setColor(livery.getColorTail());
|
|
ui->cb_Military->setChecked(livery.isMilitary());
|
|
|
|
if (livery.isColorLivery())
|
|
{
|
|
ui->editor_AirlineIcao->clear();
|
|
}
|
|
else
|
|
{
|
|
ui->editor_AirlineIcao->setValue(livery.getAirlineIcaoCode());
|
|
}
|
|
return true;
|
|
}
|
|
|
|
CStatusMessageList CLiveryForm::validate(bool withNestedForms) const
|
|
{
|
|
CLivery livery(getValue());
|
|
CStatusMessageList msgs(livery.validate());
|
|
if (withNestedForms)
|
|
{
|
|
if (!livery.isColorLivery())
|
|
{
|
|
msgs.push_back(ui->editor_AirlineIcao->validate());
|
|
}
|
|
}
|
|
if (this->isReadOnly())
|
|
{
|
|
// in readonly I cannot change the data anyway, so skip warnings
|
|
msgs.removeWarningsAndBelow();
|
|
}
|
|
ui->val_Indicator->setState(msgs);
|
|
return msgs;
|
|
}
|
|
|
|
CStatusMessageList CLiveryForm::validateAirlineIcao() const
|
|
{
|
|
return ui->editor_AirlineIcao->validate();
|
|
}
|
|
|
|
void CLiveryForm::allowDrop(bool allowDrop)
|
|
{
|
|
ui->drop_DropData->allowDrop(allowDrop);
|
|
ui->comp_LiverySelector->allowDrop(allowDrop);
|
|
ui->editor_AirlineIcao->allowDrop(allowDrop);
|
|
}
|
|
|
|
bool CLiveryForm::isDropAllowed() const
|
|
{
|
|
return ui->drop_DropData->isDropAllowed();
|
|
}
|
|
|
|
void CLiveryForm::setReadOnly(bool readOnly)
|
|
{
|
|
this->m_readOnly = readOnly;
|
|
ui->comp_LiverySelector->setReadOnly(readOnly);
|
|
ui->le_Description->setReadOnly(readOnly);
|
|
ui->color_Fuselage->setReadOnly(readOnly);
|
|
ui->color_Tail->setReadOnly(readOnly);
|
|
ui->editor_AirlineIcao->setReadOnly(readOnly);
|
|
ui->pb_SearchColor->setVisible(!readOnly);
|
|
ui->pb_TempLivery->setVisible(!readOnly);
|
|
ui->drop_DropData->setVisible(!readOnly);
|
|
CGuiUtility::checkBoxReadOnly(ui->cb_Military, readOnly);
|
|
}
|
|
|
|
void CLiveryForm::setSelectOnly()
|
|
{
|
|
this->setReadOnly(true);
|
|
ui->comp_LiverySelector->setReadOnly(false);
|
|
ui->editor_AirlineIcao->setSelectOnly();
|
|
ui->drop_DropData->setVisible(true);
|
|
}
|
|
|
|
void CLiveryForm::clear()
|
|
{
|
|
this->setValue(CLivery());
|
|
}
|
|
|
|
void CLiveryForm::ps_droppedLivery(const BlackMisc::CVariant &variantDropped)
|
|
{
|
|
CLivery livery;
|
|
if (variantDropped.canConvert<CLivery>())
|
|
{
|
|
livery = variantDropped.value<CLivery>();
|
|
}
|
|
else if (variantDropped.canConvert<CLiveryList>())
|
|
{
|
|
CLiveryList liveryList(variantDropped.value<CLiveryList>());
|
|
if (liveryList.isEmpty()) { return; }
|
|
livery = liveryList.front();
|
|
}
|
|
else { return; }
|
|
this->setValue(livery);
|
|
}
|
|
|
|
void CLiveryForm::ps_airlineChanged(const CAirlineIcaoCode &code)
|
|
{
|
|
if (!code.hasCompleteData()) { return; }
|
|
if (!code.hasValidDbKey()) { return; }
|
|
|
|
const CLivery stdLivery(sGui->getWebDataServices()->getLiveries().findStdLiveryByAirlineIcaoVDesignator(code));
|
|
if (stdLivery.hasValidDbKey())
|
|
{
|
|
this->setValue(stdLivery);
|
|
}
|
|
}
|
|
|
|
void CLiveryForm::ps_setTemporaryLivery()
|
|
{
|
|
if (!sGui || !sGui->hasWebDataServices()) { return; }
|
|
const CLivery l = sGui->getWebDataServices()->getTempLiveryOrDefault();
|
|
if (l.isLoadedFromDb())
|
|
{
|
|
this->setValue(l);
|
|
}
|
|
}
|
|
|
|
void CLiveryForm::ps_searchForColor()
|
|
{
|
|
if (!this->m_colorSearch)
|
|
{
|
|
this->m_colorSearch = new CDbLiveryColorSearchDialog(this);
|
|
this->m_colorSearch->setModal(true);
|
|
}
|
|
const QDialog::DialogCode c = static_cast<QDialog::DialogCode>(this->m_colorSearch->exec());
|
|
if (c == QDialog::Rejected) { return; }
|
|
const CLivery found = this->m_colorSearch->getLivery();
|
|
if (found.isLoadedFromDb())
|
|
{
|
|
this->setValue(found);
|
|
}
|
|
}
|
|
} // ns
|
|
} // ns
|