137 lines
3.1 KiB
C++
137 lines
3.1 KiB
C++
/* Copyright (C) 2004 Bart
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
|
|
|
|
/* UTILS
|
|
* Some stuff i need in a lot of places so i dropped in all together in one file.
|
|
*/
|
|
|
|
#ifndef UTILS
|
|
#define UTILS
|
|
|
|
#include "../include/i18n.h"
|
|
|
|
#include <gtkmm/label.h>
|
|
#include <glibmm/ustring.h>
|
|
|
|
#include <iostream>
|
|
|
|
namespace GParted
|
|
{
|
|
|
|
typedef long long Sector;
|
|
|
|
//sizeunits defined in sectors of 512 bytes..
|
|
#define KIBIBYTE 2
|
|
#define MEBIBYTE 2048
|
|
#define GIBIBYTE 2097152
|
|
#define TEBIBYTE 2147483648U
|
|
|
|
enum FILESYSTEM
|
|
{
|
|
FS_UNALLOCATED = 0,
|
|
FS_UNKNOWN = 1,
|
|
FS_UNFORMATTED = 2,
|
|
FS_EXTENDED = 3,
|
|
|
|
FS_EXT2 = 4,
|
|
FS_EXT3 = 5,
|
|
FS_LINUX_SWAP = 6,
|
|
FS_FAT16 = 7,
|
|
FS_FAT32 = 8,
|
|
FS_NTFS = 9,
|
|
FS_REISERFS = 10,
|
|
FS_REISER4 = 11,
|
|
FS_XFS = 12,
|
|
FS_JFS = 13,
|
|
FS_HFS = 14,
|
|
FS_HFSPLUS = 15,
|
|
FS_UFS = 16,
|
|
|
|
FS_USED = 17,
|
|
FS_UNUSED = 18
|
|
};
|
|
|
|
enum SIZE_UNIT
|
|
{
|
|
UNIT_SECTOR = 0,
|
|
UNIT_BYTE = 1,
|
|
|
|
UNIT_KIB = 2,
|
|
UNIT_MIB = 3,
|
|
UNIT_GIB = 4,
|
|
UNIT_TIB = 5,
|
|
};
|
|
|
|
//struct to store filesysteminformation
|
|
struct FS
|
|
{
|
|
enum Support
|
|
{
|
|
NONE = 0,
|
|
LIBPARTED = 1,
|
|
EXTERNAL = 2
|
|
};
|
|
|
|
FILESYSTEM filesystem ;
|
|
Support read ; //can we get the amount of used sectors?
|
|
Support create ;
|
|
Support grow ;
|
|
Support shrink ;
|
|
Support move ; //startpoint and endpoint
|
|
Support check ; //some checktool available?
|
|
Support copy ;
|
|
|
|
Sector MIN ;
|
|
Sector MAX ;
|
|
|
|
FS()
|
|
{
|
|
read = create = grow = shrink = move = check = copy = NONE;
|
|
MIN = MAX = 0 ;
|
|
}
|
|
};
|
|
|
|
|
|
class Utils
|
|
{
|
|
public:
|
|
static Sector round( double double_value ) ;
|
|
static Gtk::Label * mk_label( const Glib::ustring & text,
|
|
bool use_markup = true,
|
|
Gtk::AlignmentEnum x_align = Gtk::ALIGN_LEFT,
|
|
Gtk::AlignmentEnum y_align = Gtk::ALIGN_CENTER,
|
|
bool wrap = false,
|
|
const Glib::ustring & text_color = "black" ) ;
|
|
static Glib::ustring num_to_str( Sector number, bool use_C_locale = false ) ;
|
|
static Glib::ustring get_color( FILESYSTEM filesystem ) ;
|
|
static Glib::RefPtr<Gdk::Pixbuf> get_color_as_pixbuf( FILESYSTEM filesystem, int width, int height ) ;
|
|
static Glib::ustring get_filesystem_string( FILESYSTEM filesystem ) ;
|
|
static Glib::ustring format_size( Sector size ) ;
|
|
static double sector_to_unit( Sector sectors, SIZE_UNIT size_unit ) ;
|
|
static int execute_command( const Glib::ustring & command,
|
|
Glib::ustring & output,
|
|
Glib::ustring & error,
|
|
bool use_C_locale = false ) ;
|
|
};
|
|
|
|
|
|
}//GParted
|
|
|
|
#endif //UTILS
|