string s [3] = {"Qt:: czerń", "Qt:: czerwień", "Qt:: błękit"};
int a [3] = {60,40,120};
dla (int i=0; i<3; i++) {
dla (int x=6; x<18; x=x+6) {
QRectF rect1 (x, 0.0, 0.0, - a [i]); //
line.setPen (QPen (s [i], 8, Qt:: SolidLine, Qt:: RoundCap, Qt:: MiterJoin));
line.drawRect (rect1);
}
}
|