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
|
2014-01-23 03:59:48 -07:00
|
|
|
* GNU General Public License for more details.
|
2004-11-23 09:20:59 -07:00
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2014-01-23 03:59:48 -07:00
|
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
2004-11-23 09:20:59 -07:00
|
|
|
*/
|
2013-05-27 05:20:16 -06:00
|
|
|
|
|
|
|
|
|
|
|
#ifndef GPARTED_NTFS_H
|
|
|
|
#define GPARTED_NTFS_H
|
2004-11-23 09:20:59 -07:00
|
|
|
|
|
|
|
#include "../include/FileSystem.h"
|
|
|
|
|
|
|
|
namespace GParted
|
|
|
|
{
|
|
|
|
|
|
|
|
class ntfs : public FileSystem
|
|
|
|
{
|
|
|
|
public:
|
2012-01-30 11:33:33 -07:00
|
|
|
const Glib::ustring get_custom_text( CUSTOM_TEXT ttype, int index = 0 ) ;
|
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 ) ;
|
2012-01-22 13:49:52 -07:00
|
|
|
void read_uuid( Partition & partition ) ;
|
|
|
|
bool write_uuid( 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 ) ;
|
2013-01-30 19:35:52 -07:00
|
|
|
bool copy( const Partition & src_part,
|
|
|
|
Partition & dest_part,
|
2006-08-20 03:33:54 -06:00
|
|
|
OperationDetail & operationdetail ) ;
|
|
|
|
bool check_repair( const Partition & partition, OperationDetail & operationdetail ) ;
|
2012-01-30 11:33:33 -07:00
|
|
|
|
|
|
|
static const Glib::ustring Change_UUID_Warning [] ;
|
2004-11-23 09:20:59 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
} //GParted
|
|
|
|
|
2013-05-27 05:20:16 -06:00
|
|
|
#endif /* GPARTED_NTFS_H */
|