mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-31 04:25:35 +08:00
* Include only what is used * Use forward declaration when possible * Sorted includes refs #598
70 lines
2.5 KiB
C++
70 lines
2.5 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/dbliverycomponent.h"
|
|
#include "blackgui/filters/liveryfilterbar.h"
|
|
#include "blackgui/guiapplication.h"
|
|
#include "blackgui/views/liveryview.h"
|
|
#include "dbliverycomponent.h"
|
|
#include "ui_dbliverycomponent.h"
|
|
|
|
#include <QtGlobal>
|
|
|
|
using namespace BlackCore;
|
|
using namespace BlackGui::Views;
|
|
using namespace BlackMisc::Network;
|
|
|
|
namespace BlackGui
|
|
{
|
|
namespace Components
|
|
{
|
|
CDbLiveryComponent::CDbLiveryComponent(QWidget *parent) :
|
|
QFrame(parent),
|
|
ui(new Ui::CDbLiveryComponent)
|
|
{
|
|
ui->setupUi(this);
|
|
this->setViewWithIndicator(this->ui->tvp_Liveries);
|
|
connect(this->ui->tvp_Liveries, &CLiveryView::requestNewBackendData, this, &CDbLiveryComponent::ps_reload);
|
|
|
|
// filter and drag and drop
|
|
this->ui->tvp_Liveries->setFilterWidget(this->ui->filter_Livery);
|
|
this->ui->tvp_Liveries->allowDragDrop(true, false);
|
|
|
|
connect(sGui->getWebDataServices(), &CWebDataServices::dataRead, this, &CDbLiveryComponent::ps_liveriesRead);
|
|
this->ps_liveriesRead(CEntityFlags::LiveryEntity, CEntityFlags::ReadFinished, sGui->getWebDataServices()->getLiveriesCount());
|
|
}
|
|
|
|
CDbLiveryComponent::~CDbLiveryComponent()
|
|
{ }
|
|
|
|
void CDbLiveryComponent::filter(const BlackMisc::Aviation::CLivery &livery)
|
|
{
|
|
this->ui->filter_Livery->filter(livery);
|
|
}
|
|
|
|
void CDbLiveryComponent::ps_liveriesRead(CEntityFlags::Entity entity, CEntityFlags::ReadState readState, int count)
|
|
{
|
|
Q_UNUSED(count);
|
|
if (entity.testFlag(CEntityFlags::LiveryEntity) && readState == CEntityFlags::ReadFinished)
|
|
{
|
|
this->ui->tvp_Liveries->updateContainerMaybeAsync(sGui->getWebDataServices()->getLiveries());
|
|
}
|
|
}
|
|
|
|
void CDbLiveryComponent::ps_reload()
|
|
{
|
|
if (!sGui) { return; }
|
|
sGui->getWebDataServices()->triggerRead(CEntityFlags::LiveryEntity);
|
|
}
|
|
|
|
} // ns
|
|
} // ns
|
|
|