/************************************************************************* * Copyright (C) 2016 by Chantara Tith * * Copyright (C) 2016 by Andrius Štikonas * * * * 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 .* *************************************************************************/ #if !defined(CREATEVOLUMEGROUPOPERATION_H) #define CREATEVOLUMEGROUPOPERATION_H #include "util/libpartitionmanagerexport.h" #include "ops/operation.h" #include "core/lvmdevice.h" #include class CreateVolumeGroupJob; class OperationStack; class LIBKPMCORE_EXPORT CreateVolumeGroupOperation : public Operation { Q_DISABLE_COPY(CreateVolumeGroupOperation) friend class OperationStack; public: CreateVolumeGroupOperation(const QString& vgName, const QList& 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& PVList() { return m_PVList; } private: CreateVolumeGroupJob* m_CreateVolumeGroupJob; const QList m_PVList; }; #endif