New test.
[mono.git] / mcs / class / System.Drawing / System.Drawing.Printing / PrintingServices.cs
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, jordimash@gmail.com
26 //
27
28 using System.Runtime.InteropServices;
29 using System.Collections;
30 using System.Drawing.Printing;
31 using System.ComponentModel;
32 using System.Drawing.Imaging;
33
34 namespace System.Drawing.Printing
35 {
36         internal abstract class PrintingServices
37         {
38                 // Properties
39                 internal abstract PrinterSettings.StringCollection InstalledPrinters { get; }
40                 internal abstract string DefaultPrinter { get; }
41                                 
42
43                 // Methods
44                 internal abstract bool StartDoc (GraphicsPrinter gr, string doc_name, string output_file);
45                 internal abstract IntPtr CreateGraphicsContext (PrinterSettings settings);
46                 internal abstract bool StartPage (GraphicsPrinter gr);
47                 internal abstract bool EndPage (GraphicsPrinter gr);
48                 internal abstract bool EndDoc (GraphicsPrinter gr);
49                 
50                 internal abstract void LoadPrinterSettings (string printer, PrinterSettings settings);
51                 internal abstract void LoadPrinterResolutions (string printer, PrinterSettings settings);
52                 internal abstract void LoadPrinterPaperSizes (string printer, PrinterSettings settings);
53                 internal abstract void LoadPrinterPaperSources (string printer, PrinterSettings settings);
54
55                 //Used from SWF
56                 internal abstract void GetPrintDialogInfo (string printer, ref string port, ref string type, ref string status, ref string comment);
57                 
58                 internal void LoadDefaultResolutions (PrinterSettings.PrinterResolutionCollection col)
59                 {
60                         col.Add (new PrinterResolution ((int) PrinterResolutionKind.High, -1, PrinterResolutionKind.High));
61                         col.Add (new PrinterResolution ((int) PrinterResolutionKind.Medium, -1, PrinterResolutionKind.Medium));
62                         col.Add (new PrinterResolution ((int) PrinterResolutionKind.Low, -1, PrinterResolutionKind.Low));
63                         col.Add (new PrinterResolution ((int) PrinterResolutionKind.Draft, -1, PrinterResolutionKind.Draft));
64                 }
65         }
66
67         internal class SysPrn
68         {
69                 static PrintingServices service;
70
71                 static SysPrn ()
72                 {
73                         int platform = (int) Environment.OSVersion.Platform;
74                         
75                         if (platform == 4 || platform == 128) {
76                                 service = new  PrintingServicesUnix ();
77                         } else {
78                                 service = new PrintingServicesWin32 ();
79                         }
80                 }
81
82                 static internal PrintingServices Service {
83                         get { return service; }
84                 }
85
86                 internal static void GetPrintDialogInfo (string printer, ref string port, ref string type, ref string status, ref string comment)
87                 {
88                         service.GetPrintDialogInfo (printer, ref port, ref type, ref status, ref comment);
89                 }
90         }
91         
92         internal class GraphicsPrinter
93         {
94                 private Graphics graphics;
95                 private IntPtr  hDC;
96                  
97                 internal GraphicsPrinter (Graphics gr, IntPtr dc)
98                 {
99                         graphics = gr;
100                         hDC = dc;
101                 }
102                                                 
103                 internal Graphics Graphics { 
104                         get { return graphics; }
105                         set { graphics = value; }
106                 }
107                 internal IntPtr Hdc { get { return hDC; }}
108         }
109 }
110
111