Merge branch 'master' into wip/install-step2
This commit is contained in:
commit
57d89175dc
@ -22,6 +22,7 @@
|
|||||||
#include <QObject>
|
#include <QObject>
|
||||||
|
|
||||||
#include "../UiDllMacro.h"
|
#include "../UiDllMacro.h"
|
||||||
|
#include "Typedefs.h"
|
||||||
|
|
||||||
namespace Calamares
|
namespace Calamares
|
||||||
{
|
{
|
||||||
@ -46,6 +47,8 @@ public:
|
|||||||
virtual bool isAtBeginning() const = 0;
|
virtual bool isAtBeginning() const = 0;
|
||||||
virtual bool isAtEnd() const = 0;
|
virtual bool isAtEnd() const = 0;
|
||||||
|
|
||||||
|
virtual QList< Calamares::job_ptr > jobs() const = 0;
|
||||||
|
|
||||||
signals:
|
signals:
|
||||||
void nextStatusChanged( bool status );
|
void nextStatusChanged( bool status );
|
||||||
void done();
|
void done();
|
||||||
|
@ -81,3 +81,10 @@ GreetingViewStep::isAtEnd() const
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
QList< Calamares::job_ptr >
|
||||||
|
GreetingViewStep::jobs() const
|
||||||
|
{
|
||||||
|
return QList< Calamares::job_ptr >();
|
||||||
|
}
|
||||||
|
|
||||||
|
@ -49,6 +49,8 @@ public:
|
|||||||
bool isAtBeginning() const override;
|
bool isAtBeginning() const override;
|
||||||
bool isAtEnd() const override;
|
bool isAtEnd() const override;
|
||||||
|
|
||||||
|
QList< Calamares::job_ptr > jobs() const override;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
GreetingPage* m_widget;
|
GreetingPage* m_widget;
|
||||||
};
|
};
|
||||||
|
@ -85,3 +85,10 @@ KeyboardViewStep::isAtEnd() const
|
|||||||
{
|
{
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
QList< Calamares::job_ptr >
|
||||||
|
KeyboardViewStep::jobs() const
|
||||||
|
{
|
||||||
|
return QList< Calamares::job_ptr >();
|
||||||
|
}
|
||||||
|
@ -49,6 +49,8 @@ public:
|
|||||||
bool isAtBeginning() const override;
|
bool isAtBeginning() const override;
|
||||||
bool isAtEnd() const override;
|
bool isAtEnd() const override;
|
||||||
|
|
||||||
|
QList< Calamares::job_ptr > jobs() const override;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
KeyboardPage* m_widget;
|
KeyboardPage* m_widget;
|
||||||
bool m_nextEnabled;
|
bool m_nextEnabled;
|
||||||
|
@ -142,3 +142,10 @@ LocaleViewStep::isAtEnd() const
|
|||||||
{
|
{
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
QList< Calamares::job_ptr >
|
||||||
|
LocaleViewStep::jobs() const
|
||||||
|
{
|
||||||
|
return QList< Calamares::job_ptr >();
|
||||||
|
}
|
||||||
|
@ -51,6 +51,8 @@ public:
|
|||||||
bool isAtBeginning() const override;
|
bool isAtBeginning() const override;
|
||||||
bool isAtEnd() const override;
|
bool isAtEnd() const override;
|
||||||
|
|
||||||
|
QList< Calamares::job_ptr > jobs() const override;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
QWidget* m_widget;
|
QWidget* m_widget;
|
||||||
QFutureWatcher< void > m_initWatcher;
|
QFutureWatcher< void > m_initWatcher;
|
||||||
|
@ -20,7 +20,6 @@
|
|||||||
|
|
||||||
#include <PartitionPage.h>
|
#include <PartitionPage.h>
|
||||||
#include <PartitionCoreModule.h>
|
#include <PartitionCoreModule.h>
|
||||||
#include <JobQueue.h>
|
|
||||||
|
|
||||||
PartitionViewStep::PartitionViewStep( QObject* parent )
|
PartitionViewStep::PartitionViewStep( QObject* parent )
|
||||||
: Calamares::ViewStep( parent )
|
: Calamares::ViewStep( parent )
|
||||||
@ -49,7 +48,6 @@ PartitionViewStep::widget()
|
|||||||
void
|
void
|
||||||
PartitionViewStep::next()
|
PartitionViewStep::next()
|
||||||
{
|
{
|
||||||
Calamares::JobQueue::instance()->enqueue( m_core->jobs() );
|
|
||||||
emit done();
|
emit done();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -78,3 +76,10 @@ PartitionViewStep::isAtEnd() const
|
|||||||
{
|
{
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
QList< Calamares::job_ptr >
|
||||||
|
PartitionViewStep::jobs() const
|
||||||
|
{
|
||||||
|
return m_core->jobs();
|
||||||
|
}
|
||||||
|
@ -48,6 +48,8 @@ public:
|
|||||||
bool isAtBeginning() const override;
|
bool isAtBeginning() const override;
|
||||||
bool isAtEnd() const override;
|
bool isAtEnd() const override;
|
||||||
|
|
||||||
|
QList< Calamares::job_ptr > jobs() const override;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
PartitionCoreModule* m_core;
|
PartitionCoreModule* m_core;
|
||||||
PartitionPage* m_widget;
|
PartitionPage* m_widget;
|
||||||
|
Loading…
Reference in New Issue
Block a user