-
Notifications
You must be signed in to change notification settings - Fork 2
/
gui.tin
1797 lines (1600 loc) · 90.3 KB
/
gui.tin
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
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defnet gui ()
(deflocal dlg x y w h w-corr h-corr)
(set x (cfg-get "win-main-position"))
(if (= x undef)
then (set x (cmacro IUP_CENTER))
(set y (cmacro IUP_CENTER))
else (set y (max 0 (cdr x)))
(set x (max 0 (car x))) )
(set w (cfg-get-num "win-main-width"))
(set h (cfg-get-num "win-main-height"))
(if (not (integerp w))
then (set w (fc-width)) )
(if (not (integerp h))
then (set h (fc-height)) )
;(print w "x" h "+" x "+" y nl)
(set dlg (iup-dialog (gui-setup-main)))
(set <_kv "dlg"> dlg)
(iup-set-attribute-handle undef "PARENTDIALOG" dlg)
(iup-set-str-attribute dlg "TITLE" (+ "FFmatch (" (date->version (compile-time)) ") " (csysbits) "-bit"))
(iup-set-attribute-handle dlg "MENU" (gui-setup-menu))
(iup-set-callback dlg "CLOSE_CB" (netptr gui-close-cb))
;(iup-set-callback dlg "DROPFILES_CB" (netptr gui-dropfiles-cb))
(iup-set-callback dlg "K_ANY" (netptr gui-kb-cb))
(iup-set-callback dlg "RESIZE_CB" (netptr gui-resize-cb))
(iup-set-bool dlg "FULLSCREEN" false)
(gui-update)
(iup-set-str-attribute dlg "RASTERSIZE" (sprint w "x" h))
(iup-show-xy dlg x y)
(set w-corr (- w (iup-get-int dlg "RASTERSIZE")))
(set h-corr (- h (iup-get-int2 dlg "RASTERSIZE")))
(iup-set-str-attribute dlg "USERSIZE")
(gui-update-image)
(iup-set-callback <_kv "text1"> "BUTTON_CB" (netptr gui-text1-button-cb))
(iup-main-loop)
(set x (iup-get-int dlg "SCREENPOSITION"))
(set y (iup-get-int2 dlg "SCREENPOSITION"))
(set w (+ (iup-get-int dlg "RASTERSIZE") w-corr))
(set h (+ (iup-get-int2 dlg "RASTERSIZE") h-corr))
;(print w "x" h "+" x "+" y nl)
(sqlite3-begin _db)
(alt (seq (cfg-set "win-main-width" w)
(cfg-set "win-main-height" h)
(cfg-set "win-main-position" (cons x y))
(sqlite3-end _db) )
(sqlite3-rollback _db) )
(close dlg) )
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defun gui-locked ()
(or (<> <_kv "th"> undef)
(<> <_kv "gui-update-image-concurrent-lock"> undef) ))
(defun gui-not-locked ()
(not (gui-locked)) )
(defnet gui-locked ()
(truep (gui-locked)) )
(defnet gui-not-locked ()
(truep (gui-not-locked)) )
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defnet gui-close-cb (self)
(if (gui-not-locked)
then (iup-exit-loop) ))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defnet gui-kb-cb (dlg c)
(if (gui-locked)
then (if (and (<> <_kv "th"> undef) (= c (cmacro K_ESC)))
then (gui-abort-low dlg) )
(fail) )
(case c of
(cmacro K_cQ) (iup-exit-loop)
;(cmacro K_cZ) (test-temp)
(cmacro K_ESC) (gui-update-image)
(cmacro K_cP) (cfg-cb dlg)
(cmacro K_cPlus) (gui-zoom-in-cb dlg)
(cmacro K_cMinus) (gui-zoom-out-cb dlg)
(cmacro K_c0) (gui-zoom-zero-cb dlg)
(cmacro K_P) (gui-restore-default-cb dlg)
(cmacro K_F1) (open1-cb dlg)
(cmacro K_F2) (open2-cb dlg)
(cmacro K_sF1) (open-path1-cb dlg)
(cmacro K_sF2) (open-path2-cb dlg)
(cmacro K_cO) (project-open-cb dlg)
(cmacro K_cS) (project-save-cb dlg)
(cmacro K_F5) (gui-start-cb dlg)
(cmacro K_F8) (audio-cb dlg)
(cmacro K_c1) (gui-text1-move1 dlg)
(cmacro K_c2) (gui-text1-move2 dlg)
(cmacro K_sLEFT) (move-sync-left-cb dlg)
(cmacro K_sRIGHT) (move-sync-right-cb dlg)
(cmacro K_cLEFT) (move-sync-left-fast-cb dlg)
(cmacro K_cRIGHT) (move-sync-right-fast-cb dlg)
(cmacro K_csLEFT) (move-sync-left-first-cb dlg)
(cmacro K_csRIGHT) (move-sync-right-last-cb dlg)
(cmacro K_cCR) (force-cb dlg)
(cmacro K_TAB) (seq (set dlg <_kv "spin1">)
(iup-set-focus dlg)
(move-spin-kb1-cb dlg c) )
;(cmacro K_PGUP) (skip)
;(cmacro K_PGDN) (skip)
;(cmacro K_HOME) (skip)
;(cmacro K_END) (skip)
default (fail) ))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defun gui-setup-menu () net gui-setup-menu)
(defnet gui-setup-menu (@menu)
(deflocal a q scaling-mode)
(set a (assoc))
(set <_kv "menu"> a)
(set q <_kv "da-chiudere">)
(set scaling-mode (cfg-get-or-default-num "scaling-mode" <_kv "default">))
(set @menu (iup-list->menu
(list (list "&File"
(cons (list (+ $"Select movie 1" "\t\tF1")
(cons (pix-load-static "22x22/document-open-5-one.png") q) )
(netptr open1-cb) )
(cons (list (+ $"Select movie 2" "\t\tF2")
(cons (pix-load-static "22x22/document-open-5-two.png") q) )
(netptr open2-cb) )
(cons (+ $"Select path 1" "\t\t\tShift+F1")
(netptr open-path1-cb) )
(cons (+ $"Select path 2" "\t\t\tShift+F2")
(netptr open-path2-cb) )
(iup-separator)
(cons (list (+ $"Open project" "\t\t\t\tCtrl+O")
(cons (pix-load-static "22x22/document-open.png") q) )
(netptr project-open-cb) )
(cons (list (+ $"Save/rename project" "\tCtrl+S")
(cons a "save-project")
(cons (pix-load-static "22x22/document-save-as-5.png") q) )
(netptr project-save-cb) )
(cons (list $"Delete project" (cons a "delete-project"))
(netptr project-delete-cb) )
(cons (list $"Export project data" (cons a "export-project"))
(netptr project-export-cb) )
(iup-separator)
(cons (list $"Swap order" (cons a "swap-order"))
(netptr gui-swap-order-cb) )
(iup-separator)
(cons (list $"Save top text as..." (cons a "save-text1"))
(netptr gui-save-text1-cb) )
(cons (list $"Save bottom text as..." (cons a "save-text2"))
(netptr gui-save-text2-cb) )
(cons (list $"Save frame 1 as..." (cons a "save-frame1"))
(netptr gui-save-frame1-cb) )
(cons (list $"Save frame 2 as..." (cons a "save-frame2"))
(netptr gui-save-frame2-cb) )
(iup-separator)
(cons $"Import data from cfg"
(netptr cfg-import-cb) )
(iup-separator)
(cons (list (+ "&" $"Preferences" "\t\t\t\tCtrl+P")
(cons (pix-load-static "22x22/configure-2.png") q) )
(netptr cfg-cb) )
(cons (+ $"Restore default parameters" "\tShift+P")
(netptr gui-restore-default-cb) )
(iup-separator)
(cons (list (+ "&" $"Exit" "\t\t\t\t\t\tCtrl+Q")
(cons (pix-load-static "16x16/application-exit.png") q) )
(netptr iup-cancel-cb) ))
(list (+ "&" $"View")
(cons (list $"Same area" (cons a "scaling-mode0-item") (= scaling-mode 0))
(netptr gui-select-scaling-mode0-cb) )
(cons (list $"Same width" (cons a "scaling-mode1-item") (= scaling-mode 1))
(netptr gui-select-scaling-mode1-cb) )
(cons (list $"Proportional" (cons a "scaling-mode2-item") (= scaling-mode 2))
(netptr gui-select-scaling-mode2-cb) )
(iup-separator)
(cons (list (+ "Zoom in" "\t\t\t\t\tCtrl++")
(cons (pix-load-static "16x16/zoom-in.png") q) )
(netptr gui-zoom-in-cb) )
(cons (list (+ "Zoom out" "\t\t\t\tCtrl+-")
(cons (pix-load-static "16x16/zoom-out.png") q) )
(netptr gui-zoom-out-cb) )
(cons (list (+ "Best fit" "\t\t\t\t\tCtrl+0")
(cons (pix-load-static "16x16/zoom-fit-best.png") q) )
(netptr gui-zoom-zero-cb) )
(iup-separator)
(cons (list $"Draw keypoints" (cons a "draw-keypoints"))
(netptr gui-draw-keypoints-cb) ))
(list "&Info"
(cons (list $"Print selected movie names" (cons a "print-selected"))
(netptr gui-print-selected-cb) )
(cons (list $"Print buffers content" (cons a "print-buffers-content"))
(netptr gui-print-buffers-content-cb) )
(iup-separator)
(cons $"Print the valid paths"
(netptr gui-print-valid-paths-cb) )
(cons $"Print obsolete paths"
(netptr gui-print-obsolete-paths-cb) )
(cons $"Print obsolete projects"
(netptr gui-print-obsolete-projects-cb) )
(iup-separator)
(cons (list $"Print timestamps movie 1" (cons a "print-timestamps1"))
(netptr gui-print-timestamps1-cb) )
(cons (list $"Print timestamps movie 2" (cons a "print-timestamps2"))
(netptr gui-print-timestamps2-cb) ))
(list (+ "&" $"Clear")
(cons (list $"Clear \"scd\" data 1" (cons a "clear-scd1"))
(netptr clear-scd1-cb) )
(cons (list $"Clear \"scd\" data 2" (cons a "clear-scd2"))
(netptr clear-scd2-cb) )
(cons (list $"Clear \"sift check\" data" (cons a "clear-sck"))
(netptr clear-sck-cb) )
(cons (list $"Clear failed checks" (cons a "clear-failed-sck"))
(netptr clear-failed-sck-cb) )
(cons (list $"Clear \"mapping\" data" (cons a "clear-map"))
(netptr clear-map-cb) )
(cons (list $"Optimize \"mapping\" data" (cons a "optimize-map"))
(netptr clear-optimize-map-cb) )
(iup-separator)
(cons (list $"Undo the last movement" (cons a "undo-last-movement"))
(netptr force-undo-last-movement-cb) )
(iup-separator)
(cons $"Clear obsolete paths"
(netptr clear-paths-cb) )
(cons $"Clear obsolete projects"
(netptr clear-projects-cb) )
(cons $"Clear obsolete data"
(netptr clear-data-cb) )
(iup-separator)
;(cons $"Clear data -- tmp"
; (netptr clear-data-tmp-cb) )
;(iup-separator)
(cons "Db vacuum"
(netptr clear-db-vacuum-cb) )
(iup-separator)
(cons (list $"Clear top text"
(cons a "clear-text1")
(cons (pix-load-static "16x16/edit-clear.png") q) )
(netptr clear-text1-cb) )
(cons (list $"Clear bottom text"
(cons a "clear-text2")
(cons (pix-load-static "16x16/edit-clear.png") q) )
(netptr clear-text2-cb) ))
(list "&Misc"
(cons (list $"Report failed checks" (cons a "report-failed"))
(netptr gui-report-failed-cb) )
(cons (list $"Final closure" (cons a "final-closure"))
(netptr force-final-closure-cb) ))
(list (+ "&" $"Help")
(cons $"Keyboard shortcuts"
(netptr info-keyboard-shortcuts-cb) )
(iup-separator)
(cons (list $"About FFmatch"
(cons (pix-load-static "16x16/info.png") q) )
(netptr info-cb) )))))
(set <a "widget"> @menu) )
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defun gui-setup-main () net gui-setup-main)
(defnet gui-setup-main (@wid)
(set @wid (iup-hbox (gui-setup-image) (gui-setup-body)))
(iup-set-str-attribute @wid "MARGIN" "2x2") )
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defun gui-setup-toolbar () net gui-setup-toolbar)
(defnet gui-setup-toolbar (@wid)
(deflocal q btn-info btn1 btn2 btn3 btn4 btn5 btn6 btn7 btn8 hb1 hb2 hb3 hb4 hb5)
;(set q (pix-load-static "22x22/document-open-5.png"))
;(set p (pix-text 2))
;(pix-draw-pix-alpha q 9 10 p)
;(close p)
;(pix-save-png q "z2.png")
(set q <_kv "da-chiudere">)
(set btn-info (assoc))
(set <_kv "toolbar"> btn-info)
(set btn1 (iup-button-icon undef (netptr open1-cb) (pix-load-static "22x22/document-open-5-one.png") q))
(set btn2 (iup-button-icon undef (netptr open2-cb) (pix-load-static "22x22/document-open-5-two.png") q))
(set btn3 (iup-button-icon undef (netptr project-open-cb) (pix-load-static "22x22/document-open.png") q))
(set btn4 (iup-button-icon undef (netptr project-save-cb) (pix-load-static "22x22/document-save-as-5.png") q))
(set btn5 (iup-button-icon undef (netptr gui-start-cb) (pix-load-static "22x22/system-run-3.png") q))
(set btn6 (iup-button-icon undef (netptr gui-abort-cb) (pix-load-static "22x22/process-stop-2.png") q))
(set btn7 (iup-button-icon undef (netptr audio-cb) (pix-load-static "22x22/speaker3.png") q))
(set btn8 (iup-button-icon undef (netptr cfg-cb) (pix-load-static "22x22/configure-2.png") q))
(iup-set-str-attribute btn1 "TIP" $"select movie 1")
(iup-set-str-attribute btn2 "TIP" $"select movie 2")
(iup-set-str-attribute btn3 "TIP" $"open project")
(iup-set-str-attribute btn4 "TIP" $"save/rename project")
(iup-set-str-attribute btn5 "TIP" $"start")
(iup-set-str-attribute btn6 "TIP" $"abort")
(iup-set-str-attribute btn7 "TIP" $"audio tracks")
(iup-set-str-attribute btn8 "TIP" $"preferences")
(set <btn-info "open1"> btn1)
(set <btn-info "open2"> btn2)
(set <btn-info "open-project"> btn3)
(set <btn-info "save-project"> btn4)
(set <btn-info "start"> btn5)
(set <btn-info "abort"> btn6)
(set <btn-info "audio"> btn7)
(set <btn-info "prefs"> btn8)
(set hb1 (iup-hbox btn1 btn2))
(iup-set-int hb1 "GAP" 0)
(set hb2 (iup-hbox btn3 btn4))
(iup-set-int hb2 "GAP" 0)
(set hb3 (iup-hbox btn5 btn6))
(iup-set-int hb3 "GAP" 0)
(set hb4 (iup-hbox btn7))
(iup-set-int hb4 "GAP" 0)
(set hb5 (iup-hbox btn8))
(iup-set-int hb5 "GAP" 0)
(set @wid (iup-hbox hb1 (iup-vertical-separator)
hb2 (iup-vertical-separator)
hb3 (iup-vertical-separator)
hb4 (iup-vertical-separator)
hb5 ))
(iup-set-int @wid "GAP" 2) )
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defun gui-setup-body () net gui-setup-body)
(defnet gui-setup-body (@wid)
(set @wid (iup-vbox (gui-setup-toolbar) (gui-setup-text)))
(iup-set-int @wid "GAP" 2) )
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defun gui-setup-image () net gui-setup-image)
(defnet gui-setup-image (@wid)
(deflocal lbl img pix)
(set lbl (iup-label))
(iup-set-str-attribute lbl "ALIGNMENT" "ACENTER:ACENTER")
(iup-set-str-attribute lbl "EXPAND" "YES")
(set pix (pix-create 1 1))
(pix-clear pix)
(set <_kv "pix"> pix)
(set img (iup-image-rgba pix))
(set <_kv "img"> img)
(iup-set-attribute-handle lbl "IMAGE" img)
(set @wid (iup-scroll-box lbl))
(set <_kv "sbx"> @wid) )
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defun gui-setup-text () net gui-setup-text)
(defnet gui-setup-text (@wid)
(set @wid (iup-vbox (gui-setup-text-low 1) (gui-setup-text-toolbar) (gui-setup-text-low 2)))
(set <_kv "vbox-parent-of-text1"> @wid)
(iup-set-str-attribute @wid "EXPAND" "VERTICAL")
(iup-set-int @wid "GAP" 8) )
(defun gui-setup-text-low (which) net gui-setup-text-low)
(defnet gui-setup-text-low (which @wid)
(set @wid (iup-text))
(set <_kv (+ "text" which)> @wid)
(iup-set-bool @wid "MULTILINE" true)
(iup-set-bool @wid "READONLY" true)
;(iup-set-bool @wid "CANFOCUS" false)
(iup-set-bool @wid "EXPAND" true)
(iup-set-bool @wid "WORDWRAP" false)
(iup-set-bool @wid "FORMATTING" true)
(iup-set-bool @wid "APPENDNEWLINE" false)
(iup-set-str-attribute @wid "PADDING" "2x0")
;(iup-set-str-attribute @wid "FONT" font)
(iup-set-str-attribute @wid "VALUE" "")
(iup-set-int @wid "VISIBLELINES" 1)
(iup-set-int @wid "VISIBLECOLUMNS" 1) )
(defun gui-setup-text-toolbar () net gui-setup-text-toolbar)
(defnet gui-setup-text-toolbar (@wid)
(set @wid (iup-vbox (gui-setup-text-slide 1) (gui-setup-text-toolbar1) (gui-setup-text-slide 2) (gui-setup-text-toolbar2)))
(set <_kv "supervision-toolbar"> @wid)
(iup-set-bool @wid "EXPAND" false)
(iup-set-int @wid "GAP" 0) )
(defun gui-setup-text-toolbar1 () net gui-setup-text-toolbar1)
(defnet gui-setup-text-toolbar1 (@wid)
(deflocal q btn1 btn2 btn3 btn4 btn5 btn6 label1 label2 spin1 spin2 hb)
(set q <_kv "da-chiudere">)
(set btn1 (iup-button-icon undef (netptr move-sync-left-first-cb) (pix-load-static "16x16/go-first-view.png") q))
(set btn2 (iup-button-icon undef (netptr move-sync-left-fast-cb) (pix-load-static "16x16/go-previous-view.png") q))
(set btn3 (iup-button-icon undef (netptr move-sync-left-cb) (pix-load-static "16x16/go-previous-7.png") q))
(set btn4 (iup-button-icon undef (netptr move-sync-right-cb) (pix-load-static "16x16/go-next-7.png") q))
(set btn5 (iup-button-icon undef (netptr move-sync-right-fast-cb) (pix-load-static "16x16/go-next-view.png") q))
(set btn6 (iup-button-icon undef (netptr move-sync-right-last-cb) (pix-load-static "16x16/go-last-view.png") q))
(set label1 (iup-label "00:00:00"))
(set <_kv "time-label1"> label1)
(set label2 (iup-label "00:00:00"))
(set <_kv "time-label2"> label2)
(set spin1 (iup-text-spin 1 1 1))
(set spin2 (iup-text-spin 1 1 1))
(iup-set-bool spin1 "SPINAUTO" false)
(iup-set-bool spin2 "SPINAUTO" false)
(iup-set-str-attribute spin1 "EXPAND" "HORIZONTAL")
(iup-set-str-attribute spin2 "EXPAND" "HORIZONTAL")
(iup-set-str-attribute spin1 "MASK" "/d+")
(iup-set-str-attribute spin2 "MASK" "/d+")
(iup-set-callback spin1 "SPIN_CB" (netptr move-spin1-cb))
(iup-set-callback spin2 "SPIN_CB" (netptr move-spin2-cb))
(iup-set-callback spin1 "K_ANY" (netptr move-spin-kb1-cb))
(iup-set-callback spin2 "K_ANY" (netptr move-spin-kb2-cb))
(set <_kv "spin1"> spin1)
(set <_kv "spin2"> spin2)
(set <_kv "a-combo-goto"> (array default [ 1 1 0 ] 1))
(set hb (iup-hbox btn1 btn2 btn3 btn4 btn5 btn6))
(iup-set-int hb "GAP" 0)
(set @wid (iup-hbox label1 spin1 hb spin2 label2))
(iup-set-str-attribute @wid "ALIGNMENT" "ACENTER")
(iup-set-int @wid "GAP" 4)
(iup-set-bool @wid "EXPAND" true) )
(defun gui-setup-text-toolbar2 () net gui-setup-text-toolbar2)
(defnet gui-setup-text-toolbar2 (@wid)
(deflocal q btn1 btn2 btn3 btn4 btn5 btn6 btn7 spin1 spin2 hb1 hb2)
(set q <_kv "da-chiudere">)
(set btn1 (iup-button-icon undef (netptr move-scd-left1-cb) (pix-load-static "16x16/arrow-left-3.png") q))
(set btn2 (iup-button-icon undef (netptr move-scd-right1-cb) (pix-load-static "16x16/arrow-right-3.png") q))
(set btn3 (iup-button-icon undef (netptr gui-sync1-cb) (pix-load-static "16x16/palm-pilot-sync.png") q))
(set btn4 (iup-button-icon undef (netptr move-scd-left2-cb) (pix-load-static "16x16/arrow-left-3.png") q))
(set btn5 (iup-button-icon undef (netptr move-scd-right2-cb) (pix-load-static "16x16/arrow-right-3.png") q))
(set btn6 (iup-button-icon undef (netptr gui-sync2-cb) (pix-load-static "16x16/palm-pilot-sync.png") q))
(set btn7 (iup-button-icon undef (netptr force-cb) (pix-load-static "16x16/archive-insert-2.png") q))
(set spin1 (iup-text-spin-ratio 0 1 0.3 0.01))
(set spin2 (iup-text-spin-ratio 0 1 0.3 0.01))
(set <_kv "scd-spin1"> spin1)
(set <_kv "scd-spin2"> spin2)
(set hb1 (iup-hbox btn1 btn2 btn3))
(iup-set-int hb1 "GAP" 0)
(set hb2 (iup-hbox btn4 btn5 btn6))
(iup-set-int hb2 "GAP" 0)
(set @wid (iup-hbox spin1 hb1 (iup-label (tile 12)) spin2 hb2 (iup-label (tile 12)) btn7))
(iup-set-str-attribute @wid "ALIGNMENT" "ACENTER")
(iup-set-int @wid "GAP" 4)
(iup-set-bool @wid "EXPAND" true) )
(defun gui-setup-text-slide (which) net gui-setup-text-slide)
(defnet gui-setup-text-slide (which @wid)
(set @wid (iup-val))
(set <_kv (+ "slide" which)> @wid)
(iup-set-str-attribute @wid "EXPAND" "HORIZONTAL")
(iup-set-callback @wid "VALUECHANGED_CB"
(if (= which 1)
(netptr move-slide-changed1-cb)
(netptr move-slide-changed2-cb) )))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defun gui-spin-value (which) net gui-spin-value)
(defnet gui-spin-value (which @n)
(deflocal spin s t)
(set spin <_kv (+ "spin" which)>)
(set s (iup-get-str-attribute spin "VALUE"))
(set @n (min (- (av-approximated-number-of-frames <_kv (+ "av" which)>) 2) (max 1 (str->num s))))
(if (not (integerp @n))
then (set @n 1) )
(set t (sprint @n))
(if (<> t s)
then (gui-spin-set-value which t) ))
(defnet gui-spin-set-value (which v)
(deflocal spin)
(set spin <_kv (+ "spin" which)>)
(iup-set-str-attribute spin "VALUE" v)
(iup-set-str-attribute spin "SPINVALUE" v) )
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defnet gui-draw-image ()
(if (not (threadp <_kv "th">))
then (set <_kv "th"> true) )
(opt (gui-draw-image-low))
(if (not (threadp <_kv "th">))
then (assoc-clr _kv "th") ))
(defnet gui-draw-image-low ()
(deflocal sbx lbl img)
(set sbx <_kv "sbx">)
(set lbl <sbx 0>)
(set img (iup-image-rgba <_kv "pix">))
(iup-set-attribute-handle lbl "IMAGE" img)
(close <_kv "img">)
(set <_kv "img"> img)
(iup-refresh lbl)
(iup-refresh sbx)
(iup-redraw lbl)
(iup-flush) )
(defnet gui-update-image ()
(gui-update-image-low 0) )
(defnet gui-update-image-low (draw-keypoints)
(if (= <_kv "gui-update-image-concurrent-lock"> undef)
then (set <_kv "gui-update-image-concurrent-lock"> true)
(opt (gui-update-image-low-low draw-keypoints))
(assoc-clr _kv "gui-update-image-concurrent-lock") ))
(defnet gui-update-image-low-low (draw-keypoints)
(deflocal default-info pix av1 av2 n1 n2 thclk th1 th2 pix1 pix2 a res1 res2 delay-step delay cnt i)
(set default-info <_kv "default">)
(set pix <_kv "pix">)
(set av1 <_kv "av1">)
(set av2 <_kv "av2">)
(if (or (= av1 undef) (= av2 undef))
then (pix-logo pix)
(gui-draw-image)
else (set n1 (gui-spin-value 1))
(set n2 (perm-convert (gui-spin-value 2)))
(set thclk <_kv "th-clock">)
(set th1 <_kv "th-read-frame1">)
(set th2 <_kv "th-read-frame2">)
(iup-set-str-attribute <_kv "time-label1"> "TITLE" (date-s2hhmmss (/ n1 (av-video-frame-rate av1))))
(iup-set-str-attribute <_kv "time-label2"> "TITLE" (date-s2hhmmss (/ n2 (av-video-frame-rate av2))))
(pix-create-pixfrm pix av1 av2 pix1 pix2)
(send (list av1 pix1 n1) to th1)
(send (list av2 pix2 n2) to th2)
(set delay-step 0.01)
(set delay 0)
(th-clock-send delay-step)
(thread-case*
priority 1 (not (booleanp res1)) (receive res1 from th1) ->
(alt (seq (truep res1)
(pix-gamma pix1 (cfg-get-or-default-num "filter-gamma1" default-info))
(if (cfg-get-or-default "filter-mirror1" default-info)
then (pix-hflip pix1) )
(if (cfg-get-or-default "filter-flip1" default-info)
then (pix-vflip pix1) )
(set a (cfg-get-or-default-num "filter-rotate1" default-info))
(if (<> a 0)
then (set a (pix-rotate pix1 a))
(close pix1)
(set pix1 a) )
(case draw-keypoints of
1 (pix-draw-keypoints pix1 (green)) ))
(pix-error pix1) )
[] priority 1 (not (booleanp res2)) (receive res2 from th2) ->
(alt (seq (truep res2)
(pix-gamma pix2 (cfg-get-or-default-num "filter-gamma2" default-info))
(if (cfg-get-or-default "filter-mirror2" default-info)
then (pix-hflip pix2) )
(if (cfg-get-or-default "filter-flip2" default-info)
then (pix-vflip pix2) )
(set a (cfg-get-or-default-num "filter-rotate2" default-info))
(if (<> a 0)
then (set a (pix-rotate pix2 a))
(close pix2)
(set pix2 a) )
(case draw-keypoints of
1 (pix-draw-keypoints pix2 (green)) ))
(pix-error pix2) )
[] priority 0 (not (and (booleanp res1) (booleanp res2))) (receive i from thclk) ->
(inc delay delay-step)
(if (>= delay (if (integerp cnt) 1 0.3))
then (set cnt (if (integerp cnt) (% (+ cnt 1) 3) 0))
(pix-draw-box pix 0 0 20 20 <(list (pix-color 0xff 0 0) (pix-color 0 0xff 0) (pix-color 0 0 0xff)) cnt>)
(gui-draw-image)
(set delay 0) )
(send delay-step to thclk) )
(pix-clear pix)
(set a (/ (- (height pix) (height pix1) (height pix2) (space)) 2))
(pix-draw-pix pix (/ (- (width pix) (width pix1)) 2) a pix1)
(pix-draw-pix pix (/ (- (width pix) (width pix2)) 2) (+ a (height pix1) (space)) pix2)
(close pix1 pix2)
(gui-draw-image)
(iup-set-double <_kv "slide1"> "VALUE" (linear n1 1 (+ (iup-get-int <_kv "spin1"> "SPINMAX") 0.00000000000001) 0 1))
(iup-set-double <_kv "slide2"> "VALUE" (linear n2 1 (+ (iup-get-int <_kv "spin2"> "SPINMAX") 0.00000000000001) 0 1)) ))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defnet gui-text1-hack (flush)
(deflocal parent text1)
(set parent <_kv "vbox-parent-of-text1">)
(set text1 <_kv "text1">)
(set <_kv "gui-text1-hack-caretpos"> (iup-get-int text1 "CARETPOS"))
(assoc-clr _kv "gui-text1-hack-selectionpos")
(iup-detach text1)
(close text1)
(set text1 (gui-setup-text-low 1))
(iup-insert parent undef text1)
(iup-map text1)
(iup-refresh parent)
(iup-set-callback text1 "BUTTON_CB" (netptr gui-text1-button-cb))
(if flush
then (iup-flush) ))
(defnet gui-text1-hack-post ()
(deflocal text1 selpos)
(set text1 <_kv "text1">)
(iup-set-int text1 "CARETPOS" (min <_kv "gui-text1-hack-caretpos"> (iup-get-int text1 "COUNT")))
(set selpos <_kv "gui-text1-hack-selectionpos">)
(if (<> selpos undef)
then (iup-set-str-attribute text1 "SELECTIONPOS" selpos) ))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defnet gui-disable-menu ()
;(iup-set-bool <_kv "dlg"> "SIMULATEMODAL" true)
(iup-set-active <_kv "menu" "widget"> false) )
(defnet gui-enable-menu ()
;(iup-set-bool <_kv "dlg"> "SIMULATEMODAL" false)
(iup-set-active <_kv "menu" "widget"> true) )
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defnet gui-update ()
(deflocal menu-info btn-info av1 av2 name1 name2 running
supervision map-exists i)
(set menu-info <_kv "menu">)
(set btn-info <_kv "toolbar">)
(set av1 <_kv "av1">)
(set av2 <_kv "av2">)
(set running (<> <_kv "th"> undef))
(set supervision (and (not running) (<> av1 undef) (<> av2 undef)))
(set <_kv "supervision"> supervision)
(set map-exists false)
(if (not running)
then (set name1 (fullpath->name <_kv "path1">))
(set name2 (fullpath->name <_kv "path2">))
(set map-exists (cfg-exists (key-map av1 av2 name1 name2)))
(set i (and (<> av1 undef) (<> av2 undef)))
(iup-set-active <menu-info "save-project"> i)
(if i
then (set i (stringp <(sqlite3-exec _db
"SELECT name FROM projects WHERE path1='" (sqlite3-escape-strings <_kv "path1">)
"' AND path2='" (sqlite3-escape-strings <_kv "path2">) "' LIMIT 1") 0 0>)) )
(iup-set-active <menu-info "delete-project"> i)
(iup-set-active <menu-info "export-project"> i)
(iup-set-active <menu-info "swap-order"> supervision)
(iup-set-active <menu-info "clear-scd1">
(if (= av1 undef) false (cfg-exists (key-scd av1 name1))) )
(iup-set-active <menu-info "clear-scd2">
(if (= av2 undef) false (cfg-exists (key-scd av2 name2))) )
(set i (if (or (= av1 undef) (= av2 undef))
false
(cfg-exists (key-sck av1 av2 name1 name2)) ))
(iup-set-active <menu-info "clear-sck"> i)
(iup-set-active <menu-info "clear-failed-sck"> i)
(iup-set-active <menu-info "report-failed"> i)
(set i (if (or (= av1 undef) (= av2 undef))
false
map-exists ))
(iup-set-active <menu-info "clear-map"> i)
(iup-set-active <menu-info "optimize-map"> i)
(iup-set-active <menu-info "final-closure"> i)
(set i (> (iup-get-int <_kv "text1"> "COUNT") 0))
(iup-set-active <menu-info "save-text1"> i)
(iup-set-active <menu-info "clear-text1"> i)
(set i (> (iup-get-int <_kv "text2"> "COUNT") 0))
(iup-set-active <menu-info "save-text2"> i)
(iup-set-active <menu-info "clear-text2"> i)
(iup-set-active <menu-info "save-frame1"> supervision)
(iup-set-active <menu-info "save-frame2"> supervision)
(iup-set-active <menu-info "print-selected">
(or (<> av1 undef) (<> av2 undef)) )
(iup-set-active <menu-info "print-buffers-content">
(or (<> av1 undef) (<> av2 undef)) )
(iup-set-active <menu-info "print-timestamps1"> (<> av1 undef))
(iup-set-active <menu-info "print-timestamps2"> (<> av2 undef))
(iup-set-active <menu-info "draw-keypoints"> (and (<> av1 undef) (<> av2 undef)))
(iup-set-active <menu-info "undo-last-movement"> (<> <_kv "prm"> undef)) )
(iup-set-active <menu-info "widget"> (not running))
(iup-set-active <_kv "supervision-toolbar"> (and (not running) supervision))
(iup-set-active <btn-info "open1"> (not running))
(iup-set-active <btn-info "open2"> (not running))
(iup-set-active <btn-info "open-project"> (not running))
(iup-set-active <btn-info "save-project"> (and (not running) (<> av1 undef) (<> av2 undef)))
(iup-set-active <btn-info "start"> supervision)
(iup-set-active <btn-info "abort">
(and running (not <_abort 0>)) )
(iup-set-active <btn-info "audio"> map-exists)
(iup-set-active <btn-info "prefs"> (not running)) )
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defnet gui-resize-cb (dlg w h)
(opt (gui-not-locked)
(iup-post-call (netptr gui-resize-post))) )
(defnet gui-resize-post ()
(deflocal sbx lbl w h mag pix)
(set sbx <_kv "sbx">)
(set lbl <sbx 0>)
(set w (iup-get-int sbx "RASTERSIZE"))
(set h (iup-get-int2 sbx "RASTERSIZE"))
;(print w " x " h nl)
(set mag (pow (zoom-step) <_kv "zoom-level">))
(set pix (pix-create (* w mag) (* h mag)))
(pixp pix)
(close <_kv "pix">)
(set <_kv "pix"> pix)
(gui-update-image) )
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defnet gui-move-text1-on-current-value (which)
(opt (gui-move-text1-on-current-value-low which)) )
(defnet gui-move-text1-on-current-value-low (which)
(deflocal text1 s t u v l x1 y1 x2 y2 i found)
(set text1 <_kv "text1">)
(set s (iup-get-str-attribute text1 "VALUE"))
(set t s)
(set v (gui-spin-value which))
(set y2 0)
(set found false)
(repeat (str-readline s l)
until (= l undef)
(opt (= <l 0> '[')
(= <l 7> '-')
(= <l 14> ']')
(set x1 (str->num (sub 1 6 l)))
(integerp x1)
(set y1 (str->num (sub 8 6 l)))
(integerp y1)
(set u (sub 15 (maxint) l))
(alt (seq (lmatch u "¹")
(set x2 -1)
(set y2 -1) )
(seq (lmatch u "²")
(set x2 x1)
(set y2 y1)
(set x1 -1)
(set y1 -1) )
(seq (= <l 21> '[')
(= <l 28> '-')
(= <l 35> ']')
(set x2 (str->num (sub 22 6 l)))
(integerp x2)
(set y2 (str->num (sub 29 6 l)))
(integerp y2) )
(seq (lmatch remove u " -/-> ??? {")
(search-and-cut "-" u i)
(search-and-cut "}" u i)
(set i (str->num i))
(integerp i)
(set x2 (+ y2 1))
(inc y2 i) ))
(set found (or (and (= which 1) (in v x1 .. y1))
(and (= which 2) (in v x2 .. y2)) )))
until found )
(if found
then (search l t v)
(set i (utf8-length (sub 0 v t)))
(set t (sub v (maxint) t))
(set s i)
(set u 0)
(opt* (< u 6)
(str-readline t v)
(<> v undef)
(inc s (utf8-length v))
(inc u) )
(iup-set-int text1 "CARETPOS" s)
(set <_kv "gui-text1-hack-caretpos"> i)
(set <_kv "gui-text1-hack-selectionpos"> (sprint i ":" (+ i (utf8-length l))))
(iup-post-call (netptr gui-text1-hack-post)) ))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defnet gui-report ()
(gui-report-low true) )
(defnet gui-report-low (go-home)
(deflocal text1 ab av1 av2 name1 name2 k sck map p q n i)
(set text1 <_kv "text1">)
(set ab <_kv "a-combo-goto">)
(while (> (length ab) 0) do
(array-remove ab 0) )
(alt (seq (set av1 <_kv "av1">)
(<> av1 undef)
(set av2 <_kv "av2">)
(<> av2 undef)
(set name1 (fullpath->name <_kv "path1">))
(set name2 (fullpath->name <_kv "path2">))
(set k (cfg-get (key-map av1 av2 name1 name2)))
(<> k undef)
(set sck (cfg-get (key-sck av1 av2 name1 name2)))
(<> sck undef)
(set map (map-create <k 0> <k 1>))
(for i in <k 2> do
(set p <i 0>)
(set q <i 1>)
(set n <i 2>)
(map-bind-low (car map) p q n)
(map-bind-low (cdr map) q p n) )
(map-report-low (cons text1 ab)
map name1 name2
(/ <sck 3> <sck 2>)
(/ <sck 5> <sck 4>)
(length <sck 0>) <sck 1>
go-home ))
(iup-set-str-attribute text1 "VALUE" "") )
(if (= (length ab) 0)
then (array-append ab [ 1 1 0 ]) ))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defnet gui-print-info-on-selected-file (which)
(deflocal path av text2 vidx par dar s)
(set path <_kv (+ "path" which)>)
(set av <_kv (+ "av" which)>)