Added some settings:

1) Quicksetting for the mouse-cursor capture.
2) A force grayscale for the printer.
3) Expert settings:
a) Autoreduce colors
b) Footer pattern
c) RDP optimize
d) thumbnails in context menu



git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@1808 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4
This commit is contained in:
RKrom 2012-04-20 10:12:57 +00:00
commit 8e4ac16006
7 changed files with 175 additions and 56 deletions

View file

@ -108,6 +108,9 @@ namespace Greenshot.Helpers {
try {
if (!cancelled) {
printDocument.PrinterSettings.PrinterName = printerName;
if (conf.OutputPrintGrayscale) {
printDocument.DefaultPageSettings.Color = false;
}
printDocument.Print();
returnPrinterSettings = printDocument.PrinterSettings;
}
@ -139,6 +142,9 @@ namespace Greenshot.Helpers {
}
try {
if (!cancelled) {
if (conf.OutputPrintGrayscale) {
printDocument.DefaultPageSettings.Color = false;
}
printDocument.Print();
returnPrinterSettings = printDialog.PrinterSettings;
}