]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - tests/GUI/dndwindow.cc
Se borra un pedazo que me olvide de borrar cuando puse el icono para el DND.
[z.facultad/75.42/plaqui.git] / tests / GUI / dndwindow.cc
index daa593958027875326b53ee2d7a1b9129dc5774d..f18ee57f83f24925b69c8dbe294ebc83cb000170 100644 (file)
@@ -35,8 +35,13 @@ DnDWindow::DnDWindow()
   add(m_HBox);
 
        m_HBox.pack_start(m_VBox);
   add(m_HBox);
 
        m_HBox.pack_start(m_VBox);
+       
+       m_VBox.pack_start(m_Button_Canio);
+       m_VBox.pack_start(m_Button_Y);
+       m_VBox.pack_start(m_Button_Codo);
+
        m_HBox.pack_start(m_WorkPlace);
        m_HBox.pack_start(m_WorkPlace);
-       m_WorkPlace.set_size_request(300, 300);
+       m_WorkPlace.set_size_request(600, 600);
 
   //Targets:
   std::list<Gtk::TargetEntry> listTargets;
 
   //Targets:
   std::list<Gtk::TargetEntry> listTargets;
@@ -59,20 +64,12 @@ DnDWindow::DnDWindow()
   m_Button_Y.signal_drag_begin().connect( SigC::slot(*this, &DnDWindow::on_y_drag_begin));
   m_Button_Codo.signal_drag_begin().connect( SigC::slot(*this, &DnDWindow::on_codo_drag_begin));
 
   m_Button_Y.signal_drag_begin().connect( SigC::slot(*this, &DnDWindow::on_y_drag_begin));
   m_Button_Codo.signal_drag_begin().connect( SigC::slot(*this, &DnDWindow::on_codo_drag_begin));
 
-  m_VBox.pack_start(m_Button_Canio);
-       m_VBox.pack_start(m_Button_Y);
-       m_VBox.pack_start(m_Button_Codo);
-
-
   //Drop site:
   //Drop site:
-
-  //Make m_Label_Drop a DnD drop destination:
   m_WorkPlace.drag_dest_set(listTargets);
   m_WorkPlace.drag_dest_set(listTargets);
-
-  //Connect signals:
+  
+       //Connect signals:
   m_WorkPlace.signal_drag_data_received().connect( SigC::slot(*this, &DnDWindow::on_label_drop_drag_data_received) );
 
   m_WorkPlace.signal_drag_data_received().connect( SigC::slot(*this, &DnDWindow::on_label_drop_drag_data_received) );
 
-
   show_all();
 }
 
   show_all();
 }
 
@@ -108,10 +105,6 @@ void DnDWindow::on_canio_drag_data_get(const Glib::RefPtr<Gdk::DragContext>& con
 {
   //TODO: The gtkmm API needs to change to use a Gtk::SelectionData instead of a GtkSelectionData.
   //That should happen for gtkmm 2.4.
 {
   //TODO: The gtkmm API needs to change to use a Gtk::SelectionData instead of a GtkSelectionData.
   //That should happen for gtkmm 2.4.
-       Glib::RefPtr<Gdk::Pixbuf> image;
-       image = Gdk::Pixbuf::create_from_file("canio.png");
-       // Cambio el icono de DND seteando el "hot spot" en el centro.
-       context->set_icon(image, image->get_width() / 2, image->get_height() / 2);
        gtk_selection_data_set (selection_data, selection_data->target, 8, (const guchar*)"canio.png", 9);
 }
 
        gtk_selection_data_set (selection_data, selection_data->target, 8, (const guchar*)"canio.png", 9);
 }
 
@@ -136,19 +129,20 @@ void DnDWindow::on_label_drop_drag_data_received(const Glib::RefPtr<Gdk::DragCon
 
   if ((selection_data->length >= 0) && (selection_data->format == 8))
   {
 
   if ((selection_data->length >= 0) && (selection_data->format == 8))
   {
-               CItem *a = Gtk::manage( new CItem((const char *)selection_data->data) );
-               /* 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;
-               m_WorkPlace.put(*a, i*32, j*32);
-               a->show();      
-               //listaItems.push_back(a);
+       CItem *a = Gtk::manage( new CItem((const char *)selection_data->data) );
+       /* 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;
+       m_WorkPlace.put(*a, i*32, j*32);
+       a->show();      
+       //listaItems.push_back(a);
   }
 
   context->drag_finish(false, false, time);
 }
 
   }
 
   context->drag_finish(false, false, time);
 }
 
+