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("chk_btn_logica",chk_btn_logica);
refGlade->get_widget_derived("workplace", workplace); //fixed
btn_y->signal_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));
workplace->drag_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()
void Constructor::on_main_menu_quit()
{
- //Gtk::Main::quit();
- hide();
+ 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<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)
+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) ) )
+ 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++;
}
void Constructor::on_item_drop_drag_received(const Glib::RefPtr<Gdk::DragContext>& 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 = "<<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_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);
}
WorkPlace::WorkPlace( BaseObjectType* cobject, const Glib::RefPtr<Gnome::Glade::Xml> &refGlade):Gtk::Fixed(cobject)
{
}
+
bool WorkPlace::on_expose_event(GdkEventExpose *e)
{
int x, y;
get_window()->draw_point (get_style()->get_black_gc(), x+1,y);
get_window()->draw_point (get_style()->get_black_gc(), x-1,y);
}
+ //TODO recorer la lista_lineas y dibujar todas
+ get_window()->draw_line (get_style()->get_black_gc(), temp.x,temp.y,temp.w,temp.z);
return true;
}
-bool WorkPlace::on_button_pressed(GdkEventButton *e)
+bool WorkPlace::on_button_press_event(GdkEventButton *event)
{
+ std::cout<< temp.x<<" "<<temp.y<< std::endl;
+ if ( (event->type == GDK_BUTTON_PRESS) && (event->button == 1) ) {
+ get_pointer(temp.x,temp.y);
+ std::cout<< temp.x<<" "<<temp.y<< std::endl;
+ }
+ return true;
+}
+
+bool WorkPlace::on_button_release_event(GdkEventButton *event)
+{
+ if ( (event->type == GDK_BUTTON_PRESS) && (event->button == 1) ) {
+ get_pointer(temp.w,temp.z);
+ lista_lineas.push_back(temp);
+ get_window()->draw_line (get_style()->get_black_gc(), temp.x,temp.y,temp.w,temp.z);
+ }
return true;
}
-void WorkPlace::delete_item(int id)
+void WorkPlace::delete_item(int _id)
{
std::list<CItem*>::iterator i = listaItems->begin();
while ( i != listaItems->end() ){
CItem *temp = *i;
- if ( temp->get_id() == id ){
+ if ( temp->get_id() == _id ){
listaItems->erase(i);
delete temp;
break;