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-17 06:00:25 -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-17 06:00:25 -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-17 06:00:25 -07:00
|
|
|
*/
|
2013-05-27 05:20:16 -06:00
|
|
|
|
|
|
|
|
|
|
|
#ifndef GPARTED_FAT16_H
|
|
|
|
#define GPARTED_FAT16_H
|
2004-11-17 06:00:25 -07:00
|
|
|
|
2016-10-18 16:45:28 -06:00
|
|
|
#include "FileSystem.h"
|
|
|
|
#include "Partition.h"
|
2004-11-17 06:00:25 -07:00
|
|
|
|
|
|
|
namespace GParted
|
|
|
|
{
|
|
|
|
|
|
|
|
class fat16 : public FileSystem
|
|
|
|
{
|
2013-05-14 02:30:55 -06:00
|
|
|
const enum FILESYSTEM specific_type ;
|
2013-07-25 16:18:57 -06:00
|
|
|
Glib::ustring create_cmd ;
|
|
|
|
Glib::ustring check_cmd ;
|
2004-11-17 06:00:25 -07:00
|
|
|
public:
|
2013-07-25 16:18:57 -06:00
|
|
|
fat16( enum FILESYSTEM type ) : specific_type( type ), create_cmd( "" ), check_cmd( "" ) {} ;
|
2015-05-16 02:38:22 -06:00
|
|
|
const Glib::ustring get_custom_text( CUSTOM_TEXT ttype, int index = 0 ) const;
|
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 check_repair( const Partition & partition, OperationDetail & operationdetail ) ;
|
2012-01-30 11:33:33 -07:00
|
|
|
|
2013-05-14 02:30:55 -06:00
|
|
|
private:
|
2012-01-30 11:33:33 -07:00
|
|
|
static const Glib::ustring Change_UUID_Warning [] ;
|
2015-09-29 22:02:43 -06:00
|
|
|
const Glib::ustring sanitize_label( const Glib::ustring & label ) const;
|
2004-11-17 06:00:25 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
} //GParted
|
|
|
|
|
2013-05-27 05:20:16 -06:00
|
|
|
#endif /* GPARTED_FAT16_H */
|