~ubuntu-branches/ubuntu/karmic/partitionmanager/karmic

« back to all changes in this revision

Viewing changes to src/core/partitionnode.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(PARTITIONNODE__H)
 
21
 
 
22
#define PARTITIONNODE__H
 
23
 
 
24
#include <QObject>
 
25
#include <QList>
 
26
#include <qglobal.h>
 
27
 
 
28
class Partition;
 
29
class PartitionRole;
 
30
 
 
31
/** @brief A node in the tree of partitions.
 
32
 
 
33
        The root in this tree is the PartitionTable. The primaries are the child nodes; extended partitions again
 
34
        have child nodes.
 
35
 
 
36
        @see Device, PartitionTable, Partition
 
37
        @author vl@fidra.de
 
38
*/
 
39
class PartitionNode : public QObject
 
40
{
 
41
        Q_OBJECT
 
42
 
 
43
        public:
 
44
                typedef QList<Partition*> Partitions;
 
45
 
 
46
        protected:
 
47
                PartitionNode() {}
 
48
                virtual ~PartitionNode() {}
 
49
 
 
50
        public:
 
51
                virtual bool insert(Partition* partNew);
 
52
                
 
53
                virtual Partition* predecessor(Partition& p);
 
54
                virtual const Partition* predecessor(const Partition& p) const;
 
55
 
 
56
                virtual Partition* successor(Partition& p);
 
57
                virtual const Partition* successor(const Partition& p) const;
 
58
 
 
59
                virtual bool remove(Partition* p);
 
60
                virtual Partition* findPartitionBySector(qint64 s, const PartitionRole& role);
 
61
                virtual const Partition* findPartitionBySector(qint64 s, const PartitionRole& role) const;
 
62
                virtual void reparent(Partition& p);
 
63
 
 
64
                virtual Partitions& children() = 0;
 
65
                virtual PartitionNode* parent() = 0;
 
66
                virtual bool isRoot() const = 0;
 
67
                virtual const PartitionNode* parent() const = 0;
 
68
                virtual const Partitions& children() const = 0;
 
69
                virtual void append(Partition* p) = 0;
 
70
                virtual qint32 highestMountedChild() const;
 
71
                virtual bool isChildMounted() const;
 
72
 
 
73
        protected:
 
74
                virtual void clearChildren();
 
75
};
 
76
 
 
77
#endif