summaryrefslogtreecommitdiff
path: root/windows/neo-vars/src/source/tools.ahk
blob: 0dc54fdc7d90c11f19a711928100432376d6a005 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
; -*- encoding: utf-8 -*-

; Römische Zahlen
CMS__Comp := 1
CMS__CompU000072 := 1
CMS__CompU000052 := 1
CDS__CompU000072U00004F := "P__Rom1"
;CDS__CompU000072U000031 := "P__Rom1"
;CDS__CompU000052U000031 := "P__Rom1"
CDS__CompU000052U00004F := "P__Rom2"
;CDS__CompU000072U000032 := "P__Rom2"
;CDS__CompU000052U000032 := "P__Rom2"
CDS__CompU000072U00006F := "P__Rom3"
;CDS__CompU000072U000033 := "P__Rom3"
;CDS__CompU000052U000033 := "P__Rom3"
CDS__CompU000052U00006F := "P__Rom4"
;CDS__CompU000072U000034 := "P__Rom4"
;CDS__CompU000052U000034 := "P__Rom4"

GUISYM("P__Rom1","ⅶ")
GUISYM("P__Rom2","Ⅶ")
GUISYM("P__Rom3","vii")
GUISYM("P__Rom4","VII")

CharProc__Rom1() {
  global
  ; starte klein geschriebene römische Zahlen, verwende U2160++
  PressHookProc := "Roman"
  RomanMode := 1
  RomanSum := 0
}

CharProc__Rom2() {
  global
  ; starte groß geschriebene römische Zahlen, verwende U2160++
  PressHookProc := "Roman"
  RomanMode := 2
  RomanSum := 0
}

CharProc__Rom3() {
  global
  ; starte klein geschriebene römische Zahlen, verwende Buchstaben
  PressHookProc := "Roman"
  RomanMode := 3
  RomanSum := 0
}

CharProc__Rom4() {
  global
  ; starte groß geschriebene römische Zahlen, verwende Buchstaben
  PressHookProc := "Roman"
  RomanMode := 4
  RomanSum := 0
}

GenRomanDigit(Pos, DigitIs, DigitTest, str0, str1, str2, str3, str4, str5) {
  res := ""
  if (DigitIs == DigitTest)
    res := EncodeUniComposeA(str%Pos%)
  return res
}

