(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / class / System.Windows.Forms / WINELib / DrawItemState.cs
blob8ccf8f0e2a7512edc4dfa17a91d824c1662f756f
1 //
2 // System.Windows.Forms.DrawItemState.cs
3 //
4 // Author:
5 // Jaak Simm (jaaksimm@firm.ee)
6 // Dennis Hayes (dennish@raytek.com)
7 // (C) 2002 Ximian, Inc. http://www.ximian.com
8 //
10 using System;
12 namespace System.Windows.Forms {
15 /// <summary>
16 /// Specifies the state of an item that is being drawn.
17 /// this enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
18 /// </summary>
19 [Flags]
20 //[Serializable]
21 public enum DrawItemState {
23 None = 0,
24 Selected = 1,
25 Grayed = 2,
26 Disabled = 4,
27 Checked = 8,
28 Focus = 16,
29 Default = 32,
30 HotLight = 64,
31 Inactive = 128,
32 NoAccelerator = 256,
33 NoFocusRect = 512,
34 ComboBoxEdit = 1024,