2006-01-27 18:57:53 +01:00
|
|
|
// src/startgui.cc - 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
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include "gettext.h"
|
|
|
|
|
2006-08-12 17:49:37 +02:00
|
|
|
#include "schedulables_tree_widget.hh"
|
|
|
|
#include "simulation_widget.hh"
|
2006-08-11 02:45:41 +02:00
|
|
|
|
2006-07-06 14:23:29 +02:00
|
|
|
#include "gui_builder.hh"
|
2006-08-15 19:33:47 +02:00
|
|
|
#include "graphical_preferences_editor.hh"
|
2006-01-26 19:31:23 +01:00
|
|
|
|
2006-08-02 15:48:26 +02:00
|
|
|
#include "backend/history.hh"
|
|
|
|
#include "backend/simulation.hh"
|
|
|
|
|
2006-08-18 09:27:00 +02:00
|
|
|
#include "backend/serializers_gatekeeper.hh"
|
|
|
|
#include "backend/serializer.hh"
|
|
|
|
|
2006-08-21 00:15:02 +02:00
|
|
|
#include <gdkmm/pixbuf.h>
|
2006-07-05 17:16:58 +02:00
|
|
|
#include <glibmm/ustring.h>
|
|
|
|
#include <gtkmm/aboutdialog.h>
|
2006-08-18 09:27:00 +02:00
|
|
|
#include <gtkmm/messagedialog.h>
|
|
|
|
#include <gtkmm/filechooserdialog.h>
|
2006-01-26 19:31:23 +01:00
|
|
|
#include <gtkmm/main.h>
|
2006-07-05 16:37:11 +02:00
|
|
|
#include <gtkmm/menuitem.h>
|
2006-08-12 17:49:37 +02:00
|
|
|
#include <gtkmm/scrolledwindow.h>
|
2006-08-18 09:27:00 +02:00
|
|
|
#include <gtkmm/stock.h>
|
2006-07-05 16:37:11 +02:00
|
|
|
|
2006-07-06 11:49:35 +02:00
|
|
|
#include <iostream>
|
2006-01-26 19:31:23 +01:00
|
|
|
|
2006-07-06 14:23:29 +02:00
|
|
|
using namespace sgpem;
|
|
|
|
using Gnome::Glade::Xml;
|
2006-07-05 16:37:11 +02:00
|
|
|
|
2006-08-03 17:43:21 +02:00
|
|
|
void
|
|
|
|
test_me()
|
|
|
|
{
|
|
|
|
// A test for widget display:
|
2006-08-18 09:27:00 +02:00
|
|
|
|
2006-08-03 17:43:21 +02:00
|
|
|
Simulation& sim = Simulation::get_instance();
|
|
|
|
sim.get_history().add_process("goofy", 0, 0);
|
2006-08-18 09:27:00 +02:00
|
|
|
|
2006-08-03 17:43:21 +02:00
|
|
|
}
|
|
|
|
|
2006-08-15 19:33:47 +02:00
|
|
|
void
|
|
|
|
GuiBuilder::on_edit_preferences_activate()
|
|
|
|
{
|
|
|
|
new PreferencesEditor(); //FIXME: are we leaking this way?
|
|
|
|
}
|
|
|
|
|
2006-08-18 09:27:00 +02:00
|
|
|
void
|
|
|
|
GuiBuilder::on_file_open_activate()
|
|
|
|
{
|
|
|
|
Glib::ustring msg;
|
|
|
|
try
|
|
|
|
{
|
|
|
|
std::vector<Serializer*> serializers =
|
|
|
|
SerializersGatekeeper::get_instance().get_registered();
|
|
|
|
|
|
|
|
// FIXME using the first serializer available, this
|
|
|
|
// will need to be changed when multiple serializers will
|
|
|
|
// be made available
|
|
|
|
Serializer& serializer = *serializers.at(0);
|
|
|
|
History& history = Simulation::get_instance().get_history();
|
|
|
|
|
|
|
|
// open file dialog...
|
|
|
|
Gtk::FileChooserDialog dialog("Please choose a file", Gtk::FILE_CHOOSER_ACTION_OPEN);
|
|
|
|
dialog.set_transient_for(get_initial_window());
|
|
|
|
|
|
|
|
//Add response buttons the the dialog:
|
|
|
|
dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
|
|
|
|
dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);
|
|
|
|
|
|
|
|
//Add filters, so that only certain file types can be selected:
|
|
|
|
for(std::vector<Serializer*>::const_iterator iter=serializers.begin(); iter!=serializers.end(); iter++)
|
|
|
|
{
|
|
|
|
Serializer* ser = *iter;
|
|
|
|
Gtk::FileFilter filter_sgpem;
|
|
|
|
filter_sgpem.set_name(ser->get_filename_description());
|
|
|
|
filter_sgpem.add_pattern(ser->get_filename_extension());
|
|
|
|
dialog.add_filter(filter_sgpem);
|
|
|
|
}
|
|
|
|
|
|
|
|
Gtk::FileFilter filter_any;
|
|
|
|
filter_any.set_name("Any files");
|
|
|
|
filter_any.add_pattern("*");
|
|
|
|
dialog.add_filter(filter_any);
|
|
|
|
|
|
|
|
//Show the dialog and wait for a user response:
|
|
|
|
int result = dialog.run();
|
|
|
|
if(result==Gtk::RESPONSE_OK)
|
|
|
|
{
|
|
|
|
// DISABLED - Actually locks computer
|
|
|
|
// serializer.restore_snapshot("prova1.xgp", history);
|
|
|
|
msg = "File: " + dialog.get_filename() + " loaded.";
|
|
|
|
} // end - if(result==Gtk::RESPONSE_OK)
|
|
|
|
|
|
|
|
}
|
|
|
|
catch (std::out_of_range e)
|
|
|
|
{
|
|
|
|
msg = _("ERROR: No registered serializer available");
|
|
|
|
}
|
|
|
|
catch (SerializerError e)
|
|
|
|
{
|
|
|
|
msg = _("ERROR: ") + Glib::ustring(e.what());
|
|
|
|
}
|
|
|
|
if(!msg.empty())
|
|
|
|
{
|
|
|
|
Gtk::MessageDialog msg_dialog(get_initial_window(), msg);
|
|
|
|
msg_dialog.run();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
GuiBuilder::on_file_save_activate()
|
|
|
|
{
|
2006-08-18 21:54:24 +02:00
|
|
|
// _simulation_widget->change_scaling_mode();
|
2006-08-18 09:27:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
GuiBuilder::on_file_saveas_activate()
|
|
|
|
{
|
|
|
|
Glib::ustring msg;
|
|
|
|
try
|
|
|
|
{
|
|
|
|
std::vector<Serializer*> serializers =
|
|
|
|
SerializersGatekeeper::get_instance().get_registered();
|
|
|
|
|
|
|
|
// FIXME using the first serializer available, this
|
|
|
|
// will need to be changed when multiple serializers will
|
|
|
|
// be made available
|
|
|
|
Serializer& serializer = *serializers.at(0);
|
|
|
|
History& history = Simulation::get_instance().get_history();
|
|
|
|
|
|
|
|
// open file dialog...
|
|
|
|
Gtk::FileChooserDialog dialog("Please choose a file", Gtk::FILE_CHOOSER_ACTION_SAVE);
|
|
|
|
dialog.set_transient_for(get_initial_window());
|
|
|
|
|
|
|
|
//Add response buttons the the dialog:
|
|
|
|
dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
|
|
|
|
dialog.add_button(Gtk::Stock::SAVE, Gtk::RESPONSE_OK);
|
|
|
|
|
|
|
|
//Add filters, so that only certain file types can be selected:
|
|
|
|
Gtk::FileFilter filter_sgpem;
|
|
|
|
filter_sgpem.set_name("Sgpem files");
|
|
|
|
filter_sgpem.add_pattern("*.xgp");
|
|
|
|
dialog.add_filter(filter_sgpem);
|
|
|
|
|
|
|
|
Gtk::FileFilter filter_any;
|
|
|
|
filter_any.set_name("Any files");
|
|
|
|
filter_any.add_pattern("*");
|
|
|
|
dialog.add_filter(filter_any);
|
|
|
|
|
|
|
|
//Show the dialog and wait for a user response:
|
|
|
|
int result = dialog.run();
|
|
|
|
if(result==Gtk::RESPONSE_OK)
|
|
|
|
{
|
|
|
|
// DISABLED - Actually locks computer
|
|
|
|
serializer.save_snapshot(dialog.get_filename(), history);
|
|
|
|
msg = "File: " + dialog.get_filename() + " saved.";
|
|
|
|
} // end - if(result==Gtk::RESPONSE_OK)
|
|
|
|
|
|
|
|
}
|
|
|
|
catch (std::out_of_range e)
|
|
|
|
{
|
|
|
|
msg = _("ERROR: No registered serializer available");
|
|
|
|
}
|
|
|
|
catch (SerializerError e)
|
|
|
|
{
|
|
|
|
msg = _("ERROR: ") + Glib::ustring(e.what());
|
|
|
|
}
|
|
|
|
if(!msg.empty())
|
|
|
|
{
|
|
|
|
Gtk::MessageDialog msg_dialog(get_initial_window(), msg);
|
|
|
|
msg_dialog.run();
|
|
|
|
}
|
|
|
|
}
|
2006-07-05 16:37:11 +02:00
|
|
|
|
2006-07-06 14:23:29 +02:00
|
|
|
GuiBuilder::GuiBuilder(const std::string& gladefile)
|
2006-08-09 16:38:45 +02:00
|
|
|
: _refXml(Xml::create(gladefile))
|
2006-07-06 14:23:29 +02:00
|
|
|
{
|
2006-08-09 16:38:45 +02:00
|
|
|
using namespace Gtk;
|
|
|
|
|
2006-08-15 19:33:47 +02:00
|
|
|
//Window& main_window = get_initial_window();
|
2006-08-09 16:38:45 +02:00
|
|
|
|
2006-08-18 09:27:00 +02:00
|
|
|
// file open dialog
|
|
|
|
MenuItem* file_open = NULL;
|
|
|
|
_refXml->get_widget("MenuItem.File.Open", file_open);
|
|
|
|
file_open->signal_activate().connect(sigc::mem_fun(*this, &GuiBuilder::on_file_open_activate));
|
|
|
|
|
|
|
|
// file save dialog
|
|
|
|
MenuItem* file_save = NULL;
|
|
|
|
_refXml->get_widget("MenuItem.File.Save", file_save);
|
|
|
|
file_save->signal_activate().connect(sigc::mem_fun(*this, &GuiBuilder::on_file_save_activate));
|
|
|
|
|
|
|
|
// file save dialog
|
|
|
|
MenuItem* file_saveas = NULL;
|
|
|
|
_refXml->get_widget("MenuItem.File.SaveAs", file_saveas);
|
|
|
|
file_saveas->signal_activate().connect(sigc::mem_fun(*this, &GuiBuilder::on_file_saveas_activate));
|
|
|
|
|
2006-08-09 16:38:45 +02:00
|
|
|
// Connect extra signals (decide where to do this...
|
|
|
|
// here -- ugly -- derive widgets and then use
|
|
|
|
// Glade::Xml::get_widget_derived -- better --)
|
|
|
|
MenuItem* file_quit = NULL;
|
|
|
|
_refXml->get_widget("MenuItem.File.Quit", file_quit);
|
|
|
|
file_quit->signal_activate().connect(sigc::ptr_fun(&Main::quit));
|
|
|
|
|
2006-08-15 19:33:47 +02:00
|
|
|
// preferences dialog
|
2006-08-21 00:15:02 +02:00
|
|
|
MenuItem* edit_preferences;
|
2006-08-15 19:33:47 +02:00
|
|
|
_refXml->get_widget("MenuItem.Edit.Preferences", edit_preferences);
|
|
|
|
edit_preferences->signal_activate().connect(sigc::mem_fun(*this, &GuiBuilder::on_edit_preferences_activate));
|
|
|
|
|
|
|
|
|
2006-08-09 16:38:45 +02:00
|
|
|
// About dialog
|
2006-08-21 00:15:02 +02:00
|
|
|
MenuItem* help_about;
|
2006-08-09 16:38:45 +02:00
|
|
|
_refXml->get_widget("MenuItem.Help.About", help_about);
|
|
|
|
AboutDialog* about_dialog = NULL;
|
|
|
|
_refXml->get_widget("AboutDialog", about_dialog);
|
2006-08-15 19:33:47 +02:00
|
|
|
help_about->signal_activate().connect(sigc::mem_fun(*about_dialog, &Window::show));
|
2006-08-21 00:15:02 +02:00
|
|
|
about_dialog->set_wrap_license(true);
|
|
|
|
about_dialog->set_logo(Gdk::Pixbuf::create_from_file(GLADEDIR "/logo.png"));
|
2006-08-15 19:33:47 +02:00
|
|
|
|
|
|
|
|
|
|
|
// Random Error Generator
|
|
|
|
MenuItem* debug_error = NULL;
|
|
|
|
_refXml->get_widget("MenuItem.Debug.Error", debug_error);
|
|
|
|
debug_error->signal_activate().connect(sigc::ptr_fun(test_me));
|
|
|
|
|
|
|
|
|
|
|
|
|
2006-07-12 11:24:57 +02:00
|
|
|
|
2006-08-09 16:38:45 +02:00
|
|
|
// Temporary code to test the Schedulables custom widget
|
2006-08-20 23:26:14 +02:00
|
|
|
ScrolledWindow* schedulables_sw = NULL;
|
|
|
|
_refXml->get_widget("SchedulablesScrolledWindow", schedulables_sw);
|
2006-08-11 02:45:41 +02:00
|
|
|
|
2006-08-20 23:26:14 +02:00
|
|
|
SchedulablesTreeWidget* scheds_tree = manage(new SchedulablesTreeWidget());
|
|
|
|
schedulables_sw->add(*scheds_tree);
|
2006-08-09 16:38:45 +02:00
|
|
|
// we have to remember to manually show custom added widgets:
|
2006-08-20 23:26:14 +02:00
|
|
|
scheds_tree->show();
|
2006-08-12 17:49:37 +02:00
|
|
|
|
|
|
|
|
2006-08-15 19:33:47 +02:00
|
|
|
|
2006-08-20 23:26:14 +02:00
|
|
|
// Main simulation widget
|
2006-08-12 17:49:37 +02:00
|
|
|
ScrolledWindow* simulation_window = NULL;
|
|
|
|
_refXml->get_widget("SimulationScrolledWindow", simulation_window);
|
2006-08-18 09:27:00 +02:00
|
|
|
_simulation_widget = new SimulationWidget();
|
|
|
|
SimulationWidget* simulation_widget = manage(_simulation_widget);
|
2006-08-17 19:05:47 +02:00
|
|
|
simulation_window->add(*simulation_widget);
|
|
|
|
simulation_widget->show();
|
2006-08-18 21:54:24 +02:00
|
|
|
|
2006-07-06 14:23:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-08-09 16:38:45 +02:00
|
|
|
GuiBuilder::~GuiBuilder()
|
|
|
|
{}
|
2006-07-06 14:23:29 +02:00
|
|
|
|
2006-07-06 11:49:35 +02:00
|
|
|
|
2006-07-06 14:23:29 +02:00
|
|
|
Gtk::Window&
|
|
|
|
GuiBuilder::get_initial_window() const
|
|
|
|
{
|
2006-08-09 16:38:45 +02:00
|
|
|
Gtk::Window* main_window = NULL;
|
|
|
|
_refXml->get_widget("MainWindow", main_window);
|
|
|
|
return *main_window;
|
2006-01-26 19:31:23 +01:00
|
|
|
}
|
2006-02-19 23:36:24 +01:00
|
|
|
|
2006-07-06 14:23:29 +02:00
|
|
|
|
2006-08-09 16:38:45 +02:00
|
|
|
void
|
2006-07-06 14:23:29 +02:00
|
|
|
GuiBuilder::open_file(const std::string& filename)
|
|
|
|
{
|
2006-08-09 16:38:45 +02:00
|
|
|
// FIXME: to be written.
|
|
|
|
// Debug line (erase me when done):
|
|
|
|
std::cout << _("Filename to open: ") << filename << std::endl;
|
2006-07-06 14:23:29 +02:00
|
|
|
}
|
2006-08-20 23:26:14 +02:00
|
|
|
|