PrintingServices.cs 3.4 KB

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