Now I am trying this:
Qt Code:
  1. m_document->print(&printer);
  2.  
  3.  
  4. int options = QwtPlotPrintFilter::PrintAll;
  5. options &= ~QwtPlotPrintFilter::PrintBackground;
  6. options |= QwtPlotPrintFilter::PrintFrameWithScales;
  7. filter.setOptions(options);
  8. printer.newPage();
  9. solarDiagram->print(printer,filter);
To copy to clipboard, switch view to plain text mode 
where solarDiagram is the pointer to a QwtPlot.
But as you can imagine, the print contains only the plot and not the textdocument.
Thereis a way to tell QTextDocument to "paint" on printer?
Or, how can I bind two printing on the same QPrinter?