~ubuntu-branches/ubuntu/oneiric/partitionmanager/oneiric

« back to all changes in this revision

Viewing changes to src/ops/setpartflagsoperation.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Mercatante
  • Date: 2009-01-23 17:57:36 UTC
  • Revision ID: james.westby@ubuntu.com-20090123175736-2ltrhgg3m55dokbm
Tags: upstream-1.0.0~beta1a
ImportĀ upstreamĀ versionĀ 1.0.0~beta1a

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
 *   Copyright (C) 2008 by Volker Lanz <vl@fidra.de>                       *
 
3
 *                                                                         *
 
4
 *   This program is free software; you can redistribute it and/or modify  *
 
5
 *   it under the terms of the GNU General Public License as published by  *
 
6
 *   the Free Software Foundation; either version 2 of the License, or     *
 
7
 *   (at your option) any later version.                                   *
 
8
 *                                                                         *
 
9
 *   This program is distributed in the hope that it will be useful,       *
 
10
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 
11
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 
12
 *   GNU General Public License for more details.                          *
 
13
 *                                                                         *
 
14
 *   You should have received a copy of the GNU General Public License     *
 
15
 *   along with this program; if not, write to the                         *
 
16
 *   Free Software Foundation, Inc.,                                       *
 
17
 *   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA            *
 
18
 ***************************************************************************/
 
19
 
 
20
#include "ops/setpartflagsoperation.h"
 
21
 
 
22
#include "core/partition.h"
 
23
#include "core/partitionnode.h"
 
24
#include "core/partitiontable.h"
 
25
 
 
26
#include "jobs/setpartflagsjob.h"
 
27
 
 
28
#include "fs/filesystem.h"
 
29
 
 
30
#include <QString>
 
31
 
 
32
#include <kdebug.h>
 
33
#include <klocale.h>
 
34
 
 
35
/** Creates a new SetPartFlagsOperation.
 
36
        @param d the Device on which the Partition to set flags for is
 
37
        @param p the Partition to set new flags for
 
38
        @param flags the new flags to set
 
39
*/
 
40
SetPartFlagsOperation::SetPartFlagsOperation(Device& d, Partition& p, const PartitionTable::Flags& flags) :
 
41
        Operation(),
 
42
        m_TargetDevice(d),
 
43
        m_FlagPartition(p),
 
44
        m_OldFlags(flagPartition().activeFlags()),
 
45
        m_NewFlags(flags),
 
46
        m_FlagsJob(new SetPartFlagsJob(targetDevice(), flagPartition(), newFlags()))
 
47
{
 
48
        addJob(flagsJob());
 
49
}
 
50
 
 
51
void SetPartFlagsOperation::preview()
 
52
{
 
53
        flagPartition().setFlags(newFlags());
 
54
}
 
55
 
 
56
void SetPartFlagsOperation::undo()
 
57
{
 
58
        flagPartition().setFlags(oldFlags());
 
59
}
 
60
 
 
61
QString SetPartFlagsOperation::description() const
 
62
{
 
63
        if (PartitionTable::flagNames(newFlags()).size() == 0)
 
64
                return QString(i18nc("@info/plain", "Clear flags for partition <filename>%1</filename>", flagPartition().deviceNode()));
 
65
                
 
66
        return QString(i18nc("@info/plain", "Set flags for partition <filename>%1</filename> to \"%2\"", flagPartition().deviceNode(), PartitionTable::flagNames(newFlags()).join(",")));
 
67
}