Printings using CUPS, when can my app quit? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T01:38:44Z http://stackoverflow.com/feeds/question/76637 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/76637/printings-using-cups-when-can-my-app-quit 2 Printings using CUPS, when can my app quit? KPexEA 2008-09-16T20:29:25Z 2008-10-13T17:28:50Z <p>I have an linux app that uses cups for printing, but I've noticed that if I print and then quit my app right away my printout never appears. So I assume that my app has to wait for it to actually come out of the printer before quitting, so does anyone know how to tell when it's finished printing??</p> <p>I'm using libcups to print a postscript file that my app generates. So I use the command to print the file and it then returns back to my app. So my app thinks that the document is off to the printer queue when I guess it has not made it there yet. So rather than have all my users have to look on the screen for the printer icon in the system tray I would rather have a solution in code, so if they try and quit before it has really been sent off I can alert them to the fact. Also the file I generate is a temporary file so it would be nice to know when it is finished with so I can delete it.</p> http://stackoverflow.com/questions/76637/printings-using-cups-when-can-my-app-quit/76813#76813 0 Answer by Joseph for Printings using CUPS, when can my app quit? Joseph 2008-09-16T20:42:16Z 2008-09-16T20:42:16Z <p>Your app likely hadn't finished printing yet when you quit it. If you're using evince to print a PDF or other document, this is a known bug--there is no visual confirmation that the printing operation is underway. If the print job has been submitted, a printer icon will appear in your system tray until the actual printing has finished. You can click on the printer icon in the system tray and see what jobs are currently running and pending.</p> http://stackoverflow.com/questions/76637/printings-using-cups-when-can-my-app-quit/82209#82209 1 Answer by phjr for Printings using CUPS, when can my app quit? phjr 2008-09-17T11:34:03Z 2008-09-17T11:34:03Z <p>As soon as your CUPS web interface (localhost:631) or some other thing to look at what CUPS sees shows you that CUPS received the job, you can quit the application.</p> http://stackoverflow.com/questions/76637/printings-using-cups-when-can-my-app-quit/190892#190892 0 Answer by hendry for Printings using CUPS, when can my app quit? hendry 2008-10-10T11:24:21Z 2008-10-10T11:24:21Z <p>How about using a print spool service like <code>lpr</code> &amp; <code>lpq</code>?</p>