Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / class / corlib / System / TermInfoBooleans.cs
1 //
2 // System.TermInfoBooleans
3 //
4 // Authors:
5 //      Gonzalo Paniagua Javier (gonzalo@ximian.com)
6 //
7 // (C) 2005 Novell, Inc (http://www.novell.com)
8 //
9
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30
31 // These values are taken from 'man 5 terminfo' and /usr/include/term.h.
32 // They are the indexes for the boolean capabilities in a terminfo file.
33 namespace System {
34         enum TermInfoBooleans {
35                 AutoLeftMargin,         // 0
36                 AutoRightMargin,
37                 NoEscCtlc,
38                 CeolStandoutGlitch,
39                 EatNewlineGlitch,
40                 EraseOverstrike,
41                 GenericType,
42                 HardCopy,
43                 HasMetaKey,
44                 HasStatusLine,
45                 InsertNullGlitch,
46                 MemoryAbove,
47                 MemoryBelow,
48                 MoveInsertMode,
49                 MoveStandoutMode,
50                 OverStrike,
51                 StatusLineEscOk,
52                 DestTabsMagicSmso,
53                 TildeGlitch,
54                 TransparentUnderline,
55                 XonXoff,
56                 NeedsXonXoff,
57                 PrtrSilent,
58                 HardCursor,
59                 NonRevRmcup,
60                 NoPadChar,
61                 NonDestScrollRegion,
62                 CanChange,
63                 BackColorErase,
64                 HueLightnessSaturation,
65                 ColAddrGlitch,
66                 CrCancelsMicroMode,
67                 HasPrintWheel,
68                 RowAddrGlitch,
69                 SemiAutoRightMargin,
70                 CpiChangesRes,
71                 LpiChangesRes,          // 36
72                 Last
73         }
74 }
75