- Added SaveFileDialog.cs
authorPeter Dennis Bartok <pbartok@mono-cvs.ximian.com>
Thu, 10 Mar 2005 20:40:04 +0000 (20:40 -0000)
committerPeter Dennis Bartok <pbartok@mono-cvs.ximian.com>
Thu, 10 Mar 2005 20:40:04 +0000 (20:40 -0000)
svn path=/trunk/mcs/; revision=41662

mcs/class/Managed.Windows.Forms/ChangeLog
mcs/class/Managed.Windows.Forms/System.Windows.Forms.dll.sources
mcs/class/Managed.Windows.Forms/System.Windows.Forms/ChangeLog
mcs/class/Managed.Windows.Forms/System.Windows.Forms/SaveFileDialog.cs [new file with mode: 0644]

index 64300b26f757023748564acfbfbebbb4fc88d391..39601c037875ecc357d06aecc2a09279e21aca29 100644 (file)
@@ -1,3 +1,11 @@
+2005-03-10  Peter Bartok  <pbartok@novell.com>
+
+       * System.Windows.Forms.dll.sources: Added SaveFileDialog.cs
+
+2005-03-09  Peter Bartok  <pbartok@novell.com>
+
+       * System.Windows.Forms.dll.sources: Added MdiClient.cs
+
 2005-02-24  Peter Bartok  <pbartok@novell.com>
 
        * System.Windows.Forms.dll.sources: Removed HandleData.cs
index aef72181689a689208dbecdd3560808e0fac90c7..36d7bd369121e7268efd06bc20c67eb1cbbb57ff 100644 (file)
@@ -179,6 +179,7 @@ System.Windows.Forms/ListViewAlignment.cs
 System.Windows.Forms/ListViewItem.cs
 System.Windows.Forms/ListViewItemConverter.cs
 System.Windows.Forms/MainMenu.cs
+System.Windows.Forms/MdiClient.cs
 System.Windows.Forms/MdiLayout.cs
 System.Windows.Forms/MeasureItemEventHandler.cs
 System.Windows.Forms/MeasureItemEventArgs.cs
@@ -232,6 +233,7 @@ System.Windows.Forms/QueryContinueDragEventArgs.cs
 System.Windows.Forms/QueryContinueDragEventHandler.cs
 System.Windows.Forms/RadioButton.cs
 System.Windows.Forms/RightToLeft.cs
+System.Windows.Forms/SaveFileDialog.cs
 System.Windows.Forms/ScrollableControl.cs
 System.Windows.Forms/ScrollBar.cs
 System.Windows.Forms/ScrollBars.cs
index b1a015eef9a1cc3bf2104cb9cba673b41e47f58b..d1a539e93fe56ae212257ec28124957b71817800 100644 (file)
@@ -1,3 +1,7 @@
+2005-03-10  Peter Bartok  <pbartok@novell.com>
+
+       * SaveFileDialog.cs: Added emtpy file
+
 2005-03-08  Peter Bartok  <pbartok@novell.com>
 
        * Control.cs: Fixed bug #73190; now invokes CreateControl (which
diff --git a/mcs/class/Managed.Windows.Forms/System.Windows.Forms/SaveFileDialog.cs b/mcs/class/Managed.Windows.Forms/System.Windows.Forms/SaveFileDialog.cs
new file mode 100644 (file)
index 0000000..58d264f
--- /dev/null
@@ -0,0 +1,41 @@
+// 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.
+//
+// Copyright (c) 2005 Novell, Inc. (http://www.novell.com)
+//
+// Authors:
+//
+//
+
+// NOT COMPLETE
+
+namespace System.Windows.Forms {
+       public sealed class SaveFileDialog : FileDialog {
+               #region Public Constructors
+               public SaveFileDialog() {
+               }
+               #endregion      // Public Constructors
+
+               #region Public Instance Properties
+               #endregion      // Public Instance Properties
+
+               #region Public Instance Methods
+               #endregion      // Public Instance Methods
+       }
+}