gparted/include/TreeView_Detail.h

89 lines
2.7 KiB
C
Raw Normal View History

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 TREEVIEW_DETAIL
#define TREEVIEW_DETAIL
#include "../include/Partition.h"
#include <gtkmm/treeview.h>
#include <gtkmm/treestore.h>
#include <gtkmm/entry.h>
#include <gtkmm/stock.h>
#include <gdkmm/pixbuf.h>
#include <vector>
namespace GParted
{
class TreeView_Detail : public Gtk::TreeView
{
public:
TreeView_Detail( );
void Load_Partitions( const std::vector<Partition> & partitions ) ;
2004-09-19 14:24:53 -06:00
void Set_Selected( const Partition & partition );
void Clear( ) ;
2004-09-19 14:24:53 -06:00
//signals for interclass communication
sigc::signal<void, GdkEventButton *, const Partition & > signal_mouse_click;
2004-09-19 14:24:53 -06:00
private:
void Create_Row( const Gtk::TreeRow & treerow, const Partition & partition );
2004-09-19 14:24:53 -06:00
//overridden signal
virtual bool on_button_press_event(GdkEventButton *);
Gtk::TreeRow row, childrow;
Gtk::TreeIter iter, iter_child;
2004-09-19 14:24:53 -06:00
Glib::RefPtr<Gtk::TreeStore> treestore_detail;
Glib::RefPtr<Gtk::TreeSelection> treeselection;
//columns for this treeview
struct treeview_detail_Columns : public Gtk::TreeModelColumnRecord
{
Gtk::TreeModelColumn<Glib::ustring> partition;
Gtk::TreeModelColumn<Glib::ustring> filesystem;
2004-09-19 14:24:53 -06:00
Gtk::TreeModelColumn<Glib::ustring> size;
Gtk::TreeModelColumn<Glib::ustring> used;
Gtk::TreeModelColumn<Glib::ustring> unused;
Gtk::TreeModelColumn< Glib::RefPtr<Gdk::Pixbuf> > color;
2004-09-19 14:24:53 -06:00
Gtk::TreeModelColumn<Glib::ustring> text_color;
Gtk::TreeModelColumn< Glib::RefPtr<Gdk::Pixbuf> > status_icon;
2004-09-19 14:24:53 -06:00
Gtk::TreeModelColumn<Glib::ustring> flags;
Gtk::TreeModelColumn<Partition> partition_struct; //hidden column ( see also on_button_press_event )
2004-09-19 14:24:53 -06:00
treeview_detail_Columns( )
{
add( partition ); add( filesystem );
add( size ); add( used ); add( unused );
add( color ); add( text_color ); add( status_icon );
add( flags ); add(partition_struct);
2004-09-19 14:24:53 -06:00
}
};
treeview_detail_Columns treeview_detail_columns;
Partition partition_temp ; //used in Set_Selected to make the check a bit more readable
};
} //GParted
#endif //TREEVIEW_DETAIL