PressHookRoman(PhysKey, ActKey, Char) {
  global
  if (SubStr(Char,1,1) == "P")
    CharStarDown(PhysKey, ActKey, Char)
  else if ((Char == "U000030") or (Char == "S__N__0"))
    RomanSum := 10*RomanSum
  else if ((Char == "U000031") or (Char == "S__N__1"))
    RomanSum := 10*RomanSum + 1
  else if ((Char == "U000032") or (Char == "S__N__2"))
    RomanSum := 10*RomanSum + 2
  else if ((Char == "U000033") or (Char == "S__N__3"))
    RomanSum := 10*RomanSum + 3
  else if ((Char == "U000034") or (Char == "S__N__4"))
    RomanSum := 10*RomanSum + 4
  else if ((Char == "U000035") or (Char == "S__N__5"))
    RomanSum := 10*RomanSum + 5
  else if ((Char == "U000036") or (Char == "S__N__6"))
    RomanSum := 10*RomanSum + 6
  else if ((Char == "U000037") or (Char == "S__N__7"))
    RomanSum := 10*RomanSum + 7
  else if ((Char == "U000038") or (Char == "S__N__8"))
    RomanSum := 10*RomanSum + 8
  else if ((Char == "U000039") or (Char == "S__N__9"))
    RomanSum := 10*RomanSum + 9
  else if ((Char == "U00000D") or (Char == "U000020")) {
    RomanSum := mod(RomanSum,400000)
    RomanStr := ""
    RomanPos := 0
    if (RomanMode == 1)
      loop {
        RomanDigit := mod(RomanSum,10)
        RomanSum := RomanSum//10
        RomanStr := GenRomanDigit(RomanPos,RomanDigit,1,"ⅰ","ⅹ","ⅽ","ⅿ","ↂ","ↈ") . RomanStr
        RomanStr := GenRomanDigit(RomanPos,RomanDigit,2,"ⅰⅰ","ⅹⅹ","ⅽⅽ","ⅿⅿ","ↂↂ","ↈↈ") . RomanStr
        RomanStr := GenRomanDigit(RomanPos,RomanDigit,3,"ⅰⅰⅰ","ⅹⅹⅹ","ⅽⅽⅽ","ⅿⅿⅿ","ↂↂↂ","ↈↈↈ") . RomanStr
        RomanStr := GenRomanDigit(RomanPos,RomanDigit,4,"ⅰⅴ","ⅹⅼ","ⅽⅾ","ↀↁ","ↂↇ","") . RomanStr
        RomanStr := GenRomanDigit(RomanPos,RomanDigit,5,"ⅴ","ⅼ","ⅾ","ↁ","ↇ","") . RomanStr
        RomanStr := GenRomanDigit(RomanPos,RomanDigit,6,"ⅴⅰ","ⅼⅹ","ⅾⅽ","ↁↀ","ↇↂ","") . RomanStr
        RomanStr := GenRomanDigit(RomanPos,RomanDigit,7,"ⅴⅰⅰ","ⅼⅹⅹ","ⅾⅽⅽ","ↁↀↀ","ↇↂↂ","") . RomanStr
        RomanStr := GenRomanDigit(RomanPos,RomanDigit,8,"ⅴⅰⅰⅰ","ⅼⅹⅹⅹ","ⅾⅽⅽⅽ","ↁↀↀↀ","ↇↂↂↂ","") . RomanStr
        RomanStr := GenRomanDigit(RomanPos,RomanDigit,9,"ⅰⅹ","ⅹⅽ","ⅽⅿ","ↀↂ","ↂↈ","") . RomanStr
        if (RomanSum == 0)
          break
        RomanPos := RomanPos + 1
      }
    else if (RomanMode == 2)
      loop {
        RomanDigit := mod(RomanSum,10)
        RomanSum := RomanSum//10
        RomanStr := GenRomanDigit(RomanPos,RomanDigit,1,"Ⅰ","Ⅹ","Ⅽ","Ⅿ","ↂ","ↈ") . RomanStr
        RomanStr := GenRomanDigit(RomanPos,RomanDigit,2,"ⅠⅠ","ⅩⅩ","ⅭⅭ","ⅯⅯ","ↂↂ","ↈↈ") . RomanStr
        RomanStr := GenRomanDigit(RomanPos,RomanDigit,3,"ⅠⅠⅠ","ⅩⅩⅩ","ⅭⅭⅭ","ⅯⅯⅯ","ↂↂↂ","ↈↈↈ") . RomanStr
        RomanStr := GenRomanDigit(RomanPos,RomanDigit,4,"ⅠⅤ","ⅩⅬ","ⅭⅮ","Ⅿↁ","ↂↇU002182U002187","") . RomanStr
        RomanStr := GenRomanDigit(RomanPos,RomanDigit,5,"Ⅴ","Ⅼ","Ⅾ","ↁ","ↇ","") . RomanStr
        RomanStr := GenRomanDigit(RomanPos,RomanDigit,6,"ⅤⅠ","ⅬⅩ","ⅮⅭ","ↁⅯ","ↇↂ","") . RomanStr
        RomanStr := GenRomanDigit(RomanPos,RomanDigit,7,"ⅤⅠⅠ","ⅬⅩⅩ","ⅮⅭⅭ","ↁⅯⅯ","ↇↂↂ","") . RomanStr
        RomanStr := GenRomanDigit(RomanPos,RomanDigit,8,"ⅤⅠⅠⅠ","ⅬⅩⅩⅩ","ⅮⅭⅭⅭ","ↁⅯⅯⅯ","ↇↂↂↂ","") . RomanStr
        RomanStr := GenRomanDigit(RomanPos,RomanDigit,9,"ⅠⅩ","ⅩⅭ","ⅭⅯ","Ⅿↂ","ↂↈ","") . RomanStr
        if (RomanSum == 0)
          break
        RomanPos := RomanPos + 1
      }
    else if (RomanMode == 3)
      loop {
        RomanDigit := mod(RomanSum,10)
        RomanSum := RomanSum//10
        RomanStr := GenRomanDigit(RomanPos,RomanDigit,1,"i"   ,"x"   ,"c"   ,"m"  ,"","") . RomanStr
        RomanStr := GenRomanDigit(RomanPos,RomanDigit,2,"ii"  ,"xx"  ,"cc"  ,"mm" ,"","") . RomanStr
        RomanStr := GenRomanDigit(RomanPos,RomanDigit,3,"iii" ,"xxx" ,"ccc" ,"mmm","","") . RomanStr
        RomanStr := GenRomanDigit(RomanPos,RomanDigit,4,"iv"  ,"xl"  ,"cd"  ,""   ,"","") . RomanStr
        RomanStr := GenRomanDigit(RomanPos,RomanDigit,5,"v"   ,"l"   ,"d"   ,""   ,"","") . RomanStr
        RomanStr := GenRomanDigit(RomanPos,RomanDigit,6,"vi"  ,"lx"  ,"dc"  ,""   ,"","") . RomanStr
        RomanStr := GenRomanDigit(RomanPos,RomanDigit,7,"vii" ,"lxx" ,"dcc" ,""   ,"","") . RomanStr
        RomanStr := GenRomanDigit(RomanPos,RomanDigit,8,"viii","lxxx","dccc",""   ,"","") . RomanStr
        RomanStr := GenRomanDigit(RomanPos,RomanDigit,9,"ix"  ,"xc"  ,"cm"  ,""   ,"","") . RomanStr
        if (RomanSum == 0)
          break
        RomanPos := RomanPos + 1
      }
    else if (RomanMode == 4)
      loop {
        RomanDigit := mod(RomanSum,10)
        RomanSum := RomanSum//10
        RomanStr := GenRomanDigit(RomanPos,RomanDigit,1,"I"   ,"X"   ,"C"   ,"M"  ,"","") . RomanStr
        RomanStr := GenRomanDigit(RomanPos,RomanDigit,2,"II"  ,"XX"  ,"CC"  ,"MM" ,"","") . RomanStr
        RomanStr := GenRomanDigit(RomanPos,RomanDigit,3,"III" ,"XXX" ,"CCC" ,"MMM","","") . RomanStr
        RomanStr := GenRomanDigit(RomanPos,RomanDigit,4,"IV"  ,"XL"  ,"CD"  ,""   ,"","") . RomanStr
        RomanStr := GenRomanDigit(RomanPos,RomanDigit,5,"V"   ,"L"   ,"D"   ,""   ,"","") . RomanStr
        RomanStr := GenRomanDigit(RomanPos,RomanDigit,6,"VI"  ,"LX"  ,"DC"  ,""   ,"","") . RomanStr
        RomanStr := GenRomanDigit(RomanPos,RomanDigit,7,"VII" ,"LXX" ,"DCC" ,""   ,"","") . RomanStr
        RomanStr := GenRomanDigit(RomanPos,RomanDigit,8,"VIII","LXXX","DCCC",""   ,"","") . RomanStr
        RomanStr := GenRomanDigit(RomanPos,RomanDigit,9,"IX"  ,"XC"  ,"CM"  ,""   ,"","") . RomanStr
        if (RomanSum == 0)
          break
        RomanPos := RomanPos + 1
      }
    loop {
      if (RomanStr == "") 
        break ; erledigt
      CharOut(SubStr(RomanStr,1,7))
      RomanStr := SubStr(RomanStr,8)
    }
    PressHookProc := ""
  } else
    PressHookProc := ""
}

