When a file is printed, the filename also appears at the top of the page.
Expected Result: Application should be able to send the print command which should
print only the contents of a file
| Submitted | pcsanjeev - 2012-05-09 - 13:46:44z | Assigned | nobody |
|---|---|---|---|
| Priority | 5 | Category | None |
| Status | Open | Group | None |
| Resolution | None | Visibility | No |
| 2013-01-28 - 20:21:00z ringeis |
I'm trying to work on this but I can't seem to find the code related to the actual ui representation. In other words, when you click on File > Print and you get the printing popup. I need the code that represents that. |
|---|---|
| 2013-01-28 - 20:59:06z ezust |
In general, you should ask for help on jedit-devel. This is not the correct place
to ask for help. For your specific question, you can see what the "print" action does by looking at actions.xml, see the <action NAME="print"> code inside that element. Then you will see this: <CODE> if(jEdit.getBooleanProperty("print.force13")) BufferPrinter1_3.print(view,buffer,false); else BufferPrinter1_4.print(view,buffer,false); </CODE> |