| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373 |
- //
- // System.Drawing.PrinterSettings.cs
- //
- // Authors:
- // Dennis Hayes ([email protected])
- // Herve Poussineau ([email protected])
- // Andreas Nahr ([email protected])
- //
- // (C) 2002 Ximian, Inc
- //
- //
- // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
- //
- // Permission is hereby granted, free of charge, to any person obtaining
- // a copy of this software and associated documentation files (the
- // "Software"), to deal in the Software without restriction, including
- // without limitation the rights to use, copy, modify, merge, publish,
- // distribute, sublicense, and/or sell copies of the Software, and to
- // permit persons to whom the Software is furnished to do so, subject to
- // the following conditions:
- //
- // The above copyright notice and this permission notice shall be
- // included in all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
- // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
- // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
- // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- //
- using System;
- using System.Runtime.InteropServices;
- using System.Collections;
- using System.Drawing.Printing;
- namespace System.Drawing.Printing
- {
- [Serializable]
- [ComVisible(false)]
- public class PrinterSettings : ICloneable
- {
- public PrinterSettings()
- {
- }
- // Public subclasses
- public class PaperSourceCollection : ICollection
- {
- ArrayList _PaperSources = new ArrayList();
-
- public PaperSourceCollection(PaperSource[] array) {
- foreach (PaperSource ps in array)
- _PaperSources.Add(ps);
- }
-
- public int Count { get { return _PaperSources.Count; } }
- bool ICollection.IsSynchronized { get { return false; } }
- object ICollection.SyncRoot { get { return this; } }
-
- public virtual PaperSource this[int index] {
- get { return _PaperSources[index] as PaperSource; }
- }
-
- public IEnumerator GetEnumerator()
- {
- return _PaperSources.GetEnumerator();
- }
-
- void ICollection.CopyTo(Array array, int index)
- {
- _PaperSources.CopyTo(array, index);
- }
- }
- public class PaperSizeCollection : ICollection
- {
- ArrayList _PaperSizes = new ArrayList();
-
- public PaperSizeCollection(PaperSize[] array) {
- foreach (PaperSize ps in array)
- _PaperSizes.Add(ps);
- }
-
- public int Count { get { return _PaperSizes.Count; } }
- bool ICollection.IsSynchronized { get { return false; } }
- object ICollection.SyncRoot { get { return this; } }
-
- public virtual PaperSize this[int index] {
- get { return _PaperSizes[index] as PaperSize; }
- }
-
- public IEnumerator GetEnumerator()
- {
- return _PaperSizes.GetEnumerator();
- }
-
- void ICollection.CopyTo(Array array, int index)
- {
- _PaperSizes.CopyTo(array, index);
- }
- }
- public class PrinterResolutionCollection : ICollection
- {
- ArrayList _PrinterResolutions = new ArrayList();
-
- public PrinterResolutionCollection(PrinterResolution[] array) {
- foreach (PrinterResolution pr in array)
- _PrinterResolutions.Add(pr);
- }
-
- public int Count { get { return _PrinterResolutions.Count; } }
- bool ICollection.IsSynchronized { get { return false; } }
- object ICollection.SyncRoot { get { return this; } }
-
- public virtual PrinterResolution this[int index] {
- get { return _PrinterResolutions[index] as PrinterResolution; }
- }
-
- public IEnumerator GetEnumerator()
- {
- return _PrinterResolutions.GetEnumerator();
- }
-
- void ICollection.CopyTo(Array array, int index)
- {
- _PrinterResolutions.CopyTo(array, index);
- }
- }
- public class StringCollection : ICollection
- {
- ArrayList _Strings = new ArrayList();
-
- public StringCollection(string[] array) {
- foreach (string s in array)
- _Strings.Add(s);
- }
-
- public int Count { get { return _Strings.Count; } }
- bool ICollection.IsSynchronized { get { return false; } }
- object ICollection.SyncRoot { get { return this; } }
-
- public virtual string this[int index] {
- get { return _Strings[index] as string; }
- }
- public IEnumerator GetEnumerator()
- {
- return _Strings.GetEnumerator();
- }
-
- void ICollection.CopyTo(Array array, int index)
- {
- _Strings.CopyTo(array, index);
- }
- }
-
- //properties
- [MonoTODO("PrinterSettings.CanDuplex")]
- public bool CanDuplex
- {
- get { throw new NotImplementedException(); }
- }
- [MonoTODO("PrinterSettings.Collate")]
- public bool Collate
- {
- get { throw new NotImplementedException(); }
- set { throw new NotImplementedException(); }
- }
- [MonoTODO("PrinterSettings.Copies")]
- public short Copies
- {
- get { throw new NotImplementedException(); }
- set { throw new NotImplementedException(); }
- }
- [MonoTODO("PrinterSettings.DefaultPageSettings")]
- public PageSettings DefaultPageSettings
- {
- get
- {
- return new PageSettings(
- this,
- // TODO: get default color mode for this printer
- false,
- // TODO: get default orientation for this printer
- false,
- // TODO: get default paper size for this printer
- new PaperSize("A4", 827, 1169),
- // TODO: get default paper source for this printer
- new PaperSource("default", PaperSourceKind.FormSource),
- // TODO: get default resolution for this printer
- new PrinterResolution(300, 300, PrinterResolutionKind.Medium)
- );
- }
- }
- [MonoTODO("PrinterSettings.Duplex")]
- public Duplex Duplex
- {
- get { throw new NotImplementedException(); }
- set { throw new NotImplementedException(); }
- }
- [MonoTODO("PrinterSettings.FromPage")]
- public int FromPage
- {
- get { throw new NotImplementedException(); }
- set { throw new NotImplementedException(); }
- }
- [MonoTODO("PrinterSettings.InstalledPrinters")]
- public static PrinterSettings.StringCollection InstalledPrinters
- {
- get { throw new NotImplementedException(); }
- }
- [MonoTODO("PrinterSettings.IsDefaultPrinter")]
- public bool IsDefaultPrinter
- {
- get { throw new NotImplementedException(); }
- }
- [MonoTODO("PrinterSettings.IsPlotter")]
- public bool IsPlotter
- {
- get { throw new NotImplementedException(); }
- }
- [MonoTODO("PrinterSettings.IsValid")]
- public bool IsValid
- {
- get { throw new NotImplementedException(); }
- }
- [MonoTODO("PrinterSettings.LandscapeAngle")]
- public int LandscapeAngle
- {
- get { throw new NotImplementedException(); }
- }
- [MonoTODO("PrinterSettings.MaximumCopies")]
- public int MaximumCopies
- {
- get { throw new NotImplementedException(); }
- }
- [MonoTODO("PrinterSettings.MaximumPage")]
- public int MaximumPage
- {
- get { throw new NotImplementedException(); }
- set { throw new NotImplementedException(); }
- }
- [MonoTODO("PrinterSettings.MinimumPage")]
- public int MinimumPage
- {
- get { throw new NotImplementedException(); }
- set { throw new NotImplementedException(); }
- }
- [MonoTODO("PrinterSettings.PaperSizes")]
- public PrinterSettings.PaperSizeCollection PaperSizes
- {
- get { throw new NotImplementedException(); }
- }
- [MonoTODO("PrinterSettings.PaperSources")]
- public PrinterSettings.PaperSourceCollection PaperSources
- {
- get { throw new NotImplementedException(); }
- }
- [MonoTODO("PrinterSettings.PrinterName")]
- public string PrinterName
- {
- get { throw new NotImplementedException(); }
- set { throw new NotImplementedException(); }
- }
- [MonoTODO("PrinterSettings.PrinterResolutions")]
- public PrinterSettings.PrinterResolutionCollection PrinterResolutions
- {
- get { throw new NotImplementedException(); }
- }
- [MonoTODO("PrinterSettings.PrintRange")]
- public PrintRange PrintRange
- {
- get { throw new NotImplementedException(); }
- set { throw new NotImplementedException(); }
- }
- [MonoTODO("PrinterSettings.PrintToFile")]
- public bool PrintToFile
- {
- get { throw new NotImplementedException(); }
- set { throw new NotImplementedException(); }
- }
- [MonoTODO("PrinterSettings.SupportsColor")]
- public bool SupportsColor
- {
- get { throw new NotImplementedException(); }
- }
- [MonoTODO("PrinterSettings.ToPage")]
- public int ToPage
- {
- get { throw new NotImplementedException(); }
- set { throw new NotImplementedException(); }
- }
- //methods
- [MonoTODO("PrinterSettings.Clone")]
- public virtual object Clone()
- {
- throw new NotImplementedException();
- }
- [MonoTODO("PrinterSettings.CreateMeasurementGraphics")]
- public Graphics CreateMeasurementGraphics()
- {
- throw new NotImplementedException();
- }
- [MonoTODO("PrinterSettings.GetHdevmode")]
- public IntPtr GetHdevmode()
- {
- throw new NotImplementedException();
- }
- [MonoTODO("PrinterSettings.GetHdevmode")]
- public IntPtr GetHdevmode(PageSettings pageSettings)
- {
- throw new NotImplementedException();
- }
- [MonoTODO("PrinterSettings.GetHdevname")]
- public IntPtr GetHdevnames()
- {
- throw new NotImplementedException();
- }
- [MonoTODO("PrinterSettings.SetHdevmode")]
- public void SetHdevmode(IntPtr hdevmode)
- {
- throw new NotImplementedException();
- }
- [MonoTODO("PrinterSettings.SetHdevnames")]
- public void SetHdevnames(IntPtr hdevnames)
- {
- throw new NotImplementedException();
- }
- [MonoTODO("PrinterSettings.ToString")]
- public override string ToString()
- {
- throw new NotImplementedException();
- }
- }
- }
|