Fixes #79835, implements PrinterSettings.IsValid, throws proper
[mono.git] / mcs / class / System.Drawing / System.Drawing.Printing / PaperSize.cs
1 //
2 // System.Drawing.PaperSize.cs
3 //
4 // Author:
5 //   Dennis Hayes (dennish@Raytek.com)
6 //   Herve Poussineau (hpoussineau@fr.st)
7 //
8 // (C) 2002 Ximian, Inc
9 //
10
11 //
12 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
13 //
14 // Permission is hereby granted, free of charge, to any person obtaining
15 // a copy of this software and associated documentation files (the
16 // "Software"), to deal in the Software without restriction, including
17 // without limitation the rights to use, copy, modify, merge, publish,
18 // distribute, sublicense, and/or sell copies of the Software, and to
19 // permit persons to whom the Software is furnished to do so, subject to
20 // the following conditions:
21 // 
22 // The above copyright notice and this permission notice shall be
23 // included in all copies or substantial portions of the Software.
24 // 
25 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
26 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
27 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
28 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
29 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
30 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
31 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
32 //
33 using System;
34
35 namespace System.Drawing.Printing
36 {
37         /// <summary>
38         /// Summary description for PaperSize.
39         /// </summary>
40 #if NET_2_0
41         [Serializable]
42 #endif
43         public class PaperSize
44         {
45                 string name;
46                 int width;
47                 int height;
48                 PaperKind kind;
49 #if NET_2_0
50                 public PaperSize ()
51                 {
52
53                 }
54 #endif          
55                 public PaperSize(string name, int width, int height)
56                 {
57                         this.width = width;
58                         this.height = height;
59                         this.name = name;
60                         this.kind = PaperKind.Custom;
61                 }               
62
63                 public int Width{
64                         get{
65                                 return width;
66                         }set
67                          {
68                                 if (Kind != PaperKind.Custom)
69                                         throw new ArgumentException();
70                                  width = value;
71                          }
72                 }
73                 public int Height{
74                         get{
75                                 return height;
76                         }set
77                          {
78                                 if (Kind != PaperKind.Custom)
79                                         throw new ArgumentException();
80                                  height = value;
81                          }
82                 }
83
84                 public string PaperName{
85                         get{
86                                 return name;
87                         }
88                         set{
89                                 if (Kind != PaperKind.Custom)
90                                         throw new ArgumentException();
91                                  name = value;
92                          }
93                 }
94         
95                 public PaperKind Kind{
96                         get{
97                                 return kind;
98                         }
99                 }
100                 internal void SetKind (PaperKind k) {kind = k;}
101 #if NET_2_0
102                 [MonoTODO]
103                 public int RawKind {
104                         get { throw new NotImplementedException(); }
105                         set { throw new NotImplementedException(); }
106                 }\r
107
108 #endif
109
110                 public override string ToString(){
111                         string ret = "[PaperSize {0} Kind={1} Height={2} Width={3}]";
112                         return String.Format(ret, this.PaperName, this.Kind, this.Height, this.Width);
113                 }
114         }
115 }