kpmcore/src/ops/setfilesystemlabeloperation...

62 lines
1.7 KiB
C++
Raw Permalink Normal View History

/*
SPDX-FileCopyrightText: 2008-2010 Volker Lanz <vl@fidra.de>
SPDX-FileCopyrightText: 2014-2016 Andrius Štikonas <andrius@stikonas.eu>
SPDX-License-Identifier: GPL-3.0-or-later
*/
#include "ops/setfilesystemlabeloperation.h"
#include "core/partition.h"
#include "core/device.h"
#include "jobs/setfilesystemlabeljob.h"
#include "fs/filesystem.h"
#include <QString>
#include <KLocalizedString>
/** Creates a new SetFileSystemLabelOperation.
2015-07-13 15:16:36 +01:00
@param p the Partition with the FileSystem to set the label for
@param newlabel the new label
*/
SetFileSystemLabelOperation::SetFileSystemLabelOperation(Partition& p, const QString& newlabel) :
2015-07-13 15:16:36 +01:00
Operation(),
m_LabeledPartition(p),
m_OldLabel(labeledPartition().fileSystem().label()),
m_NewLabel(newlabel),
m_LabelJob(new SetFileSystemLabelJob(labeledPartition(), newLabel()))
{
2015-07-13 15:16:36 +01:00
addJob(labelJob());
}
bool SetFileSystemLabelOperation::targets(const Device& d) const
{
2015-07-13 15:16:36 +01:00
return labeledPartition().devicePath() == d.deviceNode();
}
bool SetFileSystemLabelOperation::targets(const Partition& p) const
{
2015-07-13 15:16:36 +01:00
return p == labeledPartition();
}
void SetFileSystemLabelOperation::preview()
{
2015-07-13 15:16:36 +01:00
labeledPartition().fileSystem().setLabel(newLabel());
}
void SetFileSystemLabelOperation::undo()
{
2015-07-13 15:16:36 +01:00
labeledPartition().fileSystem().setLabel(oldLabel());
}
QString SetFileSystemLabelOperation::description() const
{
2015-07-13 15:16:36 +01:00
if (oldLabel().isEmpty())
return xi18nc("@info:status", "Set label for partition <filename>%1</filename> to \"%2\"", labeledPartition().deviceNode(), newLabel());
return xi18nc("@info:status", "Set label for partition <filename>%1</filename> from \"%2\" to \"%3\"", labeledPartition().deviceNode(), oldLabel(), newLabel());
}