[Qt-creator] export to pdf
Boy Lenssen
Boy.Lenssen at esaote.nl
Wed Feb 3 12:58:19 CET 2010
Glad to be of help :-)
________________________________
From: qt-creator-bounces at trolltech.com
[mailto:qt-creator-bounces at trolltech.com] On Behalf Of John Bull
Sent: woensdag 3 februari 2010 12:52
To: qt-creator at trolltech.com
Subject: Re: [Qt-creator] export to pdf
Awesome! Just what I needed.
On Mon, Feb 1, 2010 at 11:11 AM, Boy Lenssen <Boy.Lenssen at esaote.nl>
wrote:
How about using the render() function?
QTableWidget t;
t.render( &painter );
________________________________
From: qt-creator-bounces at trolltech.com
[mailto:qt-creator-bounces at trolltech.com] On Behalf Of John Bull
Sent: zondag 31 januari 2010 7:24
To: qt-creator at trolltech.com
Subject: Re: [Qt-creator] export to pdf
This is what I have for now. I need the actual table as it is.
Any reference on how to do this would be appreciated.
JB
void Table::exportToPdf()
{
QString fileName = QFileDialog::getSaveFileName(this,tr("Export as
Pdf.."),"", tr("PDF files (*.pdf)"));
if (fileName.isEmpty())
return;
QPrinter printer;
printer.setOutputFormat(QPrinter::PdfFormat);
printer.setOutputFileName(fileName);
printer.setFullPage(true);
printer.setOrientation(QPrinter::Portrait);
printer.setPaperSize(QPrinter::A4);
QPainter painter(&printer);
painter.drawText(0, 0 , 250, 200,Qt::TextWordWrap,exportText );
// painter.begin()
}
On Sat, Jan 30, 2010 at 9:16 PM, Martin Hofius
<Martin at hofius-online.com> wrote:
Am Samstag, 30. Januar 2010 schrieb John Bull:
> I have a QTable widget in a simple app I'm involved in and I would
like to
> be able to export it to pdf as it is .?
> How can I achieve this.
how about "printing" it to pdf...?
Martin
_______________________________________________
Qt-creator mailing list
Qt-creator at trolltech.com
http://lists.trolltech.com/mailman/listinfo/qt-creator
_______________________________________________
Qt-creator mailing list
Qt-creator at trolltech.com
http://lists.trolltech.com/mailman/listinfo/qt-creator
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.qt-project.org/pipermail/qt-creator-old/attachments/20100203/a390c35a/attachment.html
More information about the Qt-creator-old
mailing list