1
2
3
4
5
6
7
8
9
10
11 declare (
12 QBell init("^G"),
13 QBackSpace init("^H"),
14 QTab init(" "),
15 QNewLine init("
16 "),
17 QSpace init(" "),
18 QExclamation init("!"),
19 QDollar init("$"),
20 QApostrophe init("'"),
21 QLeftParen init("("),
22 QRightParen init(")"),
23 QStar init("*"),
24 QPlus init("+"),
25 QComma init(","),
26 QMinus init("-"),
27 QPeriod init("."),
28 QSlash init("/"),
29 QZero init("0"),
30 QOne init("1"),
31 QTwo init("2"),
32 QThree init("3"),
33 QFour init("4"),
34 QFive init("5"),
35 QSix init("6"),
36 QSeven init("7"),
37 QEight init("8"),
38 QNine init("9"),
39 QColon init(":"),
40 QSemiColon init(";"),
41 QLessThan init("<"),
42 QEqual init("="),
43 QGreaterThan init(">"),
44 QQuestion init("?"),
45 QLetterA_ init("A"),
46 QLetterB_ init("B"),
47 QLetterC_ init("C"),
48 QLetterD_ init("D"),
49 QLetterE_ init("E"),
50 QLetterF_ init("F"),
51 QLetterG_ init("G"),
52 QLetterH_ init("H"),
53 QLetterI_ init("I"),
54 QLetterJ_ init("J"),
55 QLetterK_ init("K"),
56 QLetterL_ init("L"),
57 QLetterM_ init("M"),
58 QLetterN_ init("N"),
59 QLetterO_ init("O"),
60 QLetterP_ init("P"),
61 QLetterQ_ init("Q"),
62 QLetterR_ init("R"),
63 QLetterS_ init("S"),
64 QLetterT_ init("T"),
65 QLetterU_ init("U"),
66 QLetterV_ init("V"),
67 QLetterW_ init("W"),
68 QLetterX_ init("X"),
69 QLetterY_ init("Y"),
70 QLetterZ_ init("Z"),
71 QLeftBracket init("["),
72 QBackSlash init("\"),
73 QRightBracket init("]"),
74 QUnderLine init("_"),
75 QLetterA init("a"),
76 QLetterB init("b"),
77 QLetterC init("c"),
78 QLetterD init("d"),
79 QLetterE init("e"),
80 QLetterF init("f"),
81 QLetterG init("g"),
82 QLetterH init("h"),
83 QLetterI init("i"),
84 QLetterJ init("j"),
85 QLetterK init("k"),
86 QLetterL init("l"),
87 QLetterM init("m"),
88 QLetterN init("n"),
89 QLetterO init("o"),
90 QLetterP init("p"),
91 QLetterQ init("q"),
92 QLetterR init("r"),
93 QLetterS init("s"),
94 QLetterT init("t"),
95 QLetterU init("u"),
96 QLetterV init("v"),
97 QLetterW init("w"),
98 QLetterX init("x"),
99 QLetterY init("y"),
100 QLetterZ init("z"),
101 QLeftBrace init("{"),
102 QVerticalBar init("|"),
103 QRightBrace init("}"),
104 QTilde init("~"),
105 QLessOrEqual init("<80>"),
106 QGreaterOrEqual init("<81>"),
107 QNotEqual init("<82>"),
108 QOrSign init("<83>"),
109 QAndSign init("<84>"),
110 QDivision init("<85>"),
111 QEpsilon init("<86>"),
112 QUpArrow init("<87>"),
113 QDownArrow init("<88>"),
114 QCircle init("<89>"),
115 QCeiling init("<8a>"),
116 QFloor init("<8b>"),
117 QDelta init("<8c>"),
118 QSmallCircle init("<8d>"),
119 QQuad init("<8e>"),
120 QCap init("<8f>"),
121 QDeCode init("<90>"),
122 QEnCode init("<91>"),
123 QLeftLump init("<92>"),
124 QRightLump init("<93>"),
125 QCup init("<94>"),
126 QNorSign init("<95>"),
127 QNandSign init("<96>"),
128 QCircleHyphen init("<97>"),
129 QSlashHyphen init("<98>"),
130 QDelTilde init("<99>"),
131 QCircleStar init("<9a>"),
132 QCircleBar init("<9b>"),
133 QCircleBackSlash init("<9c>"),
134 QCircleSlash init("<9d>"),
135 QGradeDown init("<9e>"),
136 QGradeUp init("<9f>"),
137 QLamp init(" "),
138 QQuadQuote init("¡"),
139 QIBeam init("¢"),
140 QBackSlashHyphen init("£"),
141 QDomino init("¤"),
142 QDiaresis init("¥"),
143 QOmega init("¦"),
144 QIota init("§"),
145 QRho init("¨"),
146 QTimes init("©"),
147 QAlpha init("ª"),
148 QUpperMinus init("«"),
149 QDel init("¬"),
150 QLeftArrow init(""),
151 QRightArrow init("®"),
152 QDiamond init("¯"),
153 QZero_ init("°"),
154 QOne_ init("±"),
155 QTwo_ init("²"),
156 QThree_ init("³"),
157 QFour_ init("´"),
158 QFive_ init("µ"),
159 QSix_ init("¶"),
160 QSeven_ init("·"),
161 QEight_ init("¸"),
162 QNine_ init("¹"),
163 QDelta_ init("º"),
164 QMarkError init("»"),
165 QExecuteSign init("¼"),
166 QFormatSign init("½"),
167 QLeftTack init("¾"),
168 QRightTack init("¿"),
169 QLineFeed init("À"),
170 QConditionalNewLine init("Á"),
171 QCentSign init("Â"),
172 QCommaHyphen init("Ã")
173 ) char(1) internal static options (constant);
174
175