PrintingServices.cs 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. //
  2. // Copyright (C) 2005 Novell, Inc. http://www.novell.com
  3. //
  4. // Permission is hereby granted, free of charge, to any person obtaining
  5. // a copy of this software and associated documentation files (the
  6. // "Software"), to deal in the Software without restriction, including
  7. // without limitation the rights to use, copy, modify, merge, publish,
  8. // distribute, sublicense, and/or sell copies of the Software, and to
  9. // permit persons to whom the Software is furnished to do so, subject to
  10. // the following conditions:
  11. //
  12. // The above copyright notice and this permission notice shall be
  13. // included in all copies or substantial portions of the Software.
  14. //
  15. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  16. // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  17. // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  18. // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  19. // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  20. // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  21. // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  22. //
  23. // Author:
  24. //
  25. // Jordi Mas i Hernandez, [email protected]
  26. //
  27. using System.Runtime.InteropServices;
  28. using System.Collections;
  29. using System.Drawing.Printing;
  30. using System.ComponentModel;
  31. using System.Drawing.Imaging;
  32. namespace System.Drawing.Printing
  33. {
  34. internal abstract class PrintingServices
  35. {
  36. // Properties
  37. internal abstract PrinterSettings.StringCollection InstalledPrinters { get; }
  38. internal abstract string DefaultPrinter { get; }
  39. // Methods
  40. internal abstract bool StartDoc (GraphicsPrinter gr, string doc_name, string output_file);
  41. internal abstract IntPtr CreateGraphicsContext (PrinterSettings settings);
  42. internal abstract bool StartPage (GraphicsPrinter gr);
  43. internal abstract bool EndPage (GraphicsPrinter gr);
  44. internal abstract bool EndDoc (GraphicsPrinter gr);
  45. internal abstract void LoadPrinterSettings (string printer, PrinterSettings settings);
  46. internal abstract void LoadPrinterResolutions (string printer, PrinterSettings settings);
  47. internal abstract void LoadPrinterPaperSizes (string printer, PrinterSettings settings);
  48. //Used from SWF
  49. internal abstract void GetPrintDialogInfo (string printer, ref string port, ref string type, ref string status, ref string comment);
  50. internal void LoadDefaultResolutions (PrinterSettings.PrinterResolutionCollection col)
  51. {
  52. col.Add (new PrinterResolution ((int) PrinterResolutionKind.High, -1, PrinterResolutionKind.High));
  53. col.Add (new PrinterResolution ((int) PrinterResolutionKind.Medium, -1, PrinterResolutionKind.Medium));
  54. col.Add (new PrinterResolution ((int) PrinterResolutionKind.Low, -1, PrinterResolutionKind.Low));
  55. col.Add (new PrinterResolution ((int) PrinterResolutionKind.Draft, -1, PrinterResolutionKind.Draft));
  56. }
  57. }
  58. internal class SysPrn
  59. {
  60. static PrintingServices service;
  61. static SysPrn ()
  62. {
  63. int platform = (int) Environment.OSVersion.Platform;
  64. if (platform == 4 || platform == 128) {
  65. service = new PrintingServicesUnix ();
  66. } else {
  67. service = new PrintingServicesWin32 ();
  68. }
  69. }
  70. static internal PrintingServices Service {
  71. get { return service; }
  72. }
  73. internal static void GetPrintDialogInfo (string printer, ref string port, ref string type, ref string status, ref string comment)
  74. {
  75. service.GetPrintDialogInfo (printer, ref port, ref type, ref status, ref comment);
  76. }
  77. }
  78. internal class GraphicsPrinter
  79. {
  80. private Graphics graphics;
  81. private IntPtr hDC;
  82. internal GraphicsPrinter (Graphics gr, IntPtr dc)
  83. {
  84. graphics = gr;
  85. hDC = dc;
  86. }
  87. internal Graphics Graphics {
  88. get { return graphics; }
  89. set { graphics = value; }
  90. }
  91. internal IntPtr Hdc { get { return hDC; }}
  92. }
  93. }