Printing with FiveTouch

Post Reply
User avatar
Antonio Linares
Site Admin
Posts: 42730
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Has thanked: 95 times
Been thanked: 108 times
Contact:

Printing with FiveTouch

Post by Antonio Linares »

You need to download the new FiveTouch.apk version from here:

https://github.com/FiveTechSoft/fivetouch-Qt-Creator-4.8.2-and-Qt-5.12.1-2019/tree/master/download

print01.prg

Code: Select all | Expand

#include "FiveTouch.ch"function Main()   QPrintPreviewDialog( QPrinter() ):Exec()return nil 


Image
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
Posts: 42730
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Has thanked: 95 times
Been thanked: 108 times
Contact:

Re: Printing with FiveTouch

Post by Antonio Linares »

A real example:

QT print defines are here:
https://doc.qt.io/archives/qt-4.8/qprinter.html

print02.prg

Code: Select all | Expand

#include "FiveTouch.ch"#define QPRINTER_A4            0#define QPRINTER_PORTRAIT    0#define QPRINTER_MILLIMETER   0#define QPRINTER_NATIVEFORMAT  0function Main()      local oPrinter, oPrintPreviewDialog      oPrinter = QPrinter()      oPrinter:setPageSize( QPageSize( QPRINTER_A4 ) )      oPrinter:setPageOrientation( QPRINTER_PORTRAIT )      oPrinter:setPageMargins( QMarginsF( 15, 15, 15, 15 ), QPRINTER_MILLIMETER )      oPrinter:setFullPage( .F. )      oPrinter:setOutputFormat( QPRINTER_NATIVEFORMAT )      oPrintPreviewDialog := QPrintPreviewDialog( oPrinter )      oPrintPreviewDialog:Connect( "paintRequested(QPrinter*)", { | oPrinter | PrintPage( oPrinter ) } )      oPrintPreviewDialog:Exec()return nilfunction PrintPage( oPrinter )      local oPainter      oPainter = QPainter()      oPainter:Begin( oPrinter )      oPainter:DrawText( 100, 100, "Some text" )      oPainter:End()return nil


Image

Many thanks to Cristian Francolino for his great example on qtcontribs google group:
https://groups.google.com/d/msg/qtcontribs/ftmFJn_py-k/v5zUyVfCBAAJ
regards, saludos

Antonio Linares
www.fivetechsoft.com
Post Reply