/* === This file is part of Calamares - === * * Copyright 2014, Aurélien Gâteau * * Calamares 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. * * Calamares 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 Calamares. If not, see . */ #include #include #include // CalaPM #include #include #include #include CreatePartitionDialog::CreatePartitionDialog( Device* device, Partition* freePartition, QWidget* parent ) : QDialog( parent ) , m_ui( new Ui_CreatePartitionDialog ) , m_device( device ) , m_freePartition( freePartition ) { m_ui->setupUi( this ); FileSystemFactory::init(); QStringList fsNames; for ( auto fs : FileSystemFactory::map() ) { if ( fs->supportCreate() != FileSystem::cmdSupportNone && fs->type() != FileSystem::Extended ) { fsNames << fs->name(); } } m_ui->fsComboBox->addItems( fsNames ); qint64 maxSize = ( freePartition->lastSector() - freePartition->firstSector() + 1 ) * device->logicalSectorSize(); m_ui->sizeSpinBox->setMaximum( maxSize / 1024 / 1024 ); m_ui->sizeSpinBox->setValue( m_ui->sizeSpinBox->maximum() ); } CreatePartitionDialog::~CreatePartitionDialog() {} CreatePartitionJob* CreatePartitionDialog::createJob() { qint64 first = m_freePartition->firstSector(); // FIXME: Check rounding errors here qint64 last = first + qint64( m_ui->sizeSpinBox->value() ) * 1024 * 1024 / m_device->logicalSectorSize(); FileSystem::Type type = FileSystem::typeForName( m_ui->fsComboBox->currentText() ); FileSystem* fs = FileSystemFactory::create( type, first, last ); PartitionNode* parent = m_freePartition->parent(); Partition* partition = new Partition( parent, *m_device, PartitionRole( PartitionRole::Primary ), // FIXME: Support extended partitions fs, first, last, QString() /* path */ ); return new CreatePartitionJob( m_device, partition ); }