CMS__CompU000075 := 1
CMS__CompU000055 := 1
CDS__CompU000075U000075 := "P___Uni"
CDS__CompU000075U000055 := "P___Uni"
CDS__CompU000055U000075 := "P___Uni"
CDS__CompU000055U000055 := "P___Uni"
CMS__CompU000064 := 1
CMS__CompU000044 := 1
CDS__CompU000064U000064 := "P__DUni"
CDS__CompU000064U000044 := "P__DUni"
CDS__CompU000044U000064 := "P__DUni"
CDS__CompU000044U000044 := "P__DUni"

CP5VK41SC01E := "P___Uni"
GUISYM("P___Uni","UU")
GUISYM("P__DUni","DD")

CharProc___Uni() {
  global
  ; starte Unicode-Hex-in-Zeichen-Umwandlung
  PressHookProc := "Uni"
  UniSum := ""
}

CharProc__DUni() {
  global
  ; starte Unicode-Zeichen-in-Hex-Umwandlung
  CharOutFilterProc := "DUni"
}

PressHookUni(PhysKey, ActKey, Char) {
  global
  if (SubStr(Char,1,1) == "P")
    CharStarDown(PhysKey, ActKey, Char)
  else if ((Char == "U000030") or (Char == "S__N__0"))
    UniSum := UniSum . "0"
  else if ((Char == "U000031") or (Char == "S__N__1"))
    UniSum := UniSum . "1"
  else if ((Char == "U000032") or (Char == "S__N__2"))
    UniSum := UniSum . "2"
  else if ((Char == "U000033") or (Char == "S__N__3"))
    UniSum := UniSum . "3"
  else if ((Char == "U000034") or (Char == "S__N__4"))
    UniSum := UniSum . "4"
  else if ((Char == "U000035") or (Char == "S__N__5"))
    UniSum := UniSum . "5"
  else if ((Char == "U000036") or (Char == "S__N__6"))
    UniSum := UniSum . "6"
  else if ((Char == "U000037") or (Char == "S__N__7"))
    UniSum := UniSum . "7"
  else if ((Char == "U000038") or (Char == "S__N__8"))
    UniSum := UniSum . "8"
  else if ((Char == "U000039") or (Char == "S__N__9"))
    UniSum := UniSum . "9"
  else if ((Char == "U000041") or (Char == "U000061"))
    UniSum := UniSum . "A"
  else if ((Char == "U000042") or (Char == "U000062"))
    UniSum := UniSum . "B"
  else if ((Char == "U000043") or (Char == "U000063"))
    UniSum := UniSum . "C"
  else if ((Char == "U000044") or (Char == "U000064"))
    UniSum := UniSum . "D"
  else if ((Char == "U000045") or (Char == "U000065"))
    UniSum := UniSum . "E"
  else if ((Char == "U000046") or (Char == "U000066"))
    UniSum := UniSum . "F"
  else if ((Char == "U00000D") or (Char == "U000020")) {
    UniSum := "U" . SubStr("000000" . UniSum, -7)
    PP%PhysKey% := UniSum
    PR%PhysKey% := UniSum
    CharOutDown(UniSum)
    PressHookProc := ""
  } else
    PressHookProc := ""
}

