2006-07-06 14:23:29 +02:00
|
|
|
// src/gui_builder.hh - Copyright 2005, 2006, University
|
2006-01-26 19:31:23 +01:00
|
|
|
// 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
|
|
|
|
|
2006-07-06 14:23:29 +02:00
|
|
|
#ifndef GUI_BUILDER_HH
|
|
|
|
#define GUI_BUILDER_HH 1
|
2006-01-26 19:31:23 +01:00
|
|
|
|
|
|
|
#include "config.h"
|
2006-09-06 01:54:16 +02:00
|
|
|
#include "holt_container_window.hh"
|
2006-08-18 09:27:00 +02:00
|
|
|
#include "simulation_widget.hh"
|
2006-01-26 19:31:23 +01:00
|
|
|
|
2006-09-07 02:43:00 +02:00
|
|
|
#include <sgpemv2/cpu_policy.hh>
|
|
|
|
#include <sgpemv2/resource_policy.hh>
|
2006-09-02 13:31:01 +02:00
|
|
|
|
|
|
|
#include "simulation_controller.hh"
|
2006-08-28 22:15:05 +02:00
|
|
|
|
2006-09-01 15:17:53 +02:00
|
|
|
#include <gtkmm/menu.h>
|
2006-07-06 13:26:23 +02:00
|
|
|
#include <gtkmm/window.h>
|
2006-07-06 14:23:29 +02:00
|
|
|
#include <libglademm/xml.h>
|
2006-07-06 13:26:23 +02:00
|
|
|
|
2006-07-06 11:49:35 +02:00
|
|
|
#include <string>
|
|
|
|
|
2006-08-09 16:38:45 +02:00
|
|
|
namespace sgpem
|
|
|
|
{
|
2006-08-28 22:15:05 +02:00
|
|
|
class GuiBuilder;
|
|
|
|
|
2006-09-02 13:31:01 +02:00
|
|
|
/** \brief This class initialize and starts the whole GUI
|
|
|
|
*/
|
2006-08-09 16:38:45 +02:00
|
|
|
class GuiBuilder
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
GuiBuilder(const std::string& gladefile = GLADEDIR "/main-window.glade");
|
|
|
|
~GuiBuilder();
|
|
|
|
|
|
|
|
Gtk::Window& get_initial_window() const;
|
2006-09-06 11:12:53 +02:00
|
|
|
|
2006-08-18 09:27:00 +02:00
|
|
|
void on_file_open_activate();
|
|
|
|
void on_file_save_activate();
|
|
|
|
void on_file_saveas_activate();
|
2006-09-06 11:12:53 +02:00
|
|
|
|
|
|
|
void on_edit_preferences_activate();
|
|
|
|
|
2006-09-07 04:08:00 +02:00
|
|
|
void on_simulation_jump_to_activate();
|
|
|
|
|
2006-09-06 11:12:53 +02:00
|
|
|
void on_view_show_threads_activate();
|
|
|
|
void on_view_show_holt_graph_activate();
|
|
|
|
|
2006-08-31 01:37:11 +02:00
|
|
|
void on_configure_cpu_policy();
|
|
|
|
void on_configure_resource_policy();
|
2006-09-01 15:17:53 +02:00
|
|
|
void on_selected_cpu_policy(CPUPolicy* pol);
|
|
|
|
void on_selected_resource_policy(ResourcePolicy* pol);
|
2006-09-02 13:12:23 +02:00
|
|
|
void on_toggle_simulation_mode();
|
2006-09-01 15:17:53 +02:00
|
|
|
|
2006-09-06 11:12:53 +02:00
|
|
|
void open_file(const std::string& filename);
|
|
|
|
|
2006-09-01 15:17:53 +02:00
|
|
|
void populate_with_cpu_policies(Gtk::Menu& menu);
|
|
|
|
void populate_with_resource_policies(Gtk::Menu& menu);
|
2006-08-09 16:38:45 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
Glib::RefPtr<Gnome::Glade::Xml> _refXml;
|
2006-08-28 22:15:05 +02:00
|
|
|
SimulationController _controller;
|
2006-09-02 15:18:48 +02:00
|
|
|
|
|
|
|
// Used to store the loaded snapshot filename, when !empty
|
|
|
|
std::string _filename;
|
2006-09-06 01:54:16 +02:00
|
|
|
|
2006-09-06 11:12:53 +02:00
|
|
|
HoltContainerWindow _holt_container;
|
|
|
|
SimulationWidget* _simulation_widget;
|
|
|
|
bool _show_threads;
|
2006-09-06 01:54:16 +02:00
|
|
|
|
2006-08-09 16:38:45 +02:00
|
|
|
};
|
2006-07-06 14:23:29 +02:00
|
|
|
|
|
|
|
} //~ namespace sgpem
|
|
|
|
|
|
|
|
#endif //~ GUI_BUILDER_HH
|
2006-02-19 23:36:24 +01:00
|
|
|
|