PrintingServices.cs 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  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. internal abstract void LoadPrinterPaperSources (string printer, PrinterSettings settings);
  49. //Used from SWF
  50. internal abstract void GetPrintDialogInfo (string printer, ref string port, ref string type, ref string status, ref string comment);
  51. internal void LoadDefaultResolutions (PrinterSettings.PrinterResolutionCollection col)
  52. {
  53. col.Add (new PrinterResolution ((int) PrinterResolutionKind.High, -1, PrinterResolutionKind.High));
  54. col.Add (new PrinterResolution ((int) PrinterResolutionKind.Medium, -1, PrinterResolutionKind.Medium));
  55. col.Add (new PrinterResolution ((int) PrinterResolutionKind.Low, -1, PrinterResolutionKind.Low));
  56. col.Add (new PrinterResolution ((int) PrinterResolutionKind.Draft, -1, PrinterResolutionKind.Draft));
  57. }
  58. }
  59. internal class SysPrn
  60. {
  61. static PrintingServices service;
  62. static SysPrn ()
  63. {
  64. int platform = (int) Environment.OSVersion.Platform;
  65. if (platform == 4 || platform == 128) {
  66. service = new PrintingServicesUnix ();
  67. } else {
  68. service = new PrintingServicesWin32 ();
  69. }
  70. }
  71. static internal PrintingServices Service {
  72. get { return service; }
  73. }
  74. internal static void GetPrintDialogInfo (string printer, ref string port, ref string type, ref string status, ref string comment)
  75. {
  76. service.GetPrintDialogInfo (printer, ref port, ref type, ref status, ref comment);
  77. }
  78. }
  79. internal class GraphicsPrinter
  80. {
  81. private Graphics graphics;
  82. private IntPtr hDC;
  83. internal GraphicsPrinter (Graphics gr, IntPtr dc)
  84. {
  85. graphics = gr;
  86. hDC = dc;
  87. }
  88. internal Graphics Graphics {
  89. get { return graphics; }
  90. set { graphics = value; }
  91. }
  92. internal IntPtr Hdc { get { return hDC; }}
  93. }
  94. }