/************************************************************************* * Copyright (C) 2016 by Chantara Tith * * * * 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 .* *************************************************************************/ #include "gui/resizevolumegroupdialog.h" #include "gui/volumegroupwidget.h" #include #include #include #include #include #include #include #include #include /** Creates a new ResizeVolumeGroupDialog @param parent pointer to the parent widget @param dev the Device to show properties for */ ResizeVolumeGroupDialog::ResizeVolumeGroupDialog(QWidget* parent, const QList& devices, QString& vgName, QStringList& partList, VolumeManagerDevice& d) : VolumeGroupDialog(parent, vgName, partList), m_Devices(devices), m_Device(d) { setWindowTitle(xi18nc("@title:window", "Resize Volume Group")); setupDialog(); setupConstraints(); KConfigGroup kcg(KSharedConfig::openConfig(), "resizeVolumeDialog"); restoreGeometry(kcg.readEntry("Geometry", QByteArray())); } void ResizeVolumeGroupDialog::setupDialog() { if (dialogWidget().volumeType().currentText() == QStringLiteral("LVM")) { dialogWidget().listPV().addPartitionList(device().deviceNodes(), true); for (const auto &p : FS::lvm2_pv::getFreePV(m_Devices)) { if (!LvmDevice::s_DirtyPVs.contains(p->deviceNode())) { dialogWidget().listPV().addPartition(p->deviceNode(), false); } } } } void ResizeVolumeGroupDialog::setupConstraints() { dialogWidget().vgName().setEnabled(false); dialogWidget().spinPESize().setEnabled(false); dialogWidget().volumeType().setEnabled(false); VolumeGroupDialog::setupConstraints(); } void ResizeVolumeGroupDialog::accept() { targetPVList() << dialogWidget().listPV().checkedItems(); QDialog::accept(); }