Qt5 C++ Printing status
-
Hello,
I would like to know the status of the print job (if the print went well or not) Qt5 c ++ -
Hello,
I would like to know the status of the print job (if the print went well or not) Qt5 c ++@devman There is no Qt interface for that. Qt (via QPrinter) sends the job to the printer subsystem of the OS and that's it.
You can, however, query the state of the printer (see QPrinter documentation!) and thus derive some assumptions.
Any other solution would not be platform agnostic, you'll need to interface yourself with the respective printer subsystem.