2009-11-05 11:08:32 -07:00
|
|
|
/* Copyright (C) 2004 Bart
|
2010-10-19 13:35:53 -06:00
|
|
|
* Copyright (C) 2008, 2009, 2010 Curtis Gedak
|
2004-11-23 09:20:59 -07:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2005-12-07 04:21:27 -07:00
|
|
|
#ifndef DEFINE_NTFS
|
|
|
|
#define DEFINE_NTFS
|
2004-11-23 09:20:59 -07:00
|
|
|
|
|
|
|
#include "../include/FileSystem.h"
|
|
|
|
|
|
|
|
namespace GParted
|
|
|
|
{
|
|
|
|
|
|
|
|
class ntfs : public FileSystem
|
|
|
|
{
|
|
|
|
public:
|
2006-07-29 02:27:28 -06:00
|
|
|
FS get_filesystem_support() ;
|
2006-08-20 03:33:54 -06:00
|
|
|
void set_used_sectors( Partition & partition ) ;
|
2008-11-08 16:55:17 -07:00
|
|
|
void read_label( Partition & partition ) ;
|
|
|
|
bool write_label( const Partition & partition, OperationDetail & operationdetail ) ;
|
2006-08-20 03:33:54 -06:00
|
|
|
bool create( const Partition & new_partition, OperationDetail & operationdetail ) ;
|
|
|
|
bool resize( const Partition & partition_new, OperationDetail & operationdetail, bool fill_partition = false ) ;
|
2010-10-19 13:35:53 -06:00
|
|
|
bool move( const Partition & partition_new
|
|
|
|
, const Partition & partition_old
|
|
|
|
, OperationDetail & operationdetail
|
|
|
|
) ;
|
2006-08-20 03:33:54 -06:00
|
|
|
bool copy( const Glib::ustring & src_part_path,
|
2006-01-19 12:15:15 -07:00
|
|
|
const Glib::ustring & dest_part_path,
|
2006-08-20 03:33:54 -06:00
|
|
|
OperationDetail & operationdetail ) ;
|
|
|
|
bool check_repair( const Partition & partition, OperationDetail & operationdetail ) ;
|
2004-11-23 09:20:59 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
} //GParted
|
|
|
|
|
|
|
|
#endif //NTFS
|