gparted/include/Dialog_Progress.h

91 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 DIALOG_PARTITION_PROGRESS
#define DIALOG_PARTITION_PROGRESS
2004-09-20 09:46:21 -06:00
#include "../include/i18n.h"
2004-10-06 13:06:43 -06:00
#include "../include/Utils.h"
#include "../include/Operation.h"
2004-09-20 09:46:21 -06:00
2004-09-19 14:24:53 -06:00
#include <gtkmm/dialog.h>
#include <gtkmm/progressbar.h>
#include <gtkmm/treeview.h>
#include <gtkmm/treestore.h>
#include <gtkmm/scrolledwindow.h>
#include <gtkmm/expander.h>
2004-09-19 14:24:53 -06:00
2004-10-06 13:06:43 -06:00
namespace GParted
{
2004-09-19 14:24:53 -06:00
class Dialog_Progress : public Gtk::Dialog
{
public:
Dialog_Progress( const std::vector<Operation> & operations ) ;
~Dialog_Progress();
sigc::signal< bool, Operation & > signal_apply_operation ;
2004-09-19 14:24:53 -06:00
private:
void update_operation_details( const Gtk::TreeRow & treerow, const OperationDetails & operation_details ) ;
void on_signal_show() ;
void thread_apply_operation( Operation * operation ) ;
void on_response( int response_id ) ;
2004-10-06 13:06:43 -06:00
Gtk::Label label_current ;
2004-09-19 14:24:53 -06:00
Gtk::ProgressBar progressbar_all, progressbar_current ;
Gtk::TreeView treeview_operations ;
Gtk::TreeRow treerow ;
Gtk::ScrolledWindow scrolledwindow ;
Gtk::Expander expander_details ;
Glib::RefPtr<Gdk::Pixbuf> icon_execute ;
Glib::RefPtr<Gdk::Pixbuf> icon_succes ;
Glib::RefPtr<Gdk::Pixbuf> icon_error ;
Glib::RefPtr<Gtk::TreeStore> treestore_operations;
struct treeview_operations_Columns : public Gtk::TreeModelColumnRecord
{
Gtk::TreeModelColumn<Glib::ustring> operation_description;
Gtk::TreeModelColumn< Glib::RefPtr<Gdk::Pixbuf> > operation_icon;
Gtk::TreeModelColumn< Glib::RefPtr<Gdk::Pixbuf> > status_icon;
Gtk::TreeModelColumn<OperationDetails::Status> hidden_status ;
treeview_operations_Columns()
{
add( operation_description );
add( operation_icon );
add( status_icon ) ;
add( hidden_status ) ;
}
};
treeview_operations_Columns treeview_operations_columns;
2004-09-19 14:24:53 -06:00
std::vector<Operation> operations ;
bool pulse, succes ;
Glib::Thread *thread ;
double fraction ;
unsigned int t ;
Glib::ustring str_temp ;
2004-09-19 14:24:53 -06:00
};
2004-10-06 13:06:43 -06:00
}//GParted
2004-09-19 14:24:53 -06:00
#endif //DIALOG_PARTITION_PROGRESS