+void Constructor::on_btn_find_clicked()
+{
+ CItem * temp = NULL;
+ std::list<CItem *>::iterator i = listaItems.begin();
+ while ( i !=listaItems.end() ) {
+ if ( (*i)->get_name() == combo_entry->get_text() ) {
+ temp = *i;
+ break;
+ }
+ i++;
+ }
+
+ if ( temp != NULL )
+ workplace->get_window()->draw_rectangle(workplace->get_style()->get_black_gc(), false , temp->get_position_x()-5, temp->get_position_y()-5,
+ temp->get_image()->get_width()+10, temp->get_image()->get_height()+10);
+}
+