partitionmanager/src/gui/createvolumegroupdialog.h

56 lines
2.0 KiB
C++

/*************************************************************************
* Copyright (C) 2016 by Chantara Tith <tith.chantara@gmail.com> *
* *
* 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(CREATEVOLUMEGROUPDIALOG__H)
#define CREATEVOLUMEGROUPDIALOG__H
#include <core/device.h>
#include <fs/lvm2_pv.h>
#include "gui/volumegroupdialog.h"
class Device;
class CreateVolumeGroupDialog : public VolumeGroupDialog
{
Q_DISABLE_COPY(CreateVolumeGroupDialog)
public:
CreateVolumeGroupDialog(QWidget* parent, QString& vgName, std::vector<const Partition*>& pvList, qint32& peSize, QList<Device*> devices);
protected:
void accept() override;
void setupDialog() override;
void setupConnections() override;
protected:
void onVGNameChanged(const QString& vgname);
void onSpinPESizeChanged(int newsize);
qint32& peSize() {
return m_PESize;
}
qint32& m_PESize;
private:
const QList<Device*> m_Devices; // List of all devices found on the system
};
#endif