You need to log in to create posts and topics.

AudioOut symbol vs Buzzer symbol

It's not a big deal but to recognize AudioOut in Buzer mode I did this:

if( m_buzzer)
 {
     p->drawChord(QRectF( -10, -24, 40, 40 ), -90*16, -180*16);
 }
 else
 {
     static const QPointF points[7] = {
        QPointF(-10,-12 ),
        QPointF(-10, 4 ),
        QPointF( 0, 4 ),
        QPointF( 10, 16 ),
        QPointF( 10, -24 ),
        QPointF( 0, -12 ),
        QPointF(-10, -12 )
    };

    p->drawPolygon(points, 7);
 }

 if( m_deviceinfo.isNull() ){
    p->drawLine(0,-8, 7, 0 );
    p->drawLine( 7,-8,0, 0 );
 }

Result

Greetings and best wishes for the holidays.

KerimF has reacted to this post.
KerimF

Thanks, that looks agood idea.

Happy Christmas for you too.

KerimF has reacted to this post.
KerimF