CharOutFilterDUni(char,down,up) {
  global
  if (!down or char == "S__L_M2" or char == "S__R_M2")
    return char
  CharOutFilterProc := ""
  dchar := char
  if (substr(dchar,1,3) == "U00")
    dchar := "U" . substr(dchar,4)
  TrayTip,Unicode-Zeichen,%dchar%,10,1
  return char
}

EncodeUni(str) {
SetFormat, Integer, hex
;  MsgBox % Asc(SubStr(str,1,1)) . Asc(SubStr(str,2,1))
  result := ""
  loop {
    char := asc(SubStr(str,1,1))
    str  := SubStr(str,2)
    if (char < 0x80)
      result .= "U" . SubStr("000000" . SubStr(char,3),-5)
    else if (char < 0xC0) {
      ; error
    } else if (char < 0xE0) {
       char2 := asc(Substr(str,1,1))
       str   := SubStr(str,2)
       if ((char2 < 0x80) or (char2 > 0xBF)) {
         ; error
       } else {
         result .= "U" . SubStr("000000" . SubStr((((char & 0x1F) << 6) + (char2 & 0x3F)),3),-5)
       }
    } else if (char < 0xF8) {
       char2 := asc(SubStr(str,1,1))
       char3 := asc(SubStr(str,2,1))
       str   := SubStr(str,3)
       if ((char2 < 0x80) or (char2 > 0xBF)
           or (char3 < 0x80) or (char3 > 0xBF)) {
         ; error
       } else {
         result .= "U" . SubStr("000000" . SubStr((((char & 0x0F) << 12) + ((char2 & 0x3F) << 6) + (char3 & 0x3F)),3),-5)
       }
    } else if (char < 0xFC) {
       char2 := asc(SubStr(str,1,1))
       char3 := asc(SubStr(str,2,1))
       char3 := asc(SubStr(str,3,1))
       str   := SubStr(str,4)
       if (   (char2 < 0x80) or (char2 > 0xBF)
           or (char3 < 0x80) or (char3 > 0xBF)
           or (char4 < 0x80) or (char4 > 0xBF)) {
         ; error
       } else {
         result .= "U" . SubStr("000000" . SubStr((((char & 0x07) << 18) + ((char2 & 0x3F) << 12) + ((char3 & 0x3F) << 6) + (char4 & 0x3F)),3),-5)
       }
    }
    if (str == "")
      break
  }
  SetFormat, Integer, d
  StringUpper,result,result
  return result
}


; Simple calculator

