// // System.Windows.Forms.FontDialog.cs // // Author: // stubbed out by Daniel Carrera (dcarrera@math.toronto.edu) // Dennis Hayes (dennish@raytek.com) // // (C) 2002 Ximian, Inc // using System.Drawing; namespace System.Windows.Forms { // // This is only a template. Nothing is implemented yet. // // public class FontDialog : CommonDialog { // // --- Constructor // [MonoTODO] public FontDialog() { throw new NotImplementedException (); } // // --- Public Properties // [MonoTODO] public bool AllowScriptChange { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } } [MonoTODO] public bool AllowSimululations { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } } [MonoTODO] public bool AllowVectorForms { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } } [MonoTODO] public bool AllowVerticalForms { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } } [MonoTODO] public Color Color { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } } [MonoTODO] public bool FixedPitchOnly { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } } [MonoTODO] public Font Font { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } } [MonoTODO] public bool FontMustExist { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } } [MonoTODO] public int MaxSize { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } } [MonoTODO] public int MinSize { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } } [MonoTODO] public bool ScriptsOnly { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } } [MonoTODO] public bool ShowApply { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } } [MonoTODO] public bool ShowColor { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } } [MonoTODO] public bool ShowEffects { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } } [MonoTODO] public bool ShowHelp { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } } // --- Public Methods //public void Dispose() //{ // throw new NotImplementedException (); //} [MonoTODO] public override bool Equals(object o) { throw new NotImplementedException (); } [MonoTODO] public override int GetHashCode() { //FIXME add our proprities return base.GetHashCode(); } [MonoTODO] public override void Reset() { throw new NotImplementedException (); } //public DialogResult ShowDialog() //{ // throw new NotImplementedException (); //} [MonoTODO] public override string ToString() { throw new NotImplementedException (); } // // --- Public Events // [MonoTODO] public event EventHandler Apply; // // --- Protected Properties // //[MonoTODO] //protected void Dispose() //{ // throw new NotImplementedException (); //} [MonoTODO] protected override IntPtr HookProc( IntPtr hWnd, int msg, IntPtr wparam, IntPtr lparam ) { throw new NotImplementedException (); } [MonoTODO] protected override bool RunDialog(IntPtr hWndOwner) { throw new NotImplementedException (); } } }