kpmcore/src/ops/createvolumegroupoperation.h

75 lines
2.4 KiB
C++

/*************************************************************************
* Copyright (C) 2016 by Chantara Tith <tith.chantara@gmail.com> *
* Copyright (C) 2016 by Andrius Štikonas <andrius@stikonas.eu> *
* *
* This program 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. *
* *
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>.*
*************************************************************************/
#if !defined(CREATEVOLUMEGROUPOPERATION_H)
#define CREATEVOLUMEGROUPOPERATION_H
#include "util/libpartitionmanagerexport.h"
#include "ops/operation.h"
#include "core/lvmdevice.h"
#include <QString>
class CreateVolumeGroupJob;
class OperationStack;
class LIBKPMCORE_EXPORT CreateVolumeGroupOperation : public Operation
{
Q_DISABLE_COPY(CreateVolumeGroupOperation)
friend class OperationStack;
public:
CreateVolumeGroupOperation(const QString& vgName, const QList<const Partition*>& pvList, const qint32 peSize = 4);
public:
QString iconName() const override {
return QStringLiteral("document-new");
}
QString description() const override;
virtual bool targets(const Device&) const override {
return true;
}
virtual bool targets(const Partition&) const override;
virtual void preview() override;
virtual void undo() override;
static bool canCreate();
protected:
CreateVolumeGroupJob* createVolumeGroupJob() {
return m_CreateVolumeGroupJob;
}
const QList<const Partition*>& PVList() {
return m_PVList;
}
private:
CreateVolumeGroupJob* m_CreateVolumeGroupJob;
const QList<const Partition*> m_PVList;
};
#endif