2020-08-25 16:05:56 +02:00
|
|
|
/* === This file is part of Calamares - <https://calamares.io> ===
|
2018-06-04 21:31:58 +02:00
|
|
|
*
|
2020-08-22 01:19:58 +02:00
|
|
|
* SPDX-FileCopyrightText: 2018 Caio Jordão Carvalho <caiojcarvalho@gmail.com>
|
|
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
2018-06-04 21:31:58 +02:00
|
|
|
*
|
2020-08-25 16:05:56 +02:00
|
|
|
* Calamares is Free Software: see the License-Identifier above.
|
2018-06-04 21:31:58 +02:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef LISTPHYSICALVOLUMEWIDGETITEM_H
|
|
|
|
#define LISTPHYSICALVOLUMEWIDGETITEM_H
|
|
|
|
|
|
|
|
#include <kpmcore/core/partition.h>
|
|
|
|
|
|
|
|
#include <QListWidgetItem>
|
|
|
|
|
|
|
|
class ListPhysicalVolumeWidgetItem : public QListWidgetItem
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ListPhysicalVolumeWidgetItem( const Partition* partition, bool checked );
|
|
|
|
|
|
|
|
const Partition* partition() const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
const Partition* m_partition;
|
|
|
|
};
|
|
|
|
|
2020-08-22 01:19:58 +02:00
|
|
|
#endif // LISTPHYSICALVOLUMEWIDGETITEM_H
|