CDS__CompU000075U000063 := "P__Cal1"
CDS__CompU000055U000043 := "P__Cal2"


CharProc__Cal1() {
  global
  ; starte Calculator ohne Echo
  PressHookProc := "Calc"
  CalcEcho := 0
  CalcVar1 := ""
  CalcVar2 := ""
  CalcOp := ""
  CalcPhase := 0
  CalcHexOut := 0
}

CharProc__Cal2() {
  global
  ; starte Calculator mit Echo
  PressHookProc := "Calc"
  CalcEcho := 1
  CalcVar1 := ""
  CalcVar2 := ""
  CalcOp := ""
  CalcPhase := 0
  CalcHexOut := 0
}

PressHookCalc(PhysKey, ActKey, Char) {
  global
  if (SubStr(Char,1,1) == "P")
    CharStarDown(PhysKey, ActKey, Char)
  else if (CalcPhase == 0) {
    if      ((Char == "U000030") or (Char == "S__N__0"))
      CalcVar1 := CalcVar1 . "0"
    else if ((Char == "U000031") or (Char == "S__N__1"))
      CalcVar1 := CalcVar1 . "1"
    else if ((Char == "U000032") or (Char == "S__N__2"))
      CalcVar1 := CalcVar1 . "2"
    else if ((Char == "U000033") or (Char == "S__N__3"))
      CalcVar1 := CalcVar1 . "3"
    else if ((Char == "U000034") or (Char == "S__N__4"))
      CalcVar1 := CalcVar1 . "4"
    else if ((Char == "U000035") or (Char == "S__N__5"))
      CalcVar1 := CalcVar1 . "5"
    else if ((Char == "U000036") or (Char == "S__N__6"))
      CalcVar1 := CalcVar1 . "6"
    else if ((Char == "U000037") or (Char == "S__N__7"))
      CalcVar1 := CalcVar1 . "7"
    else if ((Char == "U000038") or (Char == "S__N__8"))
      CalcVar1 := CalcVar1 . "8"
    else if ((Char == "U000039") or (Char == "S__N__9"))
      CalcVar1 := CalcVar1 . "9"
    else if ((Char == "U000039") or (Char == "S__N__9"))
      CalcVar1 := CalcVar1 . "9"
    else if ((Char == "U000041") or (Char == "U000061"))
      CalcVar1 := CalcVar1 . "A"
    else if ((Char == "U000042") or (Char == "U000062"))
      CalcVar1 := CalcVar1 . "B"
    else if ((Char == "U000043") or (Char == "U000063"))
      CalcVar1 := CalcVar1 . "C"
    else if ((Char == "U000044") or (Char == "U000064"))
      CalcVar1 := CalcVar1 . "D"
    else if ((Char == "U000045") or (Char == "U000065"))
      CalcVar1 := CalcVar1 . "E"
    else if ((Char == "U000046") or (Char == "U000066"))
      CalcVar1 := CalcVar1 . "F"
    else if ((Char == "U00002E") or (Char == "U00002C") or (Char=="S__NDot"))
      CalcVar1 := CalcVar1 . "."
    else if ((Char == "U000078") or (Char == "U000058")) {
      CalcVar1 := CalcVar1 . "x"
      CalcHexOut := 1
    } else if ((Char == "U00002B") or (Char == "S__NAdd")) {
      CalcOp := "+"
      CalcPhase := 1
    } else if ((Char == "U00002D") or (Char == "S__NSub")) {
      CalcOp := "-"
      CalcPhase := 1
    } else if ((Char == "U00002A") or (Char == "S__NMul")) {
      CalcOp := "*"
      CalcPhase := 1
    } else if ((Char == "U00002F") or (Char == "S__NDiv")) {
      CalcOp := "/"
      CalcPhase := 1
    } else if (Char == "U000026") {
      CalcOp := "&"
      CalcPhase := 1
    } else if (Char == "U00007C") {
      CalcOp := "|"
      CalcPhase := 1
    } else
      PressHookProc := ""
    if (CalcEcho) {
      PP%PhysKey% := Char
      PR%PhysKey% := Char
      CharOutDown(Char)
    }
  } else if (CalcPhase == 1) {
    if      ((Char == "U000030") or (Char == "S__N__0"))
      CalcVar2 := CalcVar2 . "0"
    else if ((Char == "U000031") or (Char == "S__N__1"))
      CalcVar2 := CalcVar2 . "1"
    else if ((Char == "U000032") or (Char == "S__N__2"))
      CalcVar2 := CalcVar2 . "2"
    else if ((Char == "U000033") or (Char == "S__N__3"))
      CalcVar2 := CalcVar2 . "3"
    else if ((Char == "U000034") or (Char == "S__N__4"))
      CalcVar2 := CalcVar2 . "4"
    else if ((Char == "U000035") or (Char == "S__N__5"))
      CalcVar2 := CalcVar2 . "5"
    else if ((Char == "U000036") or (Char == "S__N__6"))
      CalcVar2 := CalcVar2 . "6"
    else if ((Char == "U000037") or (Char == "S__N__7"))
      CalcVar2 := CalcVar2 . "7"
    else if ((Char == "U000038") or (Char == "S__N__8"))
      CalcVar2 := CalcVar2 . "8"
    else if ((Char == "U000039") or (Char == "S__N__9"))
      CalcVar2 := CalcVar2 . "9"
    else if ((Char == "U000041") or (Char == "U000061"))
      CalcVar2 := CalcVar2 . "A"
    else if ((Char == "U000042") or (Char == "U000062"))
      CalcVar2 := CalcVar2 . "B"
    else if ((Char == "U000043") or (Char == "U000063"))
      CalcVar2 := CalcVar2 . "C"
    else if ((Char == "U000044") or (Char == "U000064"))
      CalcVar2 := CalcVar2 . "D"
    else if ((Char == "U000045") or (Char == "U000065"))
      CalcVar2 := CalcVar2 . "E"
    else if ((Char == "U000046") or (Char == "U000066"))
      CalcVar2 := CalcVar2 . "F"
    else if ((Char == "U00002E") or (Char == "U00002C") or (Char=="S__NDot"))
      CalcVar2 := CalcVar2 . "."
    else if ((Char == "U000078") or (Char == "U000058")) {
      CalcVar2 := CalcVar2 . "x"
      CalcHexOut := 1
    } else if ((Char == "U00000D") or (Char == "S__NEnt") or (Char=="U000020") or (Char=="U00003D")) {
      if      (CalcOp == "+")
        CalcResult := CalcVar1 + CalcVar2
      else if (CalcOp == "-")
        CalcResult := CalcVar1 - CalcVar2
      else if (CalcOp == "*")
        CalcResult := CalcVar1 * CalcVar2
      else if (CalcOp == "/")
        CalcResult := CalcVar1 / CalcVar2
      else if (CalcOp == "&")
        CalcResult := CalcVar1 & CalcVar2
      else if (CalcOp == "|")
        CalcResult := CalcVar1 | CalcVar2
      else
        CalcResult := "Invalid"
      if (CalcHexOut and (CalcResult != "")) {
        SetFormat,Integer,h
        CalcResult := CalcResult + 0
        SetFormat,Integer,d
      }
      tosend := EncodeUni(CalcResult)
      if (CalcEcho) {
        Char := "U00003D"
        PP%PhysKey% := Char
        PR%PhysKey% := Char
        CharOutDown(Char)
      }
      loop {
        if (SubStr(tosend,1,1)=="P") {
          SubProc := SubStr(tosend,2,6)
          CharProc%SubProc%()
        } else {
          CharOut(SubStr(tosend,1,7))
        }
        tosend := SubStr(tosend,8)
        if (tosend == "") 
          break                ; erledigt
      }
      PressHookProc := ""
      return ; vermeide, bei CharEcho das aktuelle Zeichen nach dem Ergebnis noch einmal auszugeben
    } else
      PressHookProc := ""
    if (CalcEcho) {
      PP%PhysKey% := Char
      PR%PhysKey% := Char
      CharOutDown(Char)
    }
  } else {
    PressHookProc := ""
    if (CalcEcho) {
      PP%PhysKey% := Char
      PR%PhysKey% := Char
      CharOutDown(Char)
    }
  }
}

