2014-12-12 00:00:02 -07:00
|
|
|
/* Copyright (C) 2015 Michael Zimmermann
|
|
|
|
*
|
|
|
|
* 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 2 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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef GPARTED_OPERATIONNAMEPARTITION_H
|
|
|
|
#define GPARTED_OPERATIONNAMEPARTITION_H
|
|
|
|
|
|
|
|
#include "../include/Operation.h"
|
2015-05-23 13:22:37 -06:00
|
|
|
#include "../include/Partition.h"
|
|
|
|
#include "../include/PartitionVector.h"
|
2014-12-12 00:00:02 -07:00
|
|
|
|
|
|
|
namespace GParted
|
|
|
|
{
|
|
|
|
|
|
|
|
class OperationNamePartition: public Operation
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
OperationNamePartition( const Device & device,
|
|
|
|
const Partition & partition_orig,
|
|
|
|
const Partition & partition_new );
|
2015-12-21 07:27:21 -07:00
|
|
|
virtual ~OperationNamePartition();
|
2014-12-12 00:00:02 -07:00
|
|
|
|
2015-05-23 13:22:37 -06:00
|
|
|
void apply_to_visual( PartitionVector & partitions );
|
2014-12-12 00:00:02 -07:00
|
|
|
|
|
|
|
private:
|
2015-09-20 03:50:57 -06:00
|
|
|
OperationNamePartition( const OperationNamePartition & src ); // Not implemented copy constructor
|
|
|
|
OperationNamePartition & operator=( const OperationNamePartition & rhs ); // Not implemented copy assignment operator
|
|
|
|
|
2014-12-12 00:00:02 -07:00
|
|
|
void create_description();
|
2015-09-12 07:59:40 -06:00
|
|
|
bool merge_operations( const Operation & candidate );
|
2014-12-12 00:00:02 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
} //GParted
|
|
|
|
|
|
|
|
#endif /* GPARTED_OPERATIONNAMEPARTITION_H */
|