2004-09-19 14:24:53 -06:00
/* 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 .
*/
# ifndef VBOX_VISUALDISK
# define VBOX_VISUALDISK
# include "../include/Partition.h"
# include "../include/Device.h"
# include <gtkmm/box.h>
# include <gtkmm/frame.h>
# include <gtkmm/eventbox.h>
# include <gtkmm/tooltips.h>
# include <gtkmm/checkbutton.h>
# include <gtkmm/drawingarea.h>
2005-12-15 08:10:34 -07:00
# include <gtkmm/image.h>
2004-09-19 14:24:53 -06:00
# define BORDER 8
namespace GParted
{
class VBox_VisualDisk : public Gtk : : VBox
{
//struct which contains visual information about the partitions. This prevents recalculation of everything after an expose en therefore saves performance..
struct Visual_Partition
{
//2 attributes used for selection ( see Set_Selected() an drawingarea_on_expose() for more info )
Sector sector_start ;
int index ;
int length ; //pixels
int used ; //pixels
int height ; //pixels
int text_y ; //pixels
Gdk : : Color color_fs ;
Gtk : : DrawingArea * drawingarea ;
Glib : : RefPtr < Gdk : : GC > gc ;
Glib : : RefPtr < Pango : : Layout > pango_layout ;
} ;
public :
VBox_VisualDisk ( const std : : vector < Partition > & partitions , const Sector device_length ) ;
2004-11-21 14:49:38 -07:00
~ VBox_VisualDisk ( ) ;
2004-09-19 14:24:53 -06:00
void Set_Selected ( const Partition & ) ;
//public signal for interclass communication
sigc : : signal < void , GdkEventButton * , const Partition & > signal_mouse_click ;
private :
2004-11-06 04:55:03 -07:00
void Build_Visual_Disk ( ) ; //i still dream of some fully resizeable visualdisk....
2004-11-21 14:49:38 -07:00
void Create_Visual_Partition ( const Partition & partition ) ;
2005-12-07 04:21:27 -07:00
void Prepare_Legend ( std : : vector < GParted : : FILESYSTEM > & legend , const std : : vector < Partition > & partitions ) ;
2004-09-19 14:24:53 -06:00
void Build_Legend ( ) ;
2004-10-07 08:12:34 -06:00
2004-09-19 14:24:53 -06:00
//signal handlers
2004-11-06 04:55:03 -07:00
void drawingarea_on_realize ( Visual_Partition * ) ;
2004-09-19 14:24:53 -06:00
bool drawingarea_on_expose ( GdkEventExpose * , Visual_Partition * ) ;
2004-11-06 04:55:03 -07:00
bool on_drawingarea_button_press ( GdkEventButton * , const Partition & ) ;
2004-09-19 14:24:53 -06:00
std : : vector < Partition > partitions ;
Sector device_length ;
Gtk : : Frame * frame_disk_legend ;
Gtk : : HBox hbox_disk_main , * hbox_disk , * hbox_extended , hbox_legend_main , * hbox_legend ;
Gtk : : CheckButton checkbutton_filesystem ;
Gtk : : Tooltips tooltips ;
2005-12-15 08:10:34 -07:00
Gtk : : Image * image ;
2004-09-19 14:24:53 -06:00
Visual_Partition * visual_partition ;
std : : vector < Visual_Partition * > visual_partitions ;
Gtk : : EventBox * eventbox_extended ;
Gdk : : Color color_used , color_unused , color_text ;
2004-10-02 03:39:16 -06:00
Glib : : ustring str_temp ;
2004-11-06 04:55:03 -07:00
int temp , selected_partition , SCREEN_WIDTH ;
2004-09-19 14:24:53 -06:00
} ;
} //GParted
# endif //VBOX_VISUALDISK