2006-08-11 02:45:41 +02:00
|
|
|
// src/schedulables_tree_widget.hh - Copyright 2005, 2006, University
|
|
|
|
// of Padova, dept. of Pure and Applied
|
|
|
|
// Mathematics
|
|
|
|
//
|
|
|
|
// This file is part of SGPEMv2.
|
|
|
|
//
|
|
|
|
// This 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.
|
|
|
|
//
|
|
|
|
// SGPEMv2 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 General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with SGPEMv2; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
|
|
|
|
#ifndef SCHEDULABLES_TREE_WIDGET_HH
|
|
|
|
#define SCHEDULABLES_TREE_WIDGET_HH 1
|
|
|
|
|
2006-08-19 02:09:36 +02:00
|
|
|
namespace sgpem
|
|
|
|
{
|
|
|
|
class Process;
|
|
|
|
class Thread;
|
2006-08-20 19:52:46 +02:00
|
|
|
class AddRequestDialog;
|
2006-08-19 02:09:36 +02:00
|
|
|
}
|
|
|
|
|
2006-08-11 02:45:41 +02:00
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <gtkmm/treeview.h>
|
|
|
|
#include <gtkmm/treestore.h>
|
2006-08-12 02:35:40 +02:00
|
|
|
#include <gtkmm/menu.h>
|
|
|
|
#include <gtkmm/uimanager.h>
|
|
|
|
#include <gtkmm/actiongroup.h>
|
|
|
|
#include <gtkmm/dialog.h>
|
|
|
|
#include <libglademm/xml.h>
|
2006-08-11 02:45:41 +02:00
|
|
|
|
|
|
|
#include "backend/history_observer.hh"
|
|
|
|
|
|
|
|
namespace sgpem
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
\brief Temporary class to be used to proceed with the development
|
|
|
|
of the GUI until the cairo-based widget are fully working
|
|
|
|
*/
|
|
|
|
class SchedulablesTreeWidget : public Gtk::TreeView, public HistoryObserver
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
SchedulablesTreeWidget();
|
|
|
|
virtual ~SchedulablesTreeWidget();
|
|
|
|
|
|
|
|
virtual void update(const History& history);
|
2006-08-12 02:35:40 +02:00
|
|
|
|
|
|
|
bool on_button_press_event(GdkEventButton* event);
|
2006-08-11 02:45:41 +02:00
|
|
|
|
2006-08-19 02:09:36 +02:00
|
|
|
|
2006-08-11 02:45:41 +02:00
|
|
|
private:
|
2006-08-17 01:56:28 +02:00
|
|
|
enum HandleType
|
|
|
|
{
|
|
|
|
htype_process,
|
|
|
|
htype_thread,
|
|
|
|
htype_request,
|
|
|
|
htype_subrequest,
|
|
|
|
htype_undefined
|
|
|
|
};
|
|
|
|
|
2006-08-22 01:44:18 +02:00
|
|
|
template <typename T>
|
|
|
|
bool check_type(HandleType type);
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
T* get_selected();
|
|
|
|
HandleType get_selection_type();
|
2006-08-19 02:09:36 +02:00
|
|
|
|
2006-08-12 02:35:40 +02:00
|
|
|
void _on_add_process();
|
2006-08-17 01:56:28 +02:00
|
|
|
void _on_add_thread();
|
2006-08-18 02:27:33 +02:00
|
|
|
void _on_add_request();
|
2006-08-22 01:44:18 +02:00
|
|
|
|
|
|
|
void _on_remove_process();
|
|
|
|
void _on_remove_thread();
|
|
|
|
void _on_remove_request();
|
|
|
|
void _on_remove_subrequest();
|
2006-08-12 02:35:40 +02:00
|
|
|
|
2006-08-11 02:45:41 +02:00
|
|
|
Glib::RefPtr<Gtk::TreeStore> _model;
|
|
|
|
Gtk::TreeModelColumnRecord _columns;
|
2006-08-15 02:43:34 +02:00
|
|
|
Gtk::TreeModelColumn<Glib::ustring> _main_column;
|
2006-08-17 01:56:28 +02:00
|
|
|
Gtk::TreeModelColumn<HandleType> _types_column;
|
2006-08-15 02:43:34 +02:00
|
|
|
Gtk::TreeModelColumn<void*> _handles_column;
|
2006-08-12 02:35:40 +02:00
|
|
|
Glib::RefPtr<Gtk::UIManager> _UIManager;
|
|
|
|
Glib::RefPtr<Gnome::Glade::Xml> _add_process_dialog_glade;
|
2006-08-17 01:56:28 +02:00
|
|
|
Glib::RefPtr<Gnome::Glade::Xml> _add_thread_dialog_glade;
|
2006-08-18 02:27:33 +02:00
|
|
|
Glib::RefPtr<Gnome::Glade::Xml> _add_request_dialog_glade;
|
2006-08-12 02:35:40 +02:00
|
|
|
Gtk::Dialog* _add_process_dialog;
|
2006-08-17 01:56:28 +02:00
|
|
|
Gtk::Dialog* _add_thread_dialog;
|
2006-08-20 19:52:46 +02:00
|
|
|
AddRequestDialog* _add_request_dialog;
|
2006-08-11 02:45:41 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
} //~ namespace sgpem
|
|
|
|
|
|
|
|
|
|
|
|
#endif //~ SCHEDULABLES_TREE_WIDGET_HH
|