- test-holt_widget: temporary added an extra holt_widget in container

- gui_builder: added an holt_widget in container
- Makefile.am: added holt_containr_window accordling 



git-svn-id: svn://svn.gna.org/svn/sgpemv2/trunk@1015 3ecf2c5c-341e-0410-92b4-d18e462d057c
This commit is contained in:
paolo 2006-09-05 23:54:16 +00:00
parent 51ce976d65
commit 2b9942bbec
4 changed files with 33 additions and 5 deletions

View file

@ -25,6 +25,7 @@
#include "configure_policy_dialog.hh"
#include "graphical_preferences_editor.hh"
#include "holt_container_window.hh"
#include "holt_widget.hh"
#include "schedulables_tree_widget.hh"
#include "simulation_widget.hh"
@ -432,7 +433,9 @@ GuiBuilder::on_toggle_simulation_mode()
GuiBuilder::GuiBuilder(const std::string& gladefile)
: _refXml(Xml::create(gladefile)), _controller(Simulation::get_instance(), _refXml)
: _refXml(Xml::create(gladefile)), _controller(Simulation::get_instance(), _refXml),
_holt_container(Simulation::get_instance())
{
using namespace Gtk;
@ -535,6 +538,11 @@ GuiBuilder::GuiBuilder(const std::string& gladefile)
// HoltWidget& holt = *manage(new HoltWidget(Simulation::get_instance()));
// simulation_window->add(holt);
// holt.show();
// temporary test on holt widget...
_holt_container.set_keep_above();
// _holt_container.set_deletable(false);
_holt_container.show();
}