CDS__CompU000055U000057 := "P___WMN"
CDS__CompU000075U000077 := "P___WMN"

CharProc___WMN() {
  global
  ok := DllCall("OpenClipboard")
  if (!ok) {
    TrayTip,Wie mit NEO,Fehler in OpenClipboard,10,1
    return
  }
  uclph:=DllCall("GetClipboardData","uint",CF_UNICODETEXT:=13)
  if (uclph == 0) {
    DllCall("CloseClipboard")
    TrayTip,Wie mit NEO,Fehler in GetClipboardData,10,1
    return
  }
  uclp := DllCall("GlobalLock","uint",uclph)
  if (uclp == 0) {
    DllCall("CloseClipboard")
    TrayTip,Wie mit NEO,Fehler in GlobalLock,10,1
    return
  }
  a := *(uclp+0)
  b := *(uclp+1)

  a += 256*b

  if ((a >= 0xD800) and (a <= 0xDBFF)) {
    c := *(uclp+2)
    d := *(uclp+3)

    c += 256*d
    if ((c >= 0xDC00) and (c <= 0xDFFF)) {
      a := (a & 0x3FF) * 1024 + (c & 0x3FF) + 65536
    }
  }

  DllCall("GlobalUnlock","uint",uclph)
  DllCall("CloseClipboard")

SetFormat,Integer,h
  a += 0
SetFormat,Integer,d
  if (a < 0x10000) {
    ap := "U" . substr("000000" . substr(a,3),-3)
    a  := "U" . substr("000000" . substr(a,3),-5)
  } else {
    ap := "U" . substr("000000" . substr(a,3),-5)
    a  := ap
  }

  Gui,2:Destroy
  Gui,2:Font,,DejaVu Sans
  Gui,2:Margin,10,0
  Gui,2:Add,Text,,% "`r`nDas Zeichen " . ap . " kann wie folgt eingegeben werden:"
  loop,parse,CRC%a%,%A_Space%
  {
    this_wmn := ""
    this_wmnk := ""
    nthis := 0
    this_wtt := A_LoopField
    if (this_wtt == "")
      continue ; probably at first or last entry
    loop {
      if (this_wtt == "")
        break
      this_char7 := substr(this_wtt,1,7)
      this_char  := this_char7
      this_wtt := substr(this_wtt,8)
      if (CB%this_char% != "")
        this_char := CB%this_char%
      else if (CS%this_char% != "")
        this_char := CS%this_char%
      ; this_char will contain Uxxxx if no shortcut is present. Fix this here.
      this_wmn .= " <" . this_char . ">"
      if (CRK%this_char7% == "") {
        nthis := 1
        this_wmnk .= " <" . this_char7 . ">"
      } else
        this_wmnk .= " " . KeyLong(CRK%this_char7%)
    }
    if (this_wmn != "")
      this_wmn := SubStr(this_wmn,2)
    if (this_wmnk != "")
      this_wmnk := SubStr(this_wmnk,2)
    Gui,2:Font,,Dejavu Sans Bold
    if (nthis == 1)
      Gui,2:Add,Text,,% "Wegen fehlender Tastenbelegung nicht als Compose:"
    else
      Gui,2:Add,Text,,% "Als Compose:"
    Gui,2:Font,,Dejavu Sans
    Gui,2:Add,Text,,% this_wmn . "`r`noder`r`n" . this_wmnk
  }

  wmnk := KeyLong(CRK%a%)
  Gui,2:Font,,Dejavu Sans Bold
  if (wmnk != "") {
    Gui,2:Add,Text,,% "Als Tastendruck:"
    Gui,2:Font,,Dejavu Sans
    Gui,2:Add,Text,,% wmnk
  } else
    Gui,2:Add,Text,,% "Als Tastendruck nicht verfuegbar"

  Gui,2:Add, Button, Default xp+100 yp+40, OK
  Gui,2:Show
  return

  2ButtonOK:
  2GuiEscape:
    Gui,2:Destroy
    return
}

KeyLong(key) {
  global
  num := 0
  twmnk := ""
  loop,parse,key,%A_Space%
  {
    tis_wmn := ""
    tis_wtt := A_LoopField
    if (tis_wtt == "")
      continue ; probably at first or last entry
    tis_layer := substr(tis_wtt,3,1)
    base_key_pos := "CP1" . substr(tis_wtt,4)

    base_key := %base_key_pos%
    if (CB%base_key_pos% != "")
      base_key := CB%base_key_pos%
    else if (CB%base_key% != "")
      base_key := CB%base_key%
    else if (CS%base_key% != "")
      base_key := CS%base_key%

    twmnk .= "/<" . CBS____M%tis_layer% . base_key . ">"
    num := num + 1
  }
  if (num == 0)
    return ""
  else if (num == 1)
    return SubStr(twmnk,2)
  else
    return "(" . SubStr(twmnk,2) . ")"
}