mirror of https://github.com/cutefishos/calamares
Merge branch 'progress-model'
commit
c628192163
@ -1,92 +0,0 @@
|
|||||||
/* === This file is part of Calamares - <https://github.com/calamares> ===
|
|
||||||
*
|
|
||||||
* Copyright 2014, Teo Mrnjavac <teo@kde.org>
|
|
||||||
*
|
|
||||||
* Calamares is free software: you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License as published by
|
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
|
||||||
* Calamares is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include "ProgressTreeItem.h"
|
|
||||||
|
|
||||||
#include "ProgressTreeModel.h"
|
|
||||||
|
|
||||||
|
|
||||||
ProgressTreeItem::ProgressTreeItem( ProgressTreeItem* parent )
|
|
||||||
{
|
|
||||||
m_parentItem = parent;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
ProgressTreeItem::~ProgressTreeItem()
|
|
||||||
{
|
|
||||||
qDeleteAll( m_childItems );
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
void
|
|
||||||
ProgressTreeItem::appendChild( ProgressTreeItem* item )
|
|
||||||
{
|
|
||||||
m_childItems.append( item );
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
ProgressTreeItem*
|
|
||||||
ProgressTreeItem::child( int row )
|
|
||||||
{
|
|
||||||
return m_childItems.value( row );
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
int
|
|
||||||
ProgressTreeItem::childCount() const
|
|
||||||
{
|
|
||||||
return m_childItems.count();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
int
|
|
||||||
ProgressTreeItem::columnCount() const
|
|
||||||
{
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
int
|
|
||||||
ProgressTreeItem::row() const
|
|
||||||
{
|
|
||||||
if ( m_parentItem )
|
|
||||||
{
|
|
||||||
return m_parentItem->m_childItems.indexOf( const_cast< ProgressTreeItem* >( this ) );
|
|
||||||
}
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
ProgressTreeItem*
|
|
||||||
ProgressTreeItem::parent()
|
|
||||||
{
|
|
||||||
return m_parentItem;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
ProgressTreeRoot::ProgressTreeRoot()
|
|
||||||
: ProgressTreeItem()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
QVariant
|
|
||||||
ProgressTreeRoot::data( int ) const
|
|
||||||
{
|
|
||||||
return QVariant();
|
|
||||||
}
|
|
@ -1,60 +0,0 @@
|
|||||||
/* === This file is part of Calamares - <https://github.com/calamares> ===
|
|
||||||
*
|
|
||||||
* Copyright 2014, Teo Mrnjavac <teo@kde.org>
|
|
||||||
*
|
|
||||||
* Calamares is free software: you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License as published by
|
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
|
||||||
* Calamares is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef PROGRESSTREEITEM_H
|
|
||||||
#define PROGRESSTREEITEM_H
|
|
||||||
|
|
||||||
#include <QList>
|
|
||||||
#include <QVariant>
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief The ProgressTreeItem class represents an item in the
|
|
||||||
* ProgressTreeModel/ProgressTreeView.
|
|
||||||
* Each item generally represents a ViewStep.
|
|
||||||
*/
|
|
||||||
class ProgressTreeItem
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
explicit ProgressTreeItem( ProgressTreeItem* parent = nullptr );
|
|
||||||
|
|
||||||
virtual ~ProgressTreeItem();
|
|
||||||
|
|
||||||
virtual void appendChild( ProgressTreeItem* item );
|
|
||||||
|
|
||||||
virtual ProgressTreeItem* child( int row );
|
|
||||||
virtual int childCount() const;
|
|
||||||
virtual int columnCount() const;
|
|
||||||
virtual QVariant data( int role ) const = 0;
|
|
||||||
virtual int row() const;
|
|
||||||
virtual ProgressTreeItem* parent();
|
|
||||||
|
|
||||||
private:
|
|
||||||
QList< ProgressTreeItem* > m_childItems;
|
|
||||||
ProgressTreeItem* m_parentItem;
|
|
||||||
};
|
|
||||||
|
|
||||||
class ProgressTreeRoot : public ProgressTreeItem
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
explicit ProgressTreeRoot();
|
|
||||||
|
|
||||||
virtual QVariant data( int role ) const;
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif // PROGRESSTREEITEM_H
|
|
@ -1,227 +0,0 @@
|
|||||||
/* === This file is part of Calamares - <https://github.com/calamares> ===
|
|
||||||
*
|
|
||||||
* Copyright 2014-2015, Teo Mrnjavac <teo@kde.org>
|
|
||||||
* Copyright 2017, Adriaan de Groot <groot@kde.org>
|
|
||||||
*
|
|
||||||
* Calamares is free software: you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License as published by
|
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
|
||||||
* Calamares is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include "ProgressTreeModel.h"
|
|
||||||
|
|
||||||
#include "ViewStepItem.h"
|
|
||||||
|
|
||||||
#include "ViewManager.h"
|
|
||||||
|
|
||||||
ProgressTreeModel::ProgressTreeModel( QObject* parent )
|
|
||||||
: QAbstractItemModel( parent )
|
|
||||||
, m_rootItem( nullptr )
|
|
||||||
{
|
|
||||||
setupModelData();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
ProgressTreeModel::~ProgressTreeModel()
|
|
||||||
{
|
|
||||||
delete m_rootItem;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
Qt::ItemFlags
|
|
||||||
ProgressTreeModel::flags( const QModelIndex& index ) const
|
|
||||||
{
|
|
||||||
if ( !index.isValid() )
|
|
||||||
{
|
|
||||||
return Qt::ItemFlags();
|
|
||||||
}
|
|
||||||
|
|
||||||
return Qt::ItemIsEnabled;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
QModelIndex
|
|
||||||
ProgressTreeModel::index( int row, int column, const QModelIndex& parent ) const
|
|
||||||
{
|
|
||||||
if ( !hasIndex( row, column, parent ) )
|
|
||||||
{
|
|
||||||
return QModelIndex();
|
|
||||||
}
|
|
||||||
|
|
||||||
ProgressTreeItem* parentItem;
|
|
||||||
|
|
||||||
if ( !parent.isValid() )
|
|
||||||
{
|
|
||||||
parentItem = m_rootItem;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
parentItem = static_cast< ProgressTreeItem* >( parent.internalPointer() );
|
|
||||||
}
|
|
||||||
|
|
||||||
ProgressTreeItem* childItem = parentItem->child( row );
|
|
||||||
if ( childItem )
|
|
||||||
{
|
|
||||||
return createIndex( row, column, childItem );
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
return QModelIndex();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
QModelIndex
|
|
||||||
ProgressTreeModel::parent( const QModelIndex& index ) const
|
|
||||||
{
|
|
||||||
if ( !index.isValid() )
|
|
||||||
{
|
|
||||||
return QModelIndex();
|
|
||||||
}
|
|
||||||
|
|
||||||
ProgressTreeItem* childItem = static_cast< ProgressTreeItem* >( index.internalPointer() );
|
|
||||||
ProgressTreeItem* parentItem = childItem->parent();
|
|
||||||
|
|
||||||
if ( parentItem == m_rootItem )
|
|
||||||
{
|
|
||||||
return QModelIndex();
|
|
||||||
}
|
|
||||||
|
|
||||||
return createIndex( parentItem->row(), 0, parentItem );
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
QVariant
|
|
||||||
ProgressTreeModel::data( const QModelIndex& index, int role ) const
|
|
||||||
{
|
|
||||||
if ( !index.isValid() )
|
|
||||||
{
|
|
||||||
return QVariant();
|
|
||||||
}
|
|
||||||
|
|
||||||
ProgressTreeItem* item = static_cast< ProgressTreeItem* >( index.internalPointer() );
|
|
||||||
|
|
||||||
return item->data( role );
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
QVariant
|
|
||||||
ProgressTreeModel::headerData( int section, Qt::Orientation orientation, int role ) const
|
|
||||||
{
|
|
||||||
Q_UNUSED( section )
|
|
||||||
Q_UNUSED( orientation )
|
|
||||||
Q_UNUSED( role )
|
|
||||||
|
|
||||||
return QVariant();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
int
|
|
||||||
ProgressTreeModel::rowCount( const QModelIndex& parent ) const
|
|
||||||
{
|
|
||||||
ProgressTreeItem* parentItem;
|
|
||||||
if ( parent.column() > 0 )
|
|
||||||
{
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ( !parent.isValid() )
|
|
||||||
{
|
|
||||||
parentItem = m_rootItem;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
parentItem = static_cast< ProgressTreeItem* >( parent.internalPointer() );
|
|
||||||
}
|
|
||||||
|
|
||||||
return parentItem->childCount();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
int
|
|
||||||
ProgressTreeModel::columnCount( const QModelIndex& parent ) const
|
|
||||||
{
|
|
||||||
if ( parent.isValid() )
|
|
||||||
{
|
|
||||||
return static_cast< ProgressTreeItem* >( parent.internalPointer() )->columnCount();
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
return m_rootItem->columnCount();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
void
|
|
||||||
ProgressTreeModel::setupModelData()
|
|
||||||
{
|
|
||||||
delete m_rootItem;
|
|
||||||
|
|
||||||
m_rootItem = new ProgressTreeRoot();
|
|
||||||
const Calamares::ViewManager* vm = Calamares::ViewManager::instance();
|
|
||||||
|
|
||||||
const auto steps = vm->viewSteps();
|
|
||||||
for ( const Calamares::ViewStep* step : steps )
|
|
||||||
{
|
|
||||||
m_rootItem->appendChild( new ViewStepItem( step, m_rootItem ) );
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
QModelIndex
|
|
||||||
ProgressTreeModel::indexFromItem( ProgressTreeItem* item )
|
|
||||||
{
|
|
||||||
if ( !item || !item->parent() )
|
|
||||||
{
|
|
||||||
return QModelIndex();
|
|
||||||
}
|
|
||||||
|
|
||||||
// Reconstructs a QModelIndex from a ProgressTreeItem that is somewhere in the tree.
|
|
||||||
// Traverses the item to the root node, then rebuilds the qmodelindices from there
|
|
||||||
// back down; each int is the row of that item in the parent.
|
|
||||||
/**
|
|
||||||
* In this diagram, if the item is G, childIndexList will contain [0, 2, 0]
|
|
||||||
*
|
|
||||||
* A
|
|
||||||
* D
|
|
||||||
* E
|
|
||||||
* F
|
|
||||||
* G
|
|
||||||
* H
|
|
||||||
* B
|
|
||||||
* C
|
|
||||||
*
|
|
||||||
**/
|
|
||||||
QList< int > childIndexList;
|
|
||||||
ProgressTreeItem* curItem = item;
|
|
||||||
while ( curItem != m_rootItem )
|
|
||||||
{
|
|
||||||
int row = curItem->row(); //relative to its parent
|
|
||||||
if ( row < 0 ) // something went wrong, bail
|
|
||||||
{
|
|
||||||
return QModelIndex();
|
|
||||||
}
|
|
||||||
|
|
||||||
childIndexList << row;
|
|
||||||
|
|
||||||
curItem = curItem->parent();
|
|
||||||
}
|
|
||||||
|
|
||||||
// Now we rebuild the QModelIndex we need
|
|
||||||
QModelIndex idx;
|
|
||||||
for ( int i = childIndexList.size() - 1; i >= 0; i-- )
|
|
||||||
{
|
|
||||||
idx = index( childIndexList[ i ], 0, idx );
|
|
||||||
}
|
|
||||||
|
|
||||||
return idx;
|
|
||||||
}
|
|
@ -1,60 +0,0 @@
|
|||||||
/* === This file is part of Calamares - <https://github.com/calamares> ===
|
|
||||||
*
|
|
||||||
* Copyright 2014, Teo Mrnjavac <teo@kde.org>
|
|
||||||
* Copyright 2017, Adriaan de Groot <groot@kde.org>
|
|
||||||
*
|
|
||||||
* Calamares is free software: you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License as published by
|
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
|
||||||
* Calamares is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef PROGRESSTREEMODEL_H
|
|
||||||
#define PROGRESSTREEMODEL_H
|
|
||||||
|
|
||||||
#include <QAbstractItemModel>
|
|
||||||
|
|
||||||
class ProgressTreeRoot;
|
|
||||||
class ProgressTreeItem;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief The ProgressTreeModel class implements a model for the ProgressTreeView.
|
|
||||||
*/
|
|
||||||
class ProgressTreeModel : public QAbstractItemModel
|
|
||||||
{
|
|
||||||
Q_OBJECT
|
|
||||||
public:
|
|
||||||
enum Role
|
|
||||||
{
|
|
||||||
ProgressTreeItemCurrentRole = Qt::UserRole + 11
|
|
||||||
};
|
|
||||||
|
|
||||||
explicit ProgressTreeModel( QObject* parent = nullptr );
|
|
||||||
virtual ~ProgressTreeModel() override;
|
|
||||||
|
|
||||||
// Reimplemented from QAbstractItemModel
|
|
||||||
Qt::ItemFlags flags( const QModelIndex& index ) const override;
|
|
||||||
QModelIndex index( int row, int column, const QModelIndex& parent = QModelIndex() ) const override;
|
|
||||||
QModelIndex parent( const QModelIndex& index ) const override;
|
|
||||||
QVariant data( const QModelIndex& index, int role = Qt::DisplayRole ) const override;
|
|
||||||
QVariant headerData( int section, Qt::Orientation orientation, int role = Qt::DisplayRole ) const override;
|
|
||||||
int rowCount( const QModelIndex& parent = QModelIndex() ) const override;
|
|
||||||
int columnCount( const QModelIndex& parent = QModelIndex() ) const override;
|
|
||||||
|
|
||||||
private:
|
|
||||||
void setupModelData();
|
|
||||||
QModelIndex indexFromItem( ProgressTreeItem* item );
|
|
||||||
|
|
||||||
ProgressTreeRoot* m_rootItem;
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif // PROGRESSTREEMODEL_H
|
|
@ -1,85 +0,0 @@
|
|||||||
/* === This file is part of Calamares - <https://github.com/calamares> ===
|
|
||||||
*
|
|
||||||
* Copyright 2014-2015, Teo Mrnjavac <teo@kde.org>
|
|
||||||
*
|
|
||||||
* Calamares is free software: you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License as published by
|
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
|
||||||
* Calamares is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include "ViewStepItem.h"
|
|
||||||
|
|
||||||
#include "ProgressTreeModel.h"
|
|
||||||
|
|
||||||
#include "Settings.h"
|
|
||||||
#include "ViewManager.h"
|
|
||||||
#include "viewpages/ViewStep.h"
|
|
||||||
|
|
||||||
|
|
||||||
ViewStepItem::ViewStepItem( std::function< QString() > prettyName,
|
|
||||||
std::function< const Calamares::ViewStep*() > accessor,
|
|
||||||
ProgressTreeItem* parent )
|
|
||||||
: ProgressTreeItem( parent )
|
|
||||||
, m_accessor( accessor )
|
|
||||||
, m_prettyName( prettyName )
|
|
||||||
, m_step( nullptr )
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
ViewStepItem::ViewStepItem( const Calamares::ViewStep* step, ProgressTreeItem* parent )
|
|
||||||
: ProgressTreeItem( parent )
|
|
||||||
, m_step( step )
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
void
|
|
||||||
ViewStepItem::appendChild( ProgressTreeItem* item )
|
|
||||||
{
|
|
||||||
Q_ASSERT( false );
|
|
||||||
Q_UNUSED( item )
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
QVariant
|
|
||||||
ViewStepItem::data( int role ) const
|
|
||||||
{
|
|
||||||
if ( role == Qt::DisplayRole )
|
|
||||||
{
|
|
||||||
return m_step ? m_step->prettyName() : m_prettyName();
|
|
||||||
}
|
|
||||||
if ( Calamares::Settings::instance()->debugMode() && role == Qt::ToolTipRole )
|
|
||||||
{
|
|
||||||
QString toolTip( "<b>Debug information</b>" );
|
|
||||||
if ( m_step )
|
|
||||||
{
|
|
||||||
toolTip.append( "<br/>Type:\tViewStep" );
|
|
||||||
toolTip.append( QString( "<br/>Pretty:\t%1" ).arg( m_step->prettyName() ) );
|
|
||||||
toolTip.append( QString( "<br/>Status:\t%1" ).arg( m_step->prettyStatus() ) );
|
|
||||||
toolTip.append( QString( "<br/>Source:\t%1" )
|
|
||||||
.arg( m_step->moduleInstanceKey().isValid() ? m_step->moduleInstanceKey().toString()
|
|
||||||
: QStringLiteral( "built-in" ) ) );
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
toolTip.append( "<br/>Type:\tDelegate" );
|
|
||||||
toolTip.append( QString( "<br/>Pretty:\t%1" ).arg( m_prettyName() ) );
|
|
||||||
}
|
|
||||||
return toolTip;
|
|
||||||
}
|
|
||||||
if ( role == ProgressTreeModel::ProgressTreeItemCurrentRole )
|
|
||||||
{
|
|
||||||
return m_step ? ( Calamares::ViewManager::instance()->currentStep() == m_step )
|
|
||||||
: ( Calamares::ViewManager::instance()->currentStep() == m_accessor() );
|
|
||||||
}
|
|
||||||
return QVariant();
|
|
||||||
}
|
|
@ -1,53 +0,0 @@
|
|||||||
/* === This file is part of Calamares - <https://github.com/calamares> ===
|
|
||||||
*
|
|
||||||
* Copyright 2014-2015, Teo Mrnjavac <teo@kde.org>
|
|
||||||
*
|
|
||||||
* Calamares is free software: you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License as published by
|
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
|
||||||
* Calamares is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef VIEWSTEPITEM_H
|
|
||||||
#define VIEWSTEPITEM_H
|
|
||||||
|
|
||||||
#include "ProgressTreeItem.h"
|
|
||||||
|
|
||||||
#include <functional>
|
|
||||||
|
|
||||||
namespace Calamares
|
|
||||||
{
|
|
||||||
class ViewStep;
|
|
||||||
}
|
|
||||||
|
|
||||||
class ViewStepItem : public ProgressTreeItem
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
// We take a std::function< QString() > instead of a QString because the view asks for
|
|
||||||
// new strings on LanguageChange, and tr needs to be called again in that case.
|
|
||||||
explicit ViewStepItem( std::function< QString() > prettyName,
|
|
||||||
std::function< const Calamares::ViewStep*() > accessor,
|
|
||||||
ProgressTreeItem* parent = nullptr );
|
|
||||||
|
|
||||||
explicit ViewStepItem( const Calamares::ViewStep* step, ProgressTreeItem* parent = nullptr );
|
|
||||||
|
|
||||||
void appendChild( ProgressTreeItem* item ) override;
|
|
||||||
|
|
||||||
QVariant data( int role ) const override;
|
|
||||||
|
|
||||||
private:
|
|
||||||
const std::function< const Calamares::ViewStep*() > m_accessor;
|
|
||||||
const std::function< QString() > m_prettyName;
|
|
||||||
const Calamares::ViewStep* const m_step;
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
#endif // VIEWSTEPITEM_H
|
|
Loading…
Reference in New Issue