Merge pull request #2542 from akoeplinger/remove-changelog
[mono.git] / mcs / class / System.Windows.Forms / System.Windows.Forms / BoundsSpecified.cs
index e7d104d51bdb8630a6f817af22125819328444e7..0b64c75381b7444807fe7821d42bf30db5b39a86 100644 (file)
@@ -1,25 +1,42 @@
+// 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.
 //
-// System.Windows.Forms.BoundsSpecified.cs
+// Copyright (c) 2004 Novell, Inc.
 //
-// Author:
-//   Dennis Hayes (dennish@raytek.com)
-// (C) 2002 Ximian, Inc.  http://www.ximian.com
+// Authors:
+//     Peter Bartok    pbartok@novell.com
 //
 
-using System;
+// COMPLETE
 
-namespace System.Windows.Forms {
-
-       /// <summary>
-       /// </summary>
-       public enum BoundsSpecified {
-               All = 15,
-               Height = 8,
-               Location = 3,
-               None = 0,
-               Size = 12,
-               Width = 4,
-               X = 1,
-               Y = 2
+namespace System.Windows.Forms
+{
+       [Flags]
+       public enum BoundsSpecified
+       {
+               None            = 0x00000000,
+               X               = 0x00000001,
+               Y               = 0x00000002,
+               Location        = 0x00000003,
+               Width           = 0x00000004,
+               Height          = 0x00000008,
+               Size            = 0x0000000c,
+               All             = 0x0000000f
        }
 }