mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-22 14:55:36 +08:00
79 lines
2.3 KiB
C++
79 lines
2.3 KiB
C++
/* Copyright (C) 2017
|
|
* 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.
|
|
*/
|
|
|
|
//! \file
|
|
|
|
#ifndef BLACKGUI_COMPONENTS_INITIALDATALOADCOMPONENT_H
|
|
#define BLACKGUI_COMPONENTS_INITIALDATALOADCOMPONENT_H
|
|
|
|
#include <QFrame>
|
|
#include <QScopedPointer>
|
|
#include <QWizardPage>
|
|
|
|
namespace Ui { class CInitialDataLoadComponent; }
|
|
namespace BlackGui
|
|
{
|
|
namespace Components
|
|
{
|
|
/**
|
|
* Initial data load to prefill caches
|
|
* \remark Normally used in wizard
|
|
*/
|
|
class CInitialDataLoadComponent : public QFrame
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
//! Constructor
|
|
explicit CInitialDataLoadComponent(QWidget *parent = nullptr);
|
|
|
|
//! Destructor
|
|
virtual ~CInitialDataLoadComponent();
|
|
|
|
//! \copydoc BlackGui::Components::CDbLoadOverviewComponent::loadAllFromShared
|
|
void loadAllFromShared();
|
|
|
|
//! \copydoc BlackGui::Components::CDbLoadOverviewComponent::loadAllFromDb
|
|
void loadAllFromDb();
|
|
|
|
//! \copydoc BlackGui::Components::CDbLoadOverviewComponent::isLoadInProgress
|
|
bool isLoadInProgress() const;
|
|
|
|
private:
|
|
QScopedPointer<Ui::CInitialDataLoadComponent> ui;
|
|
};
|
|
|
|
/**
|
|
* Wizard page for CInitialDataLoadComponent
|
|
*/
|
|
class CInitialDataLoadWizardPage : public QWizardPage
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
//! Constructors
|
|
using QWizardPage::QWizardPage;
|
|
|
|
//! Set config
|
|
void setConfigComponent(CInitialDataLoadComponent *config) { m_config = config; }
|
|
|
|
//! \copydoc QWizardPage::initializePage
|
|
virtual void initializePage() override;
|
|
|
|
//! \copydoc QWizardPage::validatePage
|
|
virtual bool validatePage() override;
|
|
|
|
private:
|
|
CInitialDataLoadComponent *m_config = nullptr;
|
|
};
|
|
} // ns
|
|
} // ns
|
|
|
|
#endif // guard
|