It seems yes , e.g. lines.


Qt Code:
  1. painter->drawLine(0,widget->height(), 0, 0-(widget->height()/2));
  2. painter->drawLine(0-(widget->width()/2),0, (widget->width()/2), 0);
To copy to clipboard, switch view to plain text mode 


Qt Code:
  1. Plot p;
  2. //set (x,y) w and h relative to screen
  3. p.setGeometry(100, 100, 800, 600);
  4.  
  5. p.show();
To copy to clipboard, switch view to plain text mode 
but result is that they are painted somewhere around.....