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

« back to all changes in this revision

Viewing changes to src/ops/setfilesystemlabeloperation.h

  • 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
#if !defined(SETFILESYSTEMLABELOPERATION__H)
 
21
 
 
22
#define SETFILESYSTEMLABELOPERATION__H
 
23
 
 
24
#include "ops/operation.h"
 
25
 
 
26
#include <QString>
 
27
 
 
28
class OperationStack;
 
29
class Partition;
 
30
 
 
31
class SetFileSystemLabelJob;
 
32
 
 
33
/** @brief Set a FileSystem label.
 
34
 
 
35
        Sets the FileSystem label for the given Partition.
 
36
 
 
37
        @author vl@fidra.de
 
38
*/
 
39
class SetFileSystemLabelOperation : public Operation
 
40
{
 
41
        friend class OperationStack;
 
42
 
 
43
        Q_OBJECT
 
44
 
 
45
        public:
 
46
                SetFileSystemLabelOperation(Partition& p, const QString& newlabel);
 
47
 
 
48
        public:
 
49
                QString iconName() const { return "edit-rename"; }
 
50
                QString description() const;
 
51
                void preview();
 
52
                void undo();
 
53
 
 
54
        protected:
 
55
                Partition& labeledPartition() { return m_LabeledPartition; }
 
56
                const Partition& labeledPartition() const { return m_LabeledPartition; }
 
57
 
 
58
                const QString& oldLabel() const { return m_OldLabel; }
 
59
                const QString& newLabel() const { return m_NewLabel; }
 
60
 
 
61
                void setOldLabel(const QString& l) { m_OldLabel = l; }
 
62
 
 
63
                SetFileSystemLabelJob* labelJob() { return m_LabelJob; }
 
64
                
 
65
        private:
 
66
                Partition& m_LabeledPartition;
 
67
                QString m_OldLabel;
 
68
                QString m_NewLabel;
 
69
                SetFileSystemLabelJob* m_LabelJob;
 
70
};
 
71
 
 
72
#endif