(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / class / System.Windows.Forms / System.Windows.Forms / PageSetupDialog.cs
blob8b0eaefdbdf75294a2d963a208df547dcbf02b6b
1 //
2 // System.Windows.Forms.PageSetupDialog.cs
3 //
4 // Author:
5 // stubbed out by Paul Osman (paul.osman@sympatico.ca)
6 // Dennis Hayes (dennish@raytek.com)
7 //
8 // (C) 2002 Ximian, Inc
9 //
12 // Permission is hereby granted, free of charge, to any person obtaining
13 // a copy of this software and associated documentation files (the
14 // "Software"), to deal in the Software without restriction, including
15 // without limitation the rights to use, copy, modify, merge, publish,
16 // distribute, sublicense, and/or sell copies of the Software, and to
17 // permit persons to whom the Software is furnished to do so, subject to
18 // the following conditions:
19 //
20 // The above copyright notice and this permission notice shall be
21 // included in all copies or substantial portions of the Software.
22 //
23 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
27 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
28 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
29 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
31 using System.Drawing.Printing;
32 using System.Runtime.Remoting;
33 using System.ComponentModel;
34 namespace System.Windows.Forms {
36 // <summary>
38 // </summary>
40 public sealed class PageSetupDialog : CommonDialog {
43 // --- Constructor
45 [MonoTODO]
46 public PageSetupDialog()
52 // --- Public Properties
54 [MonoTODO]
55 public bool AllowMargins {
56 get {
57 throw new NotImplementedException ();
59 set {
60 //FIXME:
63 [MonoTODO]
64 public bool AllowOrientation {
65 get {
66 throw new NotImplementedException ();
68 set {
69 //FIXME:
72 [MonoTODO]
73 public bool AllowPaper {
74 get {
75 throw new NotImplementedException ();
77 set {
78 //FIXME:
81 [MonoTODO]
82 public bool AllowPrinter {
83 get {
84 throw new NotImplementedException ();
86 set {
87 //FIXME:
90 [MonoTODO]
91 public bool ShowHelp {
92 get {
93 throw new NotImplementedException ();
95 set {
96 //FIXME:
99 [MonoTODO]
100 public bool ShowNetwork {
101 get {
102 throw new NotImplementedException ();
104 set {
105 //FIXME:
109 [MonoTODO]
110 public PrintDocument Document {
111 get {
112 throw new NotImplementedException ();
114 set {
115 //FIXME:
118 [MonoTODO]
119 public Margins MinMargins {
120 get {
121 throw new NotImplementedException ();
123 set {
124 //FIXME:
127 [MonoTODO]
128 public PageSettings PageSettings {
129 get {
130 throw new NotImplementedException ();
132 set {
133 //FIXME:
136 [MonoTODO]
137 public PrinterSettings PrinterSettings {
138 get {
139 throw new NotImplementedException ();
141 set {
142 //FIXME:
147 // --- Public Methods
150 [MonoTODO]
151 public override void Reset()
153 //FIXME:
157 // --- Protected Methods
160 [MonoTODO]
161 protected override bool RunDialog(IntPtr hwndOwner)
163 throw new NotImplementedException ();