Constructor::Constructor(BaseObjectType* cobject, const Glib::RefPtr<Gnome::Glade::Xml>& refGlade):Gtk::Window(cobject)
{
+ id = 0;
set_title("Constructor");
refGlade->get_widget("btn_y", btn_y);
refGlade->get_widget("btn_tanque",btn_tanque);
refGlade->get_widget("main_menu_quit",main_menu_quit);
+ refGlade->get_widget("edit_menu_del",edit_menu_del);
refGlade->get_widget_derived("workplace", workplace); //fixed
btn_tanque->signal_drag_data_get().connect( SigC::slot(*this, &Constructor::on_btn_tanque_drag_get));
main_menu_quit->signal_activate().connect(SigC::slot(*this, &Constructor::on_main_menu_quit));
+ edit_menu_del->signal_activate().connect(SigC::slot(*this,&Constructor::on_edit_menu_del));
// Señales para cambiar el icono cuando empieza el drag.
btn_canio->signal_drag_begin().connect( SigC::slot(*this, &Constructor::on_canio_drag_begin));
workplace->drag_dest_set(listTargets);
workplace->signal_drag_data_received().connect( SigC::slot(*this, &Constructor::on_item_drop_drag_received) );
+ workplace->listaItems = &listaItems;
}
Constructor::~Constructor()
{
+ std::list<CItem *>::iterator i = listaItems.begin();
+ std::cout << "ok" << std::endl;
+ while ( i != listaItems.end() ){
+ CItem *temp = *i;
+ listaItems.erase(i);
+ std::cout << "Elimnando ... " << std::endl;
+ delete temp;
+ i = listaItems.begin();
+ }
}
+
void Constructor::on_btn_canio_drag_get(const Glib::RefPtr<Gdk::DragContext>& context, GtkSelectionData* selection_data, guint info, guint time)
{
gtk_selection_data_set (selection_data, selection_data->target, 8, (const guchar*)"item_canio.png", 14);
void Constructor::on_main_menu_quit()
{
- Gtk::Main::quit();
+ //Gtk::Main::quit();
+ hide();
}
+void Constructor::on_edit_menu_del()
+{
+ // hay que meter algo aca.
+}
void Constructor::on_canio_drag_begin(const Glib::RefPtr<Gdk::DragContext>& context)
{
context->set_icon(ico_canio, 5, 5);
gtk_selection_data_set (selection_data, selection_data->target, 10, (const guchar*)"item_codo.png", 13);
}
+bool Constructor::can_drop(CItem *item, int x, int y)
+{
+ std::list<CItem*>::iterator i = listaItems.begin();
+ while( i != listaItems.end() ) {
+ CItem *temp = *i;
+ if ( temp->get_id() != item->get_id() ) {
+ if ( (temp->is_occupied_area(x, y)) ||
+ ( temp->is_occupied_area(x+item->get_image()->get_width()-1, y+item->get_image()->get_height()-1)) ||
+ ( temp->is_occupied_area(x, y+item->get_image()->get_height()-1)) ||
+ ( temp->is_occupied_area(x+item->get_image()->get_width()-1, y) ) )
+ return false;
+ else i++;
+ }
+ else i++;
+ }
+ return true;
+}
+
void Constructor::on_item_drop_drag_received(const Glib::RefPtr<Gdk::DragContext>& context, int x, int y, GtkSelectionData* selection_data, guint info, guint time)
{
/* Ajusto coordenada x e y para que caigan en un lugar de una cuadricula de 32x32 */
j = (y+1)/32;
// El drag es de un item
if (selection_data->format == 10) {
- workplace->move(*drag_get_source_widget(context), i*32, j*32);
+ if (can_drop(((CItem*)drag_get_source_widget(context)),i*32, j*32)){
+ ((CItem*)drag_get_source_widget(context))->set_position(i*32, j*32);
+ workplace->move(*drag_get_source_widget(context), i*32, j*32);
+ }
}
// El Drag es desde la barra de tareas
{
CItem *a;
if (strcmp((const char *)selection_data->data, "item_codo.png")==0)
- a = Gtk::manage( new Splitter() );
+ a = new Splitter();//Gtk::manage( new Splitter() );
else if (strcmp((const char *)selection_data->data, "item_canio.png")==0)
- a = Gtk::manage( new Conduct() );
+ a = new Conduct();//Gtk::manage( new Conduct() );
else if (strcmp((const char *)selection_data->data, "item_y.png")==0)
- a = Gtk::manage( new Union() );
+ a = new Union();//Gtk::manage( new Union() );
else if (strcmp((const char *)selection_data->data, "item_tanque.png")==0)
- a = Gtk::manage( new Cistern() );
+ a = new Cistern();//Gtk::manage( new Cistern() );
else
- a = Gtk::manage( new CItem((const char *)selection_data->data) );
-
+ a = new CItem();//Gtk::manage( new CItem((const char *)selection_data->data) );
+ //Seteo el ID del item
+ a->set_id(++id);
+ std::cout << can_drop(a, i*32, j*32) <<" --- tamanio lista = "<< listaItems.size()<< "item = "<<a->get_id()<<std::endl;
+ if ( can_drop(a, i*32, j*32) ) {
workplace->put(*a, i*32, j*32);
+ //Apunto al workplace
+ a->workplace= workplace;
+ //Seteo la posicion del item
+ a->set_position(i*32,j*32);
// Seteo la lista de tipos de drags
a->drag_source_set(listTargets);
// Conecto las señales
a->signal_drag_begin().connect(SigC::bind( SigC::slot(*this, &Constructor::on_item_drag_begin), a));
a->show();
listaItems.push_back(a);
+ } else {
+ id--;
+ delete a;
+ }
}
context->drag_finish(false, false, time);
}
</child>
<child>
- <widget class="GtkImageMenuItem" id="delete1">
+ <widget class="GtkImageMenuItem" id="edit_menu_del">
<property name="visible">True</property>
<property name="label">gtk-delete</property>
<property name="use_stock">True</property>
</packing>
</child>
+ <child>
+ <widget class="GtkHBox" id="hbox2">
+ <property name="visible">True</property>
+ <property name="homogeneous">True</property>
+ <property name="spacing">0</property>
+
+ <child>
+ <widget class="GtkLabel" id="label17">
+ <property name="width_request">125</property>
+ <property name="visible">True</property>
+ <property name="label" translatable="yes">Buscar Item</property>
+ <property name="use_underline">False</property>
+ <property name="use_markup">False</property>
+ <property name="justify">GTK_JUSTIFY_LEFT</property>
+ <property name="wrap">False</property>
+ <property name="selectable">False</property>
+ <property name="xalign">0.5</property>
+ <property name="yalign">0.5</property>
+ <property name="xpad">0</property>
+ <property name="ypad">0</property>
+ </widget>
+ <packing>
+ <property name="padding">0</property>
+ <property name="expand">False</property>
+ <property name="fill">False</property>
+ </packing>
+ </child>
+
+ <child>
+ <widget class="GtkCombo" id="combo1">
+ <property name="visible">True</property>
+ <property name="value_in_list">False</property>
+ <property name="allow_empty">True</property>
+ <property name="case_sensitive">False</property>
+ <property name="enable_arrow_keys">True</property>
+ <property name="enable_arrows_always">False</property>
+
+ <child internal-child="entry">
+ <widget class="GtkEntry" id="combo-entry1">
+ <property name="visible">True</property>
+ <property name="can_focus">True</property>
+ <property name="editable">True</property>
+ <property name="visibility">True</property>
+ <property name="max_length">0</property>
+ <property name="text" translatable="yes"></property>
+ <property name="has_frame">True</property>
+ <property name="invisible_char" translatable="yes">*</property>
+ <property name="activates_default">False</property>
+ </widget>
+ </child>
+
+ <child internal-child="list">
+ <widget class="GtkList" id="combo-list1">
+ <property name="visible">True</property>
+ <property name="selection_mode">GTK_SELECTION_BROWSE</property>
+ </widget>
+ </child>
+ </widget>
+ <packing>
+ <property name="padding">0</property>
+ <property name="expand">False</property>
+ <property name="fill">True</property>
+ </packing>
+ </child>
+
+ <child>
+ <widget class="GtkButton" id="button1">
+ <property name="visible">True</property>
+ <property name="can_focus">True</property>
+ <property name="label">gtk-find</property>
+ <property name="use_stock">True</property>
+ <property name="relief">GTK_RELIEF_NORMAL</property>
+ </widget>
+ <packing>
+ <property name="padding">0</property>
+ <property name="expand">False</property>
+ <property name="fill">False</property>
+ </packing>
+ </child>
+ </widget>
+ <packing>
+ <property name="padding">0</property>
+ <property name="expand">False</property>
+ <property name="fill">False</property>
+ </packing>
+ </child>
+
<child>
<widget class="GtkAlignment" id="alignment2">
<property name="visible">True</property>
<property name="relief">GTK_RELIEF_NORMAL</property>
<child>
- <widget class="GtkAlignment" id="alignment6">
+ <widget class="GtkImage" id="image8">
<property name="visible">True</property>
+ <property name="pixbuf">ico_canio.png</property>
<property name="xalign">0.5</property>
<property name="yalign">0.5</property>
- <property name="xscale">0</property>
- <property name="yscale">0</property>
-
- <child>
- <widget class="GtkHBox" id="hbox5">
- <property name="visible">True</property>
- <property name="homogeneous">False</property>
- <property name="spacing">2</property>
-
- <child>
- <widget class="GtkImage" id="image4">
- <property name="visible">True</property>
- <property name="pixbuf">ico_canio.png</property>
- <property name="xalign">0.5</property>
- <property name="yalign">0.5</property>
- <property name="xpad">0</property>
- <property name="ypad">0</property>
- </widget>
- <packing>
- <property name="padding">0</property>
- <property name="expand">False</property>
- <property name="fill">False</property>
- </packing>
- </child>
-
- <child>
- <widget class="GtkLabel" id="label7">
- <property name="visible">True</property>
- <property name="label" translatable="yes">Canio</property>
- <property name="use_underline">True</property>
- <property name="use_markup">False</property>
- <property name="justify">GTK_JUSTIFY_LEFT</property>
- <property name="wrap">False</property>
- <property name="selectable">False</property>
- <property name="xalign">0.5</property>
- <property name="yalign">0.5</property>
- <property name="xpad">0</property>
- <property name="ypad">0</property>
- </widget>
- <packing>
- <property name="padding">0</property>
- <property name="expand">False</property>
- <property name="fill">False</property>
- </packing>
- </child>
- </widget>
- </child>
+ <property name="xpad">0</property>
+ <property name="ypad">0</property>
</widget>
</child>
</widget>
<property name="relief">GTK_RELIEF_NORMAL</property>
<child>
- <widget class="GtkAlignment" id="alignment7">
+ <widget class="GtkImage" id="image9">
<property name="visible">True</property>
+ <property name="pixbuf">ico_codo.png</property>
<property name="xalign">0.5</property>
<property name="yalign">0.5</property>
- <property name="xscale">0</property>
- <property name="yscale">0</property>
-
- <child>
- <widget class="GtkHBox" id="hbox6">
- <property name="visible">True</property>
- <property name="homogeneous">False</property>
- <property name="spacing">2</property>
-
- <child>
- <widget class="GtkImage" id="image5">
- <property name="visible">True</property>
- <property name="pixbuf">ico_codo.png</property>
- <property name="xalign">0.5</property>
- <property name="yalign">0.5</property>
- <property name="xpad">0</property>
- <property name="ypad">0</property>
- </widget>
- <packing>
- <property name="padding">0</property>
- <property name="expand">False</property>
- <property name="fill">False</property>
- </packing>
- </child>
-
- <child>
- <widget class="GtkLabel" id="label8">
- <property name="visible">True</property>
- <property name="label" translatable="yes">Codo</property>
- <property name="use_underline">True</property>
- <property name="use_markup">False</property>
- <property name="justify">GTK_JUSTIFY_LEFT</property>
- <property name="wrap">False</property>
- <property name="selectable">False</property>
- <property name="xalign">0.5</property>
- <property name="yalign">0.5</property>
- <property name="xpad">0</property>
- <property name="ypad">0</property>
- </widget>
- <packing>
- <property name="padding">0</property>
- <property name="expand">False</property>
- <property name="fill">False</property>
- </packing>
- </child>
- </widget>
- </child>
+ <property name="xpad">0</property>
+ <property name="ypad">0</property>
</widget>
</child>
</widget>
<property name="relief">GTK_RELIEF_NORMAL</property>
<child>
- <widget class="GtkAlignment" id="alignment8">
+ <widget class="GtkImage" id="image10">
<property name="visible">True</property>
+ <property name="pixbuf">ico_y.png</property>
<property name="xalign">0.5</property>
<property name="yalign">0.5</property>
- <property name="xscale">0</property>
- <property name="yscale">0</property>
-
- <child>
- <widget class="GtkHBox" id="hbox7">
- <property name="visible">True</property>
- <property name="homogeneous">False</property>
- <property name="spacing">2</property>
-
- <child>
- <widget class="GtkImage" id="image6">
- <property name="visible">True</property>
- <property name="pixbuf">ico_y.png</property>
- <property name="xalign">0.5</property>
- <property name="yalign">0.5</property>
- <property name="xpad">0</property>
- <property name="ypad">0</property>
- </widget>
- <packing>
- <property name="padding">0</property>
- <property name="expand">False</property>
- <property name="fill">False</property>
- </packing>
- </child>
-
- <child>
- <widget class="GtkLabel" id="label9">
- <property name="visible">True</property>
- <property name="label" translatable="yes">Division
-Empalme</property>
- <property name="use_underline">True</property>
- <property name="use_markup">False</property>
- <property name="justify">GTK_JUSTIFY_LEFT</property>
- <property name="wrap">False</property>
- <property name="selectable">False</property>
- <property name="xalign">0.5</property>
- <property name="yalign">0.5</property>
- <property name="xpad">0</property>
- <property name="ypad">0</property>
- </widget>
- <packing>
- <property name="padding">0</property>
- <property name="expand">False</property>
- <property name="fill">False</property>
- </packing>
- </child>
- </widget>
- </child>
+ <property name="xpad">0</property>
+ <property name="ypad">0</property>
</widget>
</child>
</widget>
<property name="relief">GTK_RELIEF_NORMAL</property>
<child>
- <widget class="GtkAlignment" id="alignment9">
+ <widget class="GtkImage" id="image11">
<property name="visible">True</property>
+ <property name="pixbuf">ico_tanque.png</property>
<property name="xalign">0.5</property>
<property name="yalign">0.5</property>
- <property name="xscale">0</property>
- <property name="yscale">0</property>
-
- <child>
- <widget class="GtkHBox" id="hbox8">
- <property name="visible">True</property>
- <property name="homogeneous">False</property>
- <property name="spacing">2</property>
-
- <child>
- <widget class="GtkImage" id="image7">
- <property name="visible">True</property>
- <property name="pixbuf">ico_tanque.png</property>
- <property name="xalign">0.5</property>
- <property name="yalign">0.5</property>
- <property name="xpad">0</property>
- <property name="ypad">0</property>
- </widget>
- <packing>
- <property name="padding">0</property>
- <property name="expand">False</property>
- <property name="fill">False</property>
- </packing>
- </child>
-
- <child>
- <widget class="GtkLabel" id="label10">
- <property name="visible">True</property>
- <property name="label" translatable="yes">Tanque</property>
- <property name="use_underline">True</property>
- <property name="use_markup">False</property>
- <property name="justify">GTK_JUSTIFY_LEFT</property>
- <property name="wrap">False</property>
- <property name="selectable">False</property>
- <property name="xalign">0.5</property>
- <property name="yalign">0.5</property>
- <property name="xpad">0</property>
- <property name="ypad">0</property>
- </widget>
- <packing>
- <property name="padding">0</property>
- <property name="expand">False</property>
- <property name="fill">False</property>
- </packing>
- </child>
- </widget>
- </child>
+ <property name="xpad">0</property>
+ <property name="ypad">0</property>
</widget>
</child>
</widget>
<property name="fill">True</property>
</packing>
</child>
+
+ <child>
+ <widget class="GtkVButtonBox" id="vbuttonbox2">
+ <property name="visible">True</property>
+ <property name="layout_style">GTK_BUTTONBOX_SPREAD</property>
+ <property name="spacing">0</property>
+
+ <child>
+ <widget class="GtkButton" id="button2">
+ <property name="visible">True</property>
+ <property name="can_default">True</property>
+ <property name="can_focus">True</property>
+ <property name="label" translatable="yes">button2</property>
+ <property name="use_underline">True</property>
+ <property name="relief">GTK_RELIEF_NORMAL</property>
+ </widget>
+ </child>
+
+ <child>
+ <widget class="GtkButton" id="button3">
+ <property name="visible">True</property>
+ <property name="can_default">True</property>
+ <property name="can_focus">True</property>
+ <property name="label" translatable="yes">button3</property>
+ <property name="use_underline">True</property>
+ <property name="relief">GTK_RELIEF_NORMAL</property>
+ </widget>
+ </child>
+
+ <child>
+ <widget class="GtkButton" id="button4">
+ <property name="visible">True</property>
+ <property name="can_default">True</property>
+ <property name="can_focus">True</property>
+ <property name="label" translatable="yes">button4</property>
+ <property name="use_underline">True</property>
+ <property name="relief">GTK_RELIEF_NORMAL</property>
+ </widget>
+ </child>
+ </widget>
+ <packing>
+ <property name="padding">0</property>
+ <property name="expand">False</property>
+ <property name="fill">False</property>
+ <property name="pack_type">GTK_PACK_END</property>
+ </packing>
+ </child>
</widget>
</child>
</widget>
</child>
<child>
- <widget class="GtkButton" id="btn_accept">
+ <widget class="GtkButton" id="btn_apply">
<property name="visible">True</property>
<property name="can_default">True</property>
<property name="can_focus">True</property>
- <property name="label">gtk-ok</property>
+ <property name="label">gtk-apply</property>
<property name="use_stock">True</property>
<property name="relief">GTK_RELIEF_NORMAL</property>
- <property name="response_id">-5</property>
+ <property name="response_id">-10</property>
</widget>
</child>
<child>
- <widget class="GtkButton" id="btn_apply">
+ <widget class="GtkButton" id="btn_accept">
<property name="visible">True</property>
<property name="can_default">True</property>
<property name="can_focus">True</property>
- <property name="label">gtk-apply</property>
+ <property name="label">gtk-ok</property>
<property name="use_stock">True</property>
<property name="relief">GTK_RELIEF_NORMAL</property>
- <property name="response_id">-10</property>
+ <property name="response_id">-5</property>
</widget>
</child>
</widget>
<property name="update_policy">GTK_UPDATE_ALWAYS</property>
<property name="snap_to_ticks">False</property>
<property name="wrap">False</property>
- <property name="adjustment">0 0 100 0.1 10 10</property>
+ <property name="adjustment">0 0 10000 0.1 10 10</property>
</widget>
<packing>
<property name="left_attach">1</property>
<property name="update_policy">GTK_UPDATE_ALWAYS</property>
<property name="snap_to_ticks">False</property>
<property name="wrap">False</property>
- <property name="adjustment">0 0 100 0.1 10 10</property>
+ <property name="adjustment">0 0 10000 0.1 10 10</property>
</widget>
<packing>
<property name="left_attach">1</property>