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

« back to all changes in this revision

Viewing changes to src/ops/createpartitiontableoperation.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(CREATEPARTITIONTABLEOPERATION__H)
 
21
 
 
22
#define CREATEPARTITIONTABLEOPERATION__H
 
23
 
 
24
#include "ops/operation.h"
 
25
 
 
26
#include <QString>
 
27
 
 
28
class Device;
 
29
class CreatePartitionTableJob;
 
30
class PartitionTable;
 
31
 
 
32
/** @brief Create a PartitionTable.
 
33
        @author vl@fidra.de
 
34
*/
 
35
class CreatePartitionTableOperation : public Operation
 
36
{
 
37
        Q_OBJECT
 
38
 
 
39
        public:
 
40
                CreatePartitionTableOperation(Device& d);
 
41
                ~CreatePartitionTableOperation();
 
42
 
 
43
        public:
 
44
                QString iconName() const { return "edit-clear"; }
 
45
                QString description() const;
 
46
                void preview();
 
47
                void undo();
 
48
                bool execute(Report& parent);
 
49
 
 
50
                static bool canCreate(const Device* device);
 
51
 
 
52
        protected:
 
53
                Device& targetDevice() { return m_TargetDevice; }
 
54
                const Device& targetDevice() const { return m_TargetDevice; }
 
55
 
 
56
                PartitionTable* partitionTable() { return m_PartitionTable; }
 
57
                PartitionTable* oldPartitionTable() { return m_OldPartitionTable; }
 
58
 
 
59
                CreatePartitionTableJob* createPartitionTableJob() { return m_CreatePartitionTableJob; }
 
60
 
 
61
        private:
 
62
                Device& m_TargetDevice;
 
63
                PartitionTable* m_OldPartitionTable;
 
64
                PartitionTable* m_PartitionTable;
 
65
                CreatePartitionTableJob* m_CreatePartitionTableJob;
 
66
};
 
67
 
 
68
#endif