PrettyName generator for FileSystem::Type.
This commit is contained in:
parent
6af901a675
commit
2986625cfd
@ -140,4 +140,48 @@ clonePartition( Device* device, Partition* partition )
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
QString
|
||||||
|
prettyNameForFileSystemType( FileSystem::Type t )
|
||||||
|
{
|
||||||
|
switch ( t )
|
||||||
|
{
|
||||||
|
case FileSystem::Unknown:
|
||||||
|
return QObject::tr( "unknown" );
|
||||||
|
case FileSystem::Extended:
|
||||||
|
return QObject::tr( "extended" );
|
||||||
|
case FileSystem::Unformatted:
|
||||||
|
return QObject::tr( "unformatted" );
|
||||||
|
case FileSystem::LinuxSwap:
|
||||||
|
return "swap";
|
||||||
|
case FileSystem::Fat16:
|
||||||
|
case FileSystem::Fat32:
|
||||||
|
case FileSystem::Ntfs:
|
||||||
|
case FileSystem::Xfs:
|
||||||
|
case FileSystem::Jfs:
|
||||||
|
case FileSystem::Hfs:
|
||||||
|
case FileSystem::Ufs:
|
||||||
|
case FileSystem::Hpfs:
|
||||||
|
case FileSystem::Luks:
|
||||||
|
case FileSystem::Ocfs2:
|
||||||
|
case FileSystem::Zfs:
|
||||||
|
case FileSystem::Nilfs2:
|
||||||
|
return FileSystem::nameForType( t ).toUpper();
|
||||||
|
case FileSystem::ReiserFS:
|
||||||
|
return "ReiserFS";
|
||||||
|
case FileSystem::Reiser4:
|
||||||
|
return "Reiser4";
|
||||||
|
case FileSystem::HfsPlus:
|
||||||
|
return "HFS+";
|
||||||
|
case FileSystem::Btrfs:
|
||||||
|
return "Btrfs";
|
||||||
|
case FileSystem::Exfat:
|
||||||
|
return "exFAT";
|
||||||
|
case FileSystem::Lvm2_PV:
|
||||||
|
return "LVM PV";
|
||||||
|
default:
|
||||||
|
return FileSystem::nameForType( t );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
} // namespace
|
} // namespace
|
||||||
|
@ -85,6 +85,8 @@ QList< Partition* > findPartitions( const QList< Device* >& devices,
|
|||||||
Partition* createNewPartition( PartitionNode* parent, const Device& device, const PartitionRole& role, FileSystem::Type fsType, qint64 firstSector, qint64 lastSector );
|
Partition* createNewPartition( PartitionNode* parent, const Device& device, const PartitionRole& role, FileSystem::Type fsType, qint64 firstSector, qint64 lastSector );
|
||||||
|
|
||||||
Partition* clonePartition( Device* device, Partition* partition );
|
Partition* clonePartition( Device* device, Partition* partition );
|
||||||
|
|
||||||
|
QString prettyNameForFileSystemType( FileSystem::Type t );
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* KPMHELPERS_H */
|
#endif /* KPMHELPERS_H */
|
||||||
|
Loading…
Reference in New Issue
Block a user