#ifndef CGAL_QT_CONSTRAINED_TRIANGULATION_GRAPHICS_ITEM_H #define CGAL_QT_CONSTRAINED_TRIANGULATION_GRAPHICS_ITEM_H #include #include class QGraphicsSceneMouseEvent; namespace CGAL { namespace Qt { template class ConstrainedTriangulationGraphicsItem : public TriangulationGraphicsItem { typedef typename T::Geom_traits Geom_traits; public: ConstrainedTriangulationGraphicsItem(T * t_) : TriangulationGraphicsItem(t_) { constraints_pen = this->edgesPen(); constraints_pen.setColor(::Qt::red); } void operator()(typename T::Face_handle fh); const QPen& constraintsPen() const { return constraints_pen; } void setConstraintsPen(const QPen& pen) { constraints_pen = pen; } protected: void drawAll(QPainter *painter); QPen constraints_pen; }; template void ConstrainedTriangulationGraphicsItem::drawAll(QPainter *painter) { this->painterostream = PainterOstream(painter); if(this->drawEdges()) { for(typename T::Finite_edges_iterator eit = this->t->finite_edges_begin(); eit != this->t->finite_edges_end(); ++eit){ if(this->t->is_constrained(*eit)){ painter->setPen(constraintsPen()); } else { painter->setPen(this->edgesPen()); } this->painterostream << this->t->segment(*eit); } } this->paintVertices(painter); } template void ConstrainedTriangulationGraphicsItem::operator()(typename T::Face_handle fh) { for (int i=0; i<3; i++) { if (this->drawEdges() && ( fh < fh->neighbor(i) || this->t->is_infinite(fh->neighbor(i)) ) ) { if(this->t->is_constrained(typename T::Edge(fh,i))){ this->m_painter->setPen(constraintsPen()); } else { this->m_painter->setPen(this->edgesPen()); } this->painterostream << this->t->segment(fh,i); } if(this->drawVertices()) { paintOneVertex(fh->vertex(i)->point()); } } } } // namespace Qt } // namespace CGAL #endif // CGAL_Q_CONSTRAINED_TRIANGULATION_GRAPHICS_ITEM_H