-
Notifications
You must be signed in to change notification settings - Fork 2
/
UMMPPanel.xib
4794 lines (4793 loc) · 425 KB
/
UMMPPanel.xib
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
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="5056" systemVersion="13F1911" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none">
<dependencies>
<deployment defaultVersion="1080" identifier="macosx"/>
<plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="5056"/>
</dependencies>
<objects>
<customObject id="-2" userLabel="File's Owner" customClass="UMMPPanelController">
<connections>
<outlet property="afAllMapsController" destination="7895" id="7957"/>
<outlet property="afAllMapsView" destination="7795" id="7974"/>
<outlet property="afOneAlgorithmController" destination="6516" id="6593"/>
<outlet property="afOneAlgorithmView" destination="6287" id="6553"/>
<outlet property="afOneROIController" destination="6482" id="6612"/>
<outlet property="afOneROIView" destination="6094" id="6552"/>
<outlet property="algorithmPopUpButton" destination="548" id="1132"/>
<outlet property="chart" destination="1503" id="1505"/>
<outlet property="drawer" destination="1477" id="1484"/>
<outlet property="fastDeconvolutionController" destination="1099" id="1471"/>
<outlet property="fastDeconvolutionView" destination="962" id="1101"/>
<outlet property="mapSelectionPanelController" destination="2646" id="2683"/>
<outlet property="menuItem1" destination="766" id="959"/>
<outlet property="menuItem2" destination="768" id="960"/>
<outlet property="menuItem3" destination="947" id="961"/>
<outlet property="menuItem4" destination="5278" id="7087"/>
<outlet property="pixelBasedMapController" destination="7132" id="7669"/>
<outlet property="pixelBasedMapView" destination="7133" id="7670"/>
<outlet property="roiBasedController" destination="1408" id="7668"/>
<outlet property="roiBasedView" destination="6906" id="7664"/>
<outlet property="roiList" destination="1467" id="1469"/>
<outlet property="twoComp2InletUptakePixelBasedController" destination="kg9-Fc-9Yr" id="QBT-ra-l0s"/>
<outlet property="twoComp2InletUptakePixelBasedView" destination="oCJ-Ae-1LQ" id="4sI-KK-Re7"/>
<outlet property="twoComp2InletUptakeRoiBasedController" destination="pRo-1u-6V1" id="cEc-14-T1u"/>
<outlet property="twoComp2InletUptakeRoiBasedView" destination="A9b-qY-kuq" id="SGe-fg-bxF"/>
<outlet property="viewerList" destination="1526" id="1527"/>
<outlet property="window" destination="533" id="799"/>
</connections>
</customObject>
<customObject id="-1" userLabel="First Responder" customClass="FirstResponder"/>
<customObject id="-3" userLabel="Application"/>
<window allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO" hidesOnDeactivate="YES" oneShot="NO" animationBehavior="default" id="533" customClass="NSPanel">
<windowStyleMask key="styleMask" titled="YES" closable="YES" utility="YES"/>
<windowPositionMask key="initialPositionMask" leftStrut="YES" rightStrut="YES" topStrut="YES" bottomStrut="YES"/>
<rect key="contentRect" x="200" y="250" width="255" height="551"/>
<rect key="screenRect" x="0.0" y="0.0" width="1920" height="1058"/>
<value key="minSize" type="size" width="255" height="551"/>
<value key="maxSize" type="size" width="503" height="648"/>
<view key="contentView" wantsLayer="YES" id="535" colorLabel="IBBuiltInLabel-Blue">
<rect key="frame" x="0.0" y="0.0" width="255" height="551"/>
<autoresizingMask key="autoresizingMask"/>
<subviews>
<imageView id="1124">
<rect key="frame" x="0.0" y="171" width="255" height="346"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="plugin" id="1131"/>
</imageView>
<textField verticalHuggingPriority="750" id="1125">
<rect key="frame" x="17" y="203" width="221" height="44"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<textFieldCell key="cell" controlSize="small" sendsActionOnEndEditing="YES" alignment="center" id="1130">
<font key="font" metaFont="smallSystem"/>
<string key="title">It is not certified as a commercial medical device (FDA or CE-1) for primary diagnostic imaging.
</string>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</textField>
<textField verticalHuggingPriority="750" id="1126">
<rect key="frame" x="17" y="435" width="221" height="56"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<textFieldCell key="cell" controlSize="small" sendsActionOnEndEditing="YES" alignment="center" id="1129">
<font key="font" metaFont="smallSystem"/>
<string key="title">UMMPerfusion is a generic Open Source MRI perfusion analysis tool for quantitative parameter mapping.
</string>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</textField>
<textField verticalHuggingPriority="750" id="1127">
<rect key="frame" x="17" y="171" width="221" height="14"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="center" title="Use at your own risk!" id="1128">
<font key="font" metaFont="smallSystemBold"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</textField>
</subviews>
</view>
<toolbar key="toolbar" implicitIdentifier="42D15767-5E2A-4EEF-9B30-1725AF0B386A" autosavesConfiguration="NO" allowsUserCustomization="NO" showsBaselineSeparator="NO" displayMode="iconOnly" sizeMode="small" id="534">
<allowedToolbarItems>
<toolbarItem implicitItemIdentifier="C5839A6D-3D50-4497-A72F-466EF936D137" label="" paletteLabel="" toolTip="Select an algorithm/ a model of your choice. Choose from model free-, ROI-based- or pixel based algorithms. " id="536">
<size key="minSize" width="75" height="25"/>
<size key="maxSize" width="113" height="25"/>
<popUpButton key="view" verticalHuggingPriority="750" id="548">
<rect key="frame" x="0.0" y="14" width="113" height="25"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<popUpButtonCell key="cell" type="roundTextured" title="Perfusion" bezelStyle="texturedRounded" alignment="left" controlSize="small" lineBreakMode="truncatingTail" borderStyle="borderAndBezel" imageScaling="proportionallyDown" inset="2" pullsDown="YES" id="549">
<behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
<font key="font" metaFont="smallSystem"/>
<menu key="menu" title="OtherViews" id="550">
<items>
<menuItem title="Perfusion" hidden="YES" id="763">
<modifierMask key="keyEquivalentModifierMask"/>
</menuItem>
<menuItem title="Model-free (Pixel)" enabled="NO" id="766">
<modifierMask key="keyEquivalentModifierMask"/>
</menuItem>
<menuItem title=" Fast Deconvolution" tag="1" id="765">
<modifierMask key="keyEquivalentModifierMask"/>
<connections>
<action selector="viewChoicePopupAction:" target="-2" id="1134"/>
</connections>
</menuItem>
<menuItem isSeparatorItem="YES" id="770"/>
<menuItem title="Exchange models (ROI)" enabled="NO" id="768">
<modifierMask key="keyEquivalentModifierMask"/>
</menuItem>
<menuItem title=" 1-Compartment" tag="2" id="769">
<modifierMask key="keyEquivalentModifierMask"/>
<connections>
<action selector="viewChoicePopupAction:" target="-2" id="1135"/>
</connections>
</menuItem>
<menuItem title=" 2-Compartment Exchange" tag="3" id="941">
<modifierMask key="keyEquivalentModifierMask"/>
<connections>
<action selector="viewChoicePopupAction:" target="-2" id="1136"/>
</connections>
</menuItem>
<menuItem title=" 2-Compartment Filtration" tag="4" id="4016">
<modifierMask key="keyEquivalentModifierMask"/>
<connections>
<action selector="viewChoicePopupAction:" target="-2" id="4017"/>
</connections>
</menuItem>
<menuItem title=" 2-Compartment Uptake" tag="5" id="943">
<modifierMask key="keyEquivalentModifierMask"/>
<connections>
<action selector="viewChoicePopupAction:" target="-2" id="1137"/>
</connections>
</menuItem>
<menuItem title=" Modified Tofts" tag="6" id="945">
<modifierMask key="keyEquivalentModifierMask"/>
<connections>
<action selector="viewChoicePopupAction:" target="-2" id="1138"/>
</connections>
</menuItem>
<menuItem title=" 2-Compartment 2-Inlet Uptake" tag="15" id="I3s-Pe-k4c">
<attributedString key="attributedTitle"/>
<modifierMask key="keyEquivalentModifierMask"/>
<connections>
<action selector="viewChoicePopupAction:" target="-2" id="vak-GD-jkB"/>
</connections>
</menuItem>
<menuItem isSeparatorItem="YES" id="948"/>
<menuItem title="Exchange models (Pixel)" enabled="NO" id="947">
<modifierMask key="keyEquivalentModifierMask"/>
</menuItem>
<menuItem title=" 1-Compartment" tag="7" id="949">
<modifierMask key="keyEquivalentModifierMask"/>
<connections>
<action selector="viewChoicePopupAction:" target="-2" id="1139"/>
</connections>
</menuItem>
<menuItem title=" 2-Compartment Exchange" tag="8" id="953">
<modifierMask key="keyEquivalentModifierMask"/>
<connections>
<action selector="viewChoicePopupAction:" target="-2" id="1140"/>
</connections>
</menuItem>
<menuItem title=" 2-Compartment Filtration" tag="9" id="4018">
<modifierMask key="keyEquivalentModifierMask"/>
<connections>
<action selector="viewChoicePopupAction:" target="-2" id="4019"/>
</connections>
</menuItem>
<menuItem title=" 2-Compartment Uptake" tag="10" id="955">
<modifierMask key="keyEquivalentModifierMask"/>
<connections>
<action selector="viewChoicePopupAction:" target="-2" id="1141"/>
</connections>
</menuItem>
<menuItem title=" Modified Tofts" tag="11" id="957">
<modifierMask key="keyEquivalentModifierMask"/>
<connections>
<action selector="viewChoicePopupAction:" target="-2" id="1142"/>
</connections>
</menuItem>
<menuItem title=" 2-Compartment 2-Inlet Uptake" tag="16" id="zj1-dY-d0O">
<modifierMask key="keyEquivalentModifierMask"/>
<connections>
<action selector="viewChoicePopupAction:" target="-2" id="QtR-2f-Dv8"/>
</connections>
</menuItem>
<menuItem isSeparatorItem="YES" id="5275"/>
<menuItem title="Advanced Features" enabled="NO" id="5278">
<modifierMask key="keyEquivalentModifierMask"/>
</menuItem>
<menuItem title=" all ROIs" tag="12" id="6478">
<modifierMask key="keyEquivalentModifierMask"/>
<connections>
<action selector="viewChoicePopupAction:" target="-2" id="6479"/>
</connections>
</menuItem>
<menuItem title=" all algorithms" tag="13" id="6476">
<modifierMask key="keyEquivalentModifierMask"/>
<connections>
<action selector="viewChoicePopupAction:" target="-2" id="6477"/>
</connections>
</menuItem>
<menuItem title=" all maps" tag="14" id="7793">
<modifierMask key="keyEquivalentModifierMask"/>
<connections>
<action selector="viewChoicePopupAction:" target="-2" id="7794"/>
</connections>
</menuItem>
<menuItem isSeparatorItem="YES" id="6480"/>
</items>
</menu>
</popUpButtonCell>
</popUpButton>
</toolbarItem>
<toolbarItem implicitItemIdentifier="NSToolbarFlexibleSpaceItem" id="567"/>
<toolbarItem implicitItemIdentifier="E6DDCA32-E3A6-4F3F-B996-0C531F86BA71" label="Custom View" paletteLabel="Custom View" toolTip="Click here to open the preset window, change settings and create your own profile for your settings" image="NSActionTemplate" id="1939">
<size key="minSize" width="26" height="25"/>
<size key="maxSize" width="26" height="25"/>
<button key="view" verticalHuggingPriority="750" id="1937">
<rect key="frame" x="26" y="14" width="26" height="25"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<buttonCell key="cell" type="roundTextured" bezelStyle="texturedRounded" image="NSActionTemplate" imagePosition="right" alignment="center" state="on" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="1938">
<behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<action selector="pushPrefButton:" target="-2" id="1965"/>
</connections>
</button>
</toolbarItem>
</allowedToolbarItems>
<defaultToolbarItems>
<toolbarItem reference="536"/>
<toolbarItem reference="567"/>
<toolbarItem reference="1939"/>
</defaultToolbarItems>
</toolbar>
</window>
<customView id="563" userLabel="Algorithm">
<rect key="frame" x="0.0" y="0.0" width="258" height="595"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews>
<button verticalHuggingPriority="750" id="666">
<rect key="frame" x="167" y="139" width="80" height="18"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<buttonCell key="cell" type="roundTextured" title="Generate" bezelStyle="texturedRounded" alignment="center" controlSize="small" state="on" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="722">
<behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
<font key="font" metaFont="smallSystem"/>
<string key="keyEquivalent" base64-UTF8="YES">
DQ
</string>
</buttonCell>
</button>
<box autoresizesSubviews="NO" borderType="line" titlePosition="noTitle" id="668">
<rect key="frame" x="6" y="453" width="244" height="137"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<view key="contentView">
<rect key="frame" x="1" y="1" width="242" height="135"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews>
<textField verticalHuggingPriority="750" id="708" userLabel="Aterial Label">
<rect key="frame" x="18" y="87" width="37" height="14"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Artery" id="712">
<font key="font" metaFont="smallSystem"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</textField>
<popUpButton toolTip="Arterial Input Function" verticalHuggingPriority="750" id="706" userLabel="Arterial Pop Up Button">
<rect key="frame" x="60" y="81" width="164" height="25"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<popUpButtonCell key="cell" type="roundTextured" bezelStyle="texturedRounded" alignment="left" controlSize="small" lineBreakMode="truncatingTail" enabled="NO" borderStyle="borderAndBezel" imageScaling="proportionallyDown" inset="2" id="714">
<behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
<font key="font" metaFont="smallSystem"/>
<menu key="menu" title="OtherViews" id="715"/>
</popUpButtonCell>
<connections>
<outlet property="nextKeyView" destination="705" id="730"/>
</connections>
</popUpButton>
<popUpButton toolTip="Enhance the result in different ways" verticalHuggingPriority="750" id="705" userLabel="Appr. Pop Up Button">
<rect key="frame" x="18" y="15" width="206" height="25"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<popUpButtonCell key="cell" type="roundTextured" title="Relative Signal Enhancement" bezelStyle="texturedRounded" alignment="left" controlSize="small" lineBreakMode="truncatingTail" state="on" borderStyle="borderAndBezel" imageScaling="proportionallyDown" inset="2" selectedItem="719" id="716">
<behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
<font key="font" metaFont="smallSystem"/>
<menu key="menu" title="OtherViews" id="717">
<items>
<menuItem title="Relative Signal Enhancement" state="on" id="719"/>
<menuItem title="Signal Enhancement" id="718"/>
</items>
</menu>
</popUpButtonCell>
<connections>
<outlet property="nextKeyView" destination="695" id="731"/>
</connections>
</popUpButton>
<textField verticalHuggingPriority="750" id="704" userLabel="Appr. Label">
<rect key="frame" x="18" y="39" width="178" height="14"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Approximal tracer concentration" id="720">
<font key="font" metaFont="smallSystem"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</textField>
<textField verticalHuggingPriority="750" id="734" userLabel="Aterial Label">
<rect key="frame" x="18" y="61" width="39" height="14"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Tissue" id="735">
<font key="font" metaFont="smallSystem"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</textField>
<popUpButton toolTip="Tissue Function" verticalHuggingPriority="750" id="736" userLabel="Arterial Pop Up Button">
<rect key="frame" x="60" y="55" width="164" height="25"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<popUpButtonCell key="cell" type="roundTextured" bezelStyle="texturedRounded" alignment="left" controlSize="small" lineBreakMode="truncatingTail" enabled="NO" borderStyle="borderAndBezel" imageScaling="proportionallyDown" inset="2" id="737">
<behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
<font key="font" metaFont="smallSystem"/>
<menu key="menu" title="OtherViews" id="738"/>
</popUpButtonCell>
<connections>
<outlet property="nextKeyView" destination="705" id="739"/>
</connections>
</popUpButton>
<textField verticalHuggingPriority="750" id="7699" userLabel="Aterial Label">
<rect key="frame" x="99" y="110" width="44" height="17"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="ROIs" id="7700">
<font key="font" metaFont="system"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</textField>
</subviews>
</view>
<color key="borderColor" white="0.0" alpha="0.41999999999999998" colorSpace="calibratedWhite"/>
<color key="fillColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
</box>
<box autoresizesSubviews="NO" title="Box" borderType="line" titlePosition="noTitle" id="669">
<rect key="frame" x="6" y="357" width="244" height="99"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<view key="contentView">
<rect key="frame" x="1" y="1" width="242" height="97"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews>
<textField verticalHuggingPriority="750" id="697" userLabel="Length of Baseline Label">
<rect key="frame" x="19" y="68" width="102" height="14"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Length of Baseline" id="698">
<font key="font" metaFont="smallSystem"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</textField>
<textField verticalHuggingPriority="750" id="696" userLabel="Hematocrit Label">
<rect key="frame" x="58" y="41" width="63" height="14"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Hematocrit" id="699">
<font key="font" metaFont="smallSystem"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</textField>
<textField toolTip="Count of images to calculate reference image" verticalHuggingPriority="750" id="695" userLabel="Length of Baseline Text Field">
<rect key="frame" x="126" y="66" width="98" height="19"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" tag="1" title="5" drawsBackground="YES" id="700">
<font key="font" metaFont="smallSystem"/>
<color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
<connections>
<outlet property="nextKeyView" destination="694" id="732"/>
</connections>
</textField>
<textField toolTip="Value of patient's hematocrit" verticalHuggingPriority="750" tag="2" id="694" userLabel="Hematocrit Text Field">
<rect key="frame" x="126" y="39" width="98" height="19"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" drawsBackground="YES" id="701">
<numberFormatter key="formatter" formatterBehavior="custom10_4" numberStyle="decimal" minimumIntegerDigits="1" maximumIntegerDigits="309" maximumFractionDigits="3" id="935"/>
<font key="font" metaFont="smallSystem"/>
<color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
<connections>
<outlet property="nextKeyView" destination="693" id="733"/>
</connections>
</textField>
<textField toolTip="Enhance the result by this value" verticalHuggingPriority="750" tag="3" id="693">
<rect key="frame" x="126" y="14" width="98" height="19"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" drawsBackground="YES" id="702">
<numberFormatter key="formatter" formatterBehavior="custom10_4" numberStyle="decimal" minimumIntegerDigits="1" maximumIntegerDigits="309" maximumFractionDigits="3" id="936"/>
<font key="font" metaFont="smallSystem"/>
<color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</textField>
<textField verticalHuggingPriority="750" id="692">
<rect key="frame" x="40" y="16" width="81" height="14"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Regularization" id="703">
<font key="font" metaFont="smallSystem"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</textField>
</subviews>
</view>
<color key="borderColor" white="0.0" alpha="0.41999999999999998" colorSpace="calibratedWhite"/>
<color key="fillColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
</box>
<box autoresizesSubviews="NO" title="Box" borderType="line" titlePosition="noTitle" id="821">
<rect key="frame" x="6" y="163" width="244" height="47"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<view key="contentView">
<rect key="frame" x="1" y="1" width="242" height="45"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews>
<button toolTip="Directly exports result to database" id="840">
<rect key="frame" x="13" y="14" width="107" height="18"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<buttonCell key="cell" type="check" title="Autosave Result" bezelStyle="regularSquare" imagePosition="left" alignment="left" controlSize="small" inset="2" id="841">
<behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
<font key="font" metaFont="smallSystem"/>
</buttonCell>
<connections>
<outlet property="nextKeyView" destination="839" id="845"/>
</connections>
</button>
<textField toolTip="Prefixed to the series name in export" verticalHuggingPriority="750" tag="4" id="839">
<rect key="frame" x="126" y="14" width="98" height="19"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" placeholderString="Custom Name" drawsBackground="YES" id="842">
<font key="font" metaFont="smallSystem"/>
<color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</textField>
</subviews>
</view>
<color key="borderColor" white="0.0" alpha="0.41999999999999998" colorSpace="calibratedWhite"/>
<color key="fillColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
</box>
<button toolTip="Help" horizontalHuggingPriority="750" verticalHuggingPriority="750" id="822">
<rect key="frame" x="6" y="135" width="25" height="25"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<buttonCell key="cell" type="help" bezelStyle="helpButton" alignment="center" controlSize="small" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="838">
<behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
<font key="font" metaFont="smallSystem"/>
</buttonCell>
</button>
<box autoresizesSubviews="NO" title="Box" borderType="line" titlePosition="noTitle" id="823">
<rect key="frame" x="6" y="281" width="244" height="78"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<view key="contentView">
<rect key="frame" x="1" y="1" width="242" height="76"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews>
<textField verticalHuggingPriority="750" id="824" userLabel="Algorithm Label">
<rect key="frame" x="16" y="44" width="30" height="14"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Trim" id="837">
<font key="font" metaFont="smallSystem"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</textField>
<textField verticalHuggingPriority="750" id="825" userLabel="from">
<rect key="frame" x="48" y="14" width="34" height="14"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="from:" id="836">
<font key="font" metaFont="smallSystem"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</textField>
<textField verticalHuggingPriority="750" id="826" userLabel="Algorithm Label">
<rect key="frame" x="176" y="14" width="19" height="14"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="to:" id="835">
<font key="font" metaFont="smallSystem"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</textField>
<textField verticalHuggingPriority="750" id="827" userLabel="Algorithm Label">
<rect key="frame" x="84" y="14" width="29" height="14"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="left" title="1" bezelStyle="round" id="834">
<font key="font" metaFont="smallSystem"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</textField>
<textField verticalHuggingPriority="750" id="828" userLabel="to">
<rect key="frame" x="197" y="14" width="29" height="14"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="center" title="150" id="833">
<font key="font" metaFont="smallSystem"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</textField>
<slider verticalHuggingPriority="750" id="829">
<rect key="frame" x="50" y="48" width="175" height="16"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<sliderCell key="cell" controlSize="mini" continuous="YES" state="on" alignment="left" minValue="1" maxValue="150" doubleValue="1" tickMarkPosition="below" numberOfTickMarks="20" sliderType="linear" id="832"/>
<connections>
<outlet property="nextKeyView" destination="830" id="844"/>
</connections>
</slider>
<slider verticalHuggingPriority="750" id="830">
<rect key="frame" x="50" y="36" width="175" height="16"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<sliderCell key="cell" controlSize="mini" continuous="YES" state="on" alignment="left" minValue="1" maxValue="150" doubleValue="150" tickMarkPosition="above" numberOfTickMarks="20" sliderType="linear" id="831"/>
<connections>
<outlet property="nextKeyView" destination="840" id="843"/>
</connections>
</slider>
</subviews>
</view>
<color key="borderColor" white="0.0" alpha="0.41999999999999998" colorSpace="calibratedWhite"/>
<color key="fillColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
</box>
<button toolTip="Exports result to database" verticalHuggingPriority="750" id="922">
<rect key="frame" x="79" y="139" width="80" height="18"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<buttonCell key="cell" type="roundTextured" title="Export" bezelStyle="texturedRounded" alignment="center" controlSize="small" state="on" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="923">
<behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
<font key="font" metaFont="smallSystem"/>
</buttonCell>
</button>
<box autoresizesSubviews="NO" title="Box" borderType="line" titlePosition="noTitle" id="4095">
<rect key="frame" x="6" y="206" width="244" height="78"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<view key="contentView">
<rect key="frame" x="1" y="1" width="242" height="76"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews>
<textField verticalHuggingPriority="750" id="4102" userLabel="Algorithm Label">
<rect key="frame" x="15" y="30" width="52" height="28"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Slices" id="4103">
<font key="font" metaFont="smallSystem"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</textField>
<textField verticalHuggingPriority="750" id="4101" userLabel="from">
<rect key="frame" x="48" y="14" width="34" height="14"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="from:" id="4104">
<font key="font" metaFont="smallSystem"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</textField>
<textField verticalHuggingPriority="750" id="4100" userLabel="Algorithm Label">
<rect key="frame" x="176" y="14" width="19" height="14"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="to:" id="4105">
<font key="font" metaFont="smallSystem"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</textField>
<textField verticalHuggingPriority="750" id="4099" userLabel="Algorithm Label">
<rect key="frame" x="84" y="14" width="29" height="14"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="left" title="1" bezelStyle="round" id="4106">
<font key="font" metaFont="smallSystem"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</textField>
<textField verticalHuggingPriority="750" id="4098" userLabel="to">
<rect key="frame" x="197" y="14" width="29" height="14"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="center" title="150" id="4107">
<font key="font" metaFont="smallSystem"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</textField>
<slider verticalHuggingPriority="750" id="4097">
<rect key="frame" x="50" y="48" width="175" height="16"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<sliderCell key="cell" controlSize="mini" continuous="YES" state="on" alignment="left" minValue="1" maxValue="150" doubleValue="1" tickMarkPosition="below" numberOfTickMarks="20" sliderType="linear" id="4108"/>
</slider>
<slider verticalHuggingPriority="750" id="4096">
<rect key="frame" x="50" y="36" width="175" height="16"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<sliderCell key="cell" controlSize="mini" continuous="YES" state="on" alignment="left" minValue="1" maxValue="150" doubleValue="150" tickMarkPosition="above" numberOfTickMarks="20" sliderType="linear" id="4109"/>
</slider>
</subviews>
</view>
<color key="borderColor" white="0.0" alpha="0.41999999999999998" colorSpace="calibratedWhite"/>
<color key="fillColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
</box>
</subviews>
</customView>
<customView id="962" userLabel="Fast Deconvolution">
<rect key="frame" x="0.0" y="0.0" width="256" height="431"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews>
<button toolTip="Click here to start the calculation" verticalHuggingPriority="750" id="964">
<rect key="frame" x="167" y="21" width="80" height="18"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<buttonCell key="cell" type="roundTextured" title="Generate" bezelStyle="texturedRounded" alignment="center" controlSize="small" state="on" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="1020">
<behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
<font key="font" metaFont="smallSystem"/>
<string key="keyEquivalent" base64-UTF8="YES">
DQ
</string>
</buttonCell>
<connections>
<action selector="pushGenerateButton:" target="-2" id="2641"/>
</connections>
</button>
<box autoresizesSubviews="NO" borderType="line" titlePosition="noTitle" id="969">
<rect key="frame" x="6" y="332" width="244" height="94"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<view key="contentView">
<rect key="frame" x="1" y="1" width="242" height="92"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews>
<textField verticalHuggingPriority="750" id="975" userLabel="Aterial Label">
<rect key="frame" x="18" y="62" width="66" height="14"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Arterial ROI" id="976">
<font key="font" metaFont="smallSystem"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</textField>
<popUpButton toolTip="Select a region of interest (ROI) for an arterial input function" verticalHuggingPriority="750" id="974" userLabel="Arterial Pop Up Button">
<rect key="frame" x="89" y="56" width="135" height="25"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<popUpButtonCell key="cell" type="roundTextured" bezelStyle="texturedRounded" alignment="left" controlSize="small" lineBreakMode="truncatingTail" enabled="NO" borderStyle="borderAndBezel" imageScaling="proportionallyDown" inset="2" id="977">
<behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
<font key="font" metaFont="smallSystem"/>
<menu key="menu" title="OtherViews" id="978"/>
</popUpButtonCell>
<connections>
<action selector="selectROIs:" target="1099" id="1515"/>
<outlet property="nextKeyView" destination="973" id="1025"/>
</connections>
</popUpButton>
<popUpButton toolTip="Select from three types of enhancement" verticalHuggingPriority="750" id="973" userLabel="Appr. Pop Up Button">
<rect key="frame" x="18" y="12" width="206" height="25"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<popUpButtonCell key="cell" type="roundTextured" bezelStyle="texturedRounded" alignment="left" controlSize="small" lineBreakMode="truncatingTail" borderStyle="borderAndBezel" imageScaling="proportionallyDown" inset="2" id="979">
<behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
<font key="font" metaFont="smallSystem"/>
<menu key="menu" title="OtherViews" id="980">
<items>
<menuItem title="Rel. Signal Enhancement (T1-DCE)" id="981">
<modifierMask key="keyEquivalentModifierMask"/>
</menuItem>
<menuItem title="Signal Enhancement (T1-DCE)" id="982">
<modifierMask key="keyEquivalentModifierMask"/>
</menuItem>
<menuItem title="Rel. Signal Enhancement (T2*-DSC)" id="1844">
<modifierMask key="keyEquivalentModifierMask"/>
</menuItem>
</items>
</menu>
</popUpButtonCell>
<connections>
<outlet property="nextKeyView" destination="989" id="1024"/>
</connections>
</popUpButton>
<textField verticalHuggingPriority="750" id="972" userLabel="Appr. Label">
<rect key="frame" x="18" y="36" width="185" height="14"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Approximate tracer concentration" id="983">
<font key="font" metaFont="smallSystem"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</textField>
</subviews>
</view>
<color key="borderColor" white="0.0" alpha="0.41999999999999998" colorSpace="calibratedWhite"/>
<color key="fillColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
</box>
<box autoresizesSubviews="NO" title="Box" borderType="line" titlePosition="noTitle" id="968">
<rect key="frame" x="7" y="236" width="244" height="99"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<view key="contentView">
<rect key="frame" x="1" y="1" width="242" height="97"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews>
<textField verticalHuggingPriority="750" id="987" userLabel="Length of Baseline Label">
<rect key="frame" x="19" y="68" width="102" height="14"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Length of Baseline" id="1000">
<font key="font" metaFont="smallSystem"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</textField>
<textField verticalHuggingPriority="750" id="988" userLabel="Hematocrit Label">
<rect key="frame" x="58" y="41" width="63" height="14"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Hematocrit" id="999">
<font key="font" metaFont="smallSystem"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</textField>
<textField toolTip="Amount of images used to calculate a reference image " verticalHuggingPriority="750" id="989" userLabel="Length of Baseline Text Field">
<rect key="frame" x="126" y="66" width="98" height="19"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" continuous="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" tag="1" drawsBackground="YES" id="998">
<numberFormatter key="formatter" formatterBehavior="custom10_4" usesGroupingSeparator="NO" groupingSize="0" minimumIntegerDigits="0" maximumIntegerDigits="42" id="1820"/>
<font key="font" metaFont="smallSystem"/>
<color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
<connections>
<binding destination="1641" name="value" keyPath="baselineLength" id="1823">
<dictionary key="options">
<bool key="NSContinuouslyUpdatesValue" value="YES"/>
<bool key="NSValidatesImmediately" value="YES"/>
</dictionary>
</binding>
<outlet property="nextKeyView" destination="990" id="1028"/>
</connections>
</textField>
<textField toolTip="This value serves to convert blood flow into plasma flow (and vice versa)" verticalHuggingPriority="750" tag="2" id="990" userLabel="Hematocrit Text Field">
<rect key="frame" x="126" y="39" width="98" height="19"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" drawsBackground="YES" id="996">
<numberFormatter key="formatter" formatterBehavior="custom10_4" numberStyle="decimal" minimumIntegerDigits="1" maximumIntegerDigits="309" maximumFractionDigits="3" id="997"/>
<font key="font" metaFont="smallSystem"/>
<color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
<connections>
<binding destination="1641" name="value" keyPath="htc" id="1825">
<dictionary key="options">
<bool key="NSContinuouslyUpdatesValue" value="YES"/>
<bool key="NSValidatesImmediately" value="YES"/>
</dictionary>
</binding>
<outlet property="nextKeyView" destination="991" id="1022"/>
</connections>
</textField>
<textField toolTip="Enhance the result by this value" verticalHuggingPriority="750" tag="3" id="991">
<rect key="frame" x="126" y="14" width="98" height="19"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" drawsBackground="YES" id="994">
<numberFormatter key="formatter" formatterBehavior="custom10_4" numberStyle="decimal" minimumIntegerDigits="1" maximumIntegerDigits="309" maximumFractionDigits="3" id="995"/>
<font key="font" metaFont="smallSystem"/>
<color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
<connections>
<binding destination="1641" name="value" keyPath="regularization" id="1827">
<dictionary key="options">
<bool key="NSContinuouslyUpdatesValue" value="YES"/>
<bool key="NSValidatesImmediately" value="YES"/>
</dictionary>
</binding>
</connections>
</textField>
<textField verticalHuggingPriority="750" id="992">
<rect key="frame" x="40" y="16" width="81" height="14"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Regularization" id="993">
<font key="font" metaFont="smallSystem"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</textField>
</subviews>
</view>
<color key="borderColor" white="0.0" alpha="0.41999999999999998" colorSpace="calibratedWhite"/>
<color key="fillColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
</box>
<box autoresizesSubviews="NO" title="Box" borderType="line" titlePosition="noTitle" id="967">
<rect key="frame" x="7" y="45" width="244" height="45"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<view key="contentView">
<rect key="frame" x="1" y="1" width="242" height="43"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews>
<button toolTip="Directly exports result to database" id="1001">
<rect key="frame" x="15" y="12" width="107" height="18"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<buttonCell key="cell" type="check" title="Autosave Result" bezelStyle="regularSquare" imagePosition="left" alignment="left" controlSize="small" inset="2" id="1004">
<behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
<font key="font" metaFont="smallSystem"/>
</buttonCell>
<connections>
<binding destination="1641" name="value" keyPath="autosaveBox" id="3746">
<dictionary key="options">
<bool key="NSValidatesImmediately" value="YES"/>
</dictionary>
</binding>
<outlet property="nextKeyView" destination="1002" id="1026"/>
</connections>
</button>
<textField toolTip="Enter a prefix which will be added to the export series' name" verticalHuggingPriority="750" tag="4" id="1002">
<rect key="frame" x="126" y="12" width="98" height="19"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" placeholderString="Custom Name" drawsBackground="YES" id="1003">
<font key="font" metaFont="smallSystem"/>
<color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
<connections>
<binding destination="1641" name="value" keyPath="exportName" id="3743">
<dictionary key="options">
<bool key="NSContinuouslyUpdatesValue" value="YES"/>
<bool key="NSValidatesImmediately" value="YES"/>
</dictionary>
</binding>
</connections>
</textField>
</subviews>
</view>
<color key="borderColor" white="0.0" alpha="0.41999999999999998" colorSpace="calibratedWhite"/>
<color key="fillColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
</box>
<box autoresizesSubviews="NO" title="Box" borderType="line" titlePosition="noTitle" id="965">
<rect key="frame" x="7" y="160" width="244" height="78"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<view key="contentView">
<rect key="frame" x="1" y="1" width="242" height="76"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews>
<textField verticalHuggingPriority="750" id="1012" userLabel="Algorithm Label">
<rect key="frame" x="16" y="44" width="30" height="14"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Trim" id="1013">
<font key="font" metaFont="smallSystem"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</textField>
<textField verticalHuggingPriority="750" id="1011" userLabel="from">
<rect key="frame" x="48" y="14" width="34" height="14"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="from:" id="1014">
<font key="font" metaFont="smallSystem"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</textField>
<textField verticalHuggingPriority="750" id="1010" userLabel="Algorithm Label">
<rect key="frame" x="176" y="14" width="19" height="14"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="to:" id="1015">
<font key="font" metaFont="smallSystem"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</textField>
<textField verticalHuggingPriority="750" id="1009" userLabel="Algorithm Label">
<rect key="frame" x="84" y="14" width="29" height="14"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="left" title="1" bezelStyle="round" id="1016">
<numberFormatter key="formatter" formatterBehavior="custom10_4" usesGroupingSeparator="NO" groupingSize="0" minimumIntegerDigits="0" maximumIntegerDigits="42" id="1745"/>
<font key="font" metaFont="smallSystem"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
<connections>
<binding destination="1641" name="value" keyPath="startField" id="1719"/>
</connections>
</textField>
<textField verticalHuggingPriority="750" id="1008" userLabel="to">
<rect key="frame" x="197" y="14" width="29" height="14"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="center" title="150" id="1017">
<numberFormatter key="formatter" formatterBehavior="custom10_4" usesGroupingSeparator="NO" groupingSize="0" minimumIntegerDigits="0" maximumIntegerDigits="42" id="1746"/>
<font key="font" metaFont="smallSystem"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
<connections>
<binding destination="1641" name="value" keyPath="stopField" id="1722"/>
</connections>
</textField>
<slider toolTip="Trim of images over time" verticalHuggingPriority="750" id="1007">
<rect key="frame" x="50" y="48" width="175" height="16"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<sliderCell key="cell" controlSize="mini" continuous="YES" state="on" alignment="left" minValue="1" maxValue="150" doubleValue="1" tickMarkPosition="below" numberOfTickMarks="20" sliderType="linear" id="1018"/>
<connections>
<action selector="moveStartSlider:" target="1099" id="1516"/>
<binding destination="1641" name="value" keyPath="startSlider" previousBinding="1708" id="1709"/>
<binding destination="1641" name="maxValue" keyPath="startSliderMax" id="1704"/>
<binding destination="1641" name="minValue" keyPath="startSliderMin" previousBinding="1704" id="1708"/>
<outlet property="nextKeyView" destination="1006" id="1027"/>
</connections>
</slider>
<slider toolTip="Trim of images over time" verticalHuggingPriority="750" id="1006">
<rect key="frame" x="50" y="36" width="175" height="16"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<sliderCell key="cell" controlSize="mini" continuous="YES" state="on" alignment="left" minValue="1" maxValue="150" doubleValue="150" tickMarkPosition="above" numberOfTickMarks="20" sliderType="linear" id="1019"/>
<connections>
<action selector="moveEndSlider:" target="1099" id="1517"/>
<binding destination="1641" name="value" keyPath="stopSlider" previousBinding="1714" id="1716"/>
<binding destination="1641" name="maxValue" keyPath="stopSliderMax" id="1712"/>
<binding destination="1641" name="minValue" keyPath="stopSliderMin" previousBinding="1712" id="1714"/>
<outlet property="nextKeyView" destination="1001" id="1023"/>
</connections>
</slider>
</subviews>
</view>
<color key="borderColor" white="0.0" alpha="0.41999999999999998" colorSpace="calibratedWhite"/>
<color key="fillColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
</box>
<button toolTip="Exports result to database (only possible if results have already been generated)" verticalHuggingPriority="750" id="963">
<rect key="frame" x="105" y="21" width="56" height="18"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<buttonCell key="cell" type="roundTextured" title="Export" bezelStyle="texturedRounded" alignment="center" controlSize="small" state="on" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="1021">
<behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
<font key="font" metaFont="smallSystem"/>
</buttonCell>
<connections>
<action selector="pushExportButton:" target="-2" id="8000"/>
</connections>
</button>
<button toolTip="Go to the Plugin's wiki page" horizontalHuggingPriority="750" verticalHuggingPriority="750" id="1114">
<rect key="frame" x="8" y="17" width="25" height="25"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<buttonCell key="cell" type="help" bezelStyle="helpButton" alignment="center" controlSize="small" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="1115">
<behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
<font key="font" metaFont="smallSystem"/>
</buttonCell>
<connections>
<action selector="pushHelpButton:" target="-2" id="3769"/>
</connections>
</button>
<box autoresizesSubviews="NO" title="Box" borderType="line" titlePosition="noTitle" id="4180">
<rect key="frame" x="7" y="86" width="244" height="78"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<view key="contentView">
<rect key="frame" x="1" y="1" width="242" height="76"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews>
<textField verticalHuggingPriority="750" id="4181" userLabel="Algorithm Label">
<rect key="frame" x="15" y="30" width="52" height="28"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Slices" id="4194">
<font key="font" metaFont="smallSystem"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</textField>
<textField verticalHuggingPriority="750" id="4182" userLabel="from">
<rect key="frame" x="48" y="14" width="34" height="14"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="from:" id="4193">
<font key="font" metaFont="smallSystem"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</textField>
<textField verticalHuggingPriority="750" id="4183" userLabel="Algorithm Label">
<rect key="frame" x="176" y="14" width="19" height="14"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="to:" id="4192">
<font key="font" metaFont="smallSystem"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</textField>
<textField verticalHuggingPriority="750" id="4184" userLabel="Algorithm Label">
<rect key="frame" x="84" y="14" width="29" height="14"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="left" title="1" bezelStyle="round" id="4191">
<font key="font" metaFont="smallSystem"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
<connections>
<binding destination="1641" name="value" keyPath="startSliceField" id="4322"/>
</connections>
</textField>
<textField verticalHuggingPriority="750" id="4185" userLabel="to">
<rect key="frame" x="197" y="14" width="29" height="14"/>