X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/67143e098c00b0ee414bde39a78441d8e11fed8b..0aacdcf95cf6d4f33a2201160d472ab84148d52b:/Constructor/constructor.cpp?ds=sidebyside diff --git a/Constructor/constructor.cpp b/Constructor/constructor.cpp index 2f11221..af1263b 100644 --- a/Constructor/constructor.cpp +++ b/Constructor/constructor.cpp @@ -7,10 +7,10 @@ Constructor::Constructor(BaseObjectType* cobject, const Glib::RefPtrget_widget("btn_canio", btn_canio); refGlade->get_widget("btn_codo", btn_codo); @@ -18,6 +18,7 @@ Constructor::Constructor(BaseObjectType* cobject, const Glib::RefPtrget_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("chk_btn_logica",chk_btn_logica); refGlade->get_widget_derived("workplace", workplace); //fixed @@ -38,6 +39,7 @@ Constructor::Constructor(BaseObjectType* cobject, const Glib::RefPtrsignal_drag_data_get().connect( SigC::slot(*this, &Constructor::on_btn_y_drag_get)); btn_codo->signal_drag_data_get().connect( SigC::slot(*this, &Constructor::on_btn_codo_drag_get)); btn_tanque->signal_drag_data_get().connect( SigC::slot(*this, &Constructor::on_btn_tanque_drag_get)); + chk_btn_logica->signal_clicked().connect(SigC::slot(*this, &Constructor::on_chk_btn_clicked)); 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)); @@ -52,6 +54,7 @@ Constructor::Constructor(BaseObjectType* cobject, const Glib::RefPtrdrag_dest_set(listTargets); workplace->signal_drag_data_received().connect( SigC::slot(*this, &Constructor::on_item_drop_drag_received) ); workplace->listaItems = &listaItems; + logica = false; } Constructor::~Constructor() @@ -89,14 +92,21 @@ void Constructor::on_btn_tanque_drag_get(const Glib::RefPtr& c void Constructor::on_main_menu_quit() { - //Gtk::Main::quit(); - hide(); + delete this; + Gtk::Main::quit(); + //hide(); } void Constructor::on_edit_menu_del() { // hay que meter algo aca. } + +void Constructor::on_chk_btn_clicked() +{ + logica = !logica; +} + void Constructor::on_canio_drag_begin(const Glib::RefPtr& context) { context->set_icon(ico_canio, 5, 5); @@ -127,16 +137,16 @@ void Constructor::on_item_drag_data_get(const Glib::RefPtr& co 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) +bool Constructor::can_drop(CItem *item, int _x, int _y) { std::list::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) ) ) + 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++; } @@ -147,61 +157,61 @@ bool Constructor::can_drop(CItem *item, int x, int y) void Constructor::on_item_drop_drag_received(const Glib::RefPtr& context, int x, int y, GtkSelectionData* selection_data, guint info, guint time) { + if ( !logica ) { /* Ajusto coordenada x e y para que caigan en un lugar de una cuadricula de 32x32 */ - int i,j; - // el +1 es para evitar un bug cuando se selecciona muy cerce de la - // separacion de 2 cuadritos - i = (x+1)/32; - j = (y+1)/32; - // El drag es de un item - if (selection_data->format == 10) { - 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); + int i,j; + // el +1 es para evitar un bug cuando se selecciona muy cerce de la + // separacion de 2 cuadritos + i = (x+1)/32; + j = (y+1)/32; + // El drag es de un item + if (selection_data->format == 10) { + 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 - if ((selection_data->length >= 0) && (selection_data->format == 8)) - { - CItem *a; - if (strcmp((const char *)selection_data->data, "item_codo.png")==0) - a = new Splitter();//Gtk::manage( new Splitter() ); - else if (strcmp((const char *)selection_data->data, "item_canio.png")==0) - a = new Conduct();//Gtk::manage( new Conduct() ); - else if (strcmp((const char *)selection_data->data, "item_y.png")==0) - a = new Union();//Gtk::manage( new Union() ); - else if (strcmp((const char *)selection_data->data, "item_tanque.png")==0) - a = new Cistern();//Gtk::manage( new Cistern() ); - else - 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 = "<get_id()<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_data_get().connect( SigC::slot(*this, &Constructor::on_item_drag_data_get)); - - // Utilizo el SigC::bind para que el callback on_drag_begin acepte un - // parametro extra, en este caso un CItem *. Esto se hace para - // que cuando el usuario quiera mover un item, saber que item es - // y pedirle su ícono para mostrar cono icono durante la operacion, - // Esto va a permitir, que si un widget tiene una imagen rotara o algo - // raro se vea el widget tal cual. - 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; + // El Drag es desde la barra de tareas + if ((selection_data->length >= 0) && (selection_data->format == 8)) { + CItem *a; + if (strcmp((const char *)selection_data->data, "item_codo.png")==0) + a = new Splitter();//Gtk::manage( new Splitter() ); + else if (strcmp((const char *)selection_data->data, "item_canio.png")==0) + a = new Conduct();//Gtk::manage( new Conduct() ); + else if (strcmp((const char *)selection_data->data, "item_y.png")==0) + a = new Union();//Gtk::manage( new Union() ); + else if (strcmp((const char *)selection_data->data, "item_tanque.png")==0) + a = new Cistern();//Gtk::manage( new Cistern() ); + else + a = new CItem();//Gtk::manage( new CItem((const char *)selection_data->data) ); + //Seteo el ID del item + a->set_id(++id); + 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_data_get().connect( SigC::slot(*this, &Constructor::on_item_drag_data_get)); + + // Utilizo el SigC::bind para que el callback on_drag_begin acepte un + // parametro extra, en este caso un CItem *. Esto se hace para + // que cuando el usuario quiera mover un item, saber que item es + // y pedirle su ícono para mostrar cono icono durante la operacion, + // Esto va a permitir, que si un widget tiene una imagen rotara o algo + // raro se vea el widget tal cual. + 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); } - } - context->drag_finish(false, false, time); }