void NAND_component::PaintComp(QPainter &p) { if(!ref.isNull()) { if(selektovan==true){ p.setPen(Qt::red); } else { p.setPen(Qt::black); } QPoint lStart(ref.x()+20,ref.y()); QPoint lEnd(ref.x()+20,ref.y()+80); QPoint centar(ref.x()+65,ref.y()+40); //komponenta p.drawLine(lStart.x(),lStart.y(),lEnd.x(),lEnd.y()); p.drawArc(lStart.x()-40,lStart.y(),80,80,-90*16, 180*16); p.drawEllipse(centar,5,5); //pinovi p.drawLine(ref.x(),ref.y()+30,ref.x()+20,ref.y()+30); p.drawLine(ref.x(),ref.y()+50,ref.x()+20,ref.y()+50); p.drawLine(ref.x()+70,ref.y()+40,ref.x()+90,ref.y()+40); } }
void NOR_component::PaintComp(QPainter &p){ if(!ref.isNull()) { QPoint lStart(ref.x()+20,ref.y()); QPoint lEnd(ref.x()+20,ref.y()+80); QPoint centar(ref.x()+75,ref.y()+40); //unutrasnji luk p.drawArc(lStart.x()-20,lStart.y(),40,80,-90*16, 180*16); //produzeci zbog estetike p.drawLine(lStart.x(),lStart.y(),lStart.x()+20,lStart.y()); p.drawLine(lStart.x(),lStart.y()+80,lStart.x()+20,lStart.y()+80); //spoljasnji krug p.drawArc(lStart.x()-10,lStart.y(),60,80,-90*16, 180*16); //pinovi p.drawLine(ref.x(),ref.y()+30,ref.x()+38,ref.y()+30); p.drawLine(ref.x(),ref.y()+50,ref.x()+38,ref.y()+50); p.drawLine(ref.x()+80,ref.y()+40,ref.x()+90,ref.y()+40); //kruzic za not p.drawEllipse(centar,5,5); } }
void NAND_component::PaintComp(QPainter &p) { if(!ref.isNull()) { QPoint lStart(ref.x()+20,ref.y()); QPoint lEnd(ref.x()+20,ref.y()+80); QPoint centar(ref.x()+65,ref.y()+40); //komponenta p.drawLine(lStart.x(),lStart.y(),lEnd.x(),lEnd.y()); p.drawArc(lStart.x()-40,lStart.y(),80,80,-90*16, 180*16); p.drawEllipse(centar,5,5); //pinovi p.drawLine(ref.x(),ref.y()+30,ref.x()+20,ref.y()+30); p.drawLine(ref.x(),ref.y()+50,ref.x()+20,ref.y()+50); p.drawLine(ref.x()+70,ref.y()+40,ref.x()+90,ref.y()+40); } }