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

« back to all changes in this revision

Viewing changes to src/fs/hfs.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(HFS__H)
 
21
 
 
22
#define HFS__H
 
23
 
 
24
#include "fs/filesystem.h"
 
25
 
 
26
#include <qglobal.h>
 
27
 
 
28
class Report;
 
29
 
 
30
class QString;
 
31
 
 
32
namespace FS
 
33
{
 
34
        /** @brief An hfs file system.
 
35
                @author vl@fidra.de
 
36
         */
 
37
        class hfs : public FileSystem
 
38
        {
 
39
                public:
 
40
                        hfs(qint64 firstsector, qint64 lastsector, qint64 sectorsused, const QString& label);
 
41
 
 
42
                public:
 
43
                        static void init();
 
44
 
 
45
                        virtual QString readLabel(const QString& deviceNode) const;
 
46
                        virtual bool check(Report& report, const QString& deviceNode) const;
 
47
                        virtual bool create(Report& report, const QString& deviceNode) const;
 
48
 
 
49
                        virtual SupportType supportGetUsed() const { return m_GetUsed; }
 
50
                        virtual SupportType supportGetLabel() const { return m_GetLabel; }
 
51
                        virtual SupportType supportCreate() const { return m_Create; }
 
52
                        virtual SupportType supportShrink() const { return m_Shrink; }
 
53
                        virtual SupportType supportMove() const { return m_Move; }
 
54
                        virtual SupportType supportCheck() const { return m_Check; }
 
55
                        virtual SupportType supportCopy() const { return m_Copy; }
 
56
                        virtual SupportType supportBackup() const { return m_Backup; }
 
57
                        
 
58
                        virtual qint64 maxCapacity() const;
 
59
                        
 
60
                protected:
 
61
                        static SupportType m_GetUsed;
 
62
                        static SupportType m_GetLabel;
 
63
                        static SupportType m_Create;
 
64
                        static SupportType m_Shrink;
 
65
                        static SupportType m_Move;
 
66
                        static SupportType m_Check;
 
67
                        static SupportType m_Copy;
 
68
                        static SupportType m_Backup;
 
69
        };
 
70
}
 
71
 
 
72
#endif