gparted/src/OperationLabelPartition.cc

70 lines
2.1 KiB
C++

/* Copyright (C) 2008 Curtis Gedak
*
* 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 Library General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include "../include/OperationLabelPartition.h"
namespace GParted
{
OperationLabelPartition::OperationLabelPartition( const Device & device,
const Partition & partition_orig,
const Partition & partition_new )
{
type = OPERATION_LABEL_PARTITION ;
this ->device = device ;
this ->partition_original = partition_orig ;
this ->partition_new = partition_new ;
}
void OperationLabelPartition::apply_to_visual( std::vector<Partition> & partitions )
{
if ( partition_original .inside_extended )
{
index_extended = find_index_extended( partitions ) ;
if ( index_extended >= 0 )
index = find_index_original( partitions[ index_extended ] .logicals ) ;
if ( index >= 0 )
partitions[ index_extended ] .logicals[ index ] = partition_new ;
}
else
{
index = find_index_original( partitions ) ;
if ( index >= 0 )
partitions[ index ] = partition_new ;
}
}
void OperationLabelPartition::create_description()
{
if( partition_new .label .empty() ) {
/*TO TRANSLATORS: looks like Clear Partition Label on /dev/hda3 */
description = String::ucompose( _("Clear Partition Label on %1"),
partition_new .get_path() ) ;
} else {
/*TO TRANSLATORS: looks like Set Partition Label "My Label" on /dev/hda3 */
description = String::ucompose( _("Set Partition Label \"%1\" on %2"),
partition_new .label,
partition_new .get_path() ) ;
}
}
} //GParted