-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.qml
747 lines (679 loc) · 25.9 KB
/
main.qml
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
import QtQuick 2.6
import QtQuick.Controls 2.2
import QtQuick.Controls 1.4
import QtQuick.Controls.Styles 1.4
import PectusViewer 1.1
import PectusProcessor 1.1
import QtQuick.Dialogs 1.2
import Qt3D.Core 2.0
import Qt3D.Render 2.0
import Qt3D.Input 2.0
import Qt3D.Extras 2.0
import QtQuick.Scene3D 2.0
import Qt.labs.settings 1.0
ApplicationWindow {
id: root
visible: true
width: 1000
height: 600
minimumHeight: 600
maximumHeight: 600
minimumWidth: 1000
maximumWidth: 1000
title: qsTr("PectIndex")
property string patientFilename: "No_Scan_Loaded.pdf"
menuBar: MenuBar {
Menu {
title: "File"
MenuItem {
text: "Open..."
onTriggered: fileDialog.open()
}
MenuItem {
text: "Close"
onTriggered: Qt.quit()
}
MenuItem {
text: "Create PDF"
onTriggered: {
var filename = myProcessor.fileName.split("/")
filename = filename[filename.length - 1].split(".")[0]
if (filename !== "") {
filename = filename + ".pdf"
root.patientFilename = filename
}
myPDF.createPDF()
var d = pdfComponent.createObject(null)
d.open()
}
}
}
Menu {
title: "Help"
MenuItem {
text: "Tutorial"
onTriggered: {
var d = tutorialComponent.createObject(null)
d.open()
}
}
}
Menu {
title: "Preferences"
MenuItem {
text: "Settings"
onTriggered: {
var d = settingsComponent.createObject(null)
d.open()
}
}
MenuItem {
text: "Color"
onTriggered: {
var d = colorComponent.createObject(null)
d.open()
}
}
}
}
Component {
id: colorComponent
ColorDialog {
id: colorDialog
onAccepted: {
sliceCanvas.sliceColor = color
colorDialog.destroy()
}
onRejected: {
colorDialog.destroy()
}
}
}
Component {
id: settingsComponent
Dialog {
id: settingsDialogContainer
visible: false
title: "Settings"
contentItem: SettingsDialog {
id: settingsDialog
modelColor: "gray"
canvasColor: "blue"
onClosePressed: {
settingsDialogContainer.close();
settingsDialogContainer.destroy()
}
onModelColorChanged: {
scene3d.mColor = this.modelColor
}
onCanvasColorChanged: {
sliceCanvas.sliceColor = this.canvasColor
}
}
}
}
Component {
id: tutorialComponent
Dialog {
id: tutorialDialogContainer
visible: false
title: "Tutorial"
contentItem: TutorialDialog {
id: tutorialContainer
onClosePressed: {
tutorialDialogContainer.close()
tutorialDialogContainer.destroy()
}
}
}
}
Component {
id: pdfComponent
Dialog {
id: pdfPopUp
contentItem: Rectangle {
implicitWidth: 300
implicitHeight: 75
color: "lightGray"
Rectangle {
height: parent.height - 10
width: parent.width - 10
anchors.centerIn: parent
color: "lightGrey"
Text {
id: tutorialContent
width: parent.width
anchors.top: parent.top
wrapMode: Text.WordWrap
text: root.patientFilename + " created successfully in Downloads folder"
}
}
Button{
id: closeTutorial
width: 50
height: 20
anchors.bottom: parent.bottom
anchors.horizontalCenter: parent.horizontalCenter
anchors.bottomMargin: 20
text: "Ok"
onClicked: {
pdfPopUp.close()
pdfPopUp.destroy()
}
}
}
}
}
Settings {
id: settings
property color modelColor: Qt.rgba(0.6, 0.6, 0.6, 1.0)
}
Rectangle {
id: background
anchors.fill: parent
color: "lightgrey"
MouseArea {
anchors.fill: parent
onClicked: {
if (myViewer.notesActive){
myViewer.updateNotes(notesTab.notes);
myViewer.toggleNotesActive();
}
}
}
Rectangle {
id: viewerContainer
objectName: "viewerContainer"
width: (parent.width / 2) - 40
height: parent.height - 50
anchors.left: parent.left
anchors.leftMargin: 20
anchors.top: parent.top
anchors.topMargin: 30
z: 100
color: "transparent"
property double previousX: 0.0
property double previousY: 0.0
property double xRot: 0.0
property double yRot: 0.0
property double xCamera: 0.0
property double yCamera: 0.0
MouseArea {
id: viewerContainerMouseArea
anchors.fill: parent
acceptedButtons: Qt.LeftButton | Qt.RightButton
onMouseXChanged: {
if (pressedButtons == Qt.LeftButton) {
if (viewerContainer.previousX !== 0) {
viewerContainer.xRot += mouseX - viewerContainer.previousX
}
}
else if (pressedButtons == Qt.RightButton) {
if (viewerContainer.previousX !== 0) {
viewerContainer.xCamera -= mouseX - viewerContainer.previousX
//mainCamera.translate(Qt.vector3d(-1 * (mouseX - viewerContainer.previousX) / 750, 0, 0))
}
}
viewerContainer.previousX = mouseX
}
onMouseYChanged: {
if (pressedButtons == Qt.LeftButton) {
if (viewerContainer.previousY !== 0) {
viewerContainer.yRot += mouseY - viewerContainer.previousY
}
}
else if (pressedButtons == Qt.RightButton) {
if (viewerContainer.previousY !== 0) {
viewerContainer.yCamera -= mouseY - viewerContainer.previousY
//mainCamera.translate(Qt.vector3d(0, (mouseY - viewerContainer.previousY) / 750, 0), Camera.TranslateViewCenter)
}
}
viewerContainer.previousY = mouseY
}
onWheel: {
mainCamera.translate(Qt.vector3d(0, 0, wheel.angleDelta.y / 1000), Camera.DontTranslateViewCenter)
}
onReleased: {
viewerContainer.previousX = 0
viewerContainer.previousY = 0
}
}
}
Scene3D {
id: scene3d
width: (parent.width / 2) - 40
height: parent.height - 50
anchors.left: parent.left
anchors.leftMargin: 20
anchors.top: parent.top
anchors.topMargin: 30
z: 0
property color mColor: "gray"
aspects: ["input", "logic"]
ChestModel {
mainCamera: Camera {
id: mainCamera
projectionType: CameraLens.PerspectiveProjection
fieldOfView: 22.5
position: Qt.vector3d( 0.19195, 0.180172, 4)
viewCenter: Qt.vector3d(0, 0, 0)
}
id: chestModel
scanSource: myViewer.renderStatus ? myViewer.scanFileName : ""
modelColor: scene3d.mColor
}
}
Text {
id: scanViewerText
text: qsTr("3D Scan Viewer:")
anchors.bottom: viewerContainer.top
anchors.bottomMargin: 5
anchors.left: viewerContainer.left
}
Text {
id: fileNameText
text: ""
anchors.left: scanViewerText.right
anchors.bottom: viewerContainer.top
anchors.leftMargin: 5
anchors.bottomMargin: 5
}
Row {
id: scene3dControls
objectName: "scene3dControls"
spacing: 3
anchors.right: viewerContainer.right
anchors.bottom: viewerContainer.top
Button {
id: cameraModeButton
text: "Camera Mode"
checked: true
onClicked: {
viewerContainer.z = 100
scene3d.z = 0
cameraModeButton.checked = true
sliceModeButton.checked = false
boundsModeButton.checked = false
myProcessor.setFirstClickPressed(false)
volumeText.text = "Defect Volume Index: "
}
style: ButtonStyle {
background:
Rectangle {
color: cameraModeButton.checked ? "#FFFFFF" : "#A9A9A9";
radius: 1;
}
}
ToolTip.visible: hovered
ToolTip.delay: 800
ToolTip.text: qsTr("Left click and drag to rotate image. \nRight click and drag to pan the image. \nScroll to zoom in and out.")
}
Button {
id: sliceModeButton
text: "Slice Mode"
checked: false
onClicked: {
viewerContainer.z = 0
scene3d.z = 100
sliceModeButton.checked = true
cameraModeButton.checked = false
boundsModeButton.checked = false
myProcessor.setFirstClickPressed(false)
volumeText.text = "Defect Volume Index: "
}
style: ButtonStyle {
background:
Rectangle {
color: sliceModeButton.checked ? "#FFFFFF" : "#A9A9A9";
radius: 1;
}
}
ToolTip.visible: hovered
ToolTip.delay: 800
ToolTip.text: qsTr("Click a spot on the scan. This \nwill create a slice at this point on the \nbody, which will display on the canvas.")
}
Button {
id: boundsModeButton
text: "Bounds Mode"
checked: false
onClicked: {
viewerContainer.z = 0
scene3d.z = 100
cameraModeButton.checked = false
sliceModeButton.checked = false
boundsModeButton.checked = true
volumeText.text = "Average Defect Volume Index: "
}
style: ButtonStyle {
background:
Rectangle {
color: boundsModeButton.checked ? "#FFFFFF" : "#A9A9A9";
radius: 1;
}
}
ToolTip.visible: hovered
ToolTip.delay: 800
ToolTip.text: qsTr("Click two spots on the scan. They will \nbe the bounds for a range of slices starting \nat the first click and ending at the second click.\nThe average defect volume index for the range\nwill be computed and the slice with the worst\nhaller index will be displayed.")
}
}
Rectangle {
id: dialogHolder
width: parent.width / 5
height: 20
anchors.right: parent.right
anchors.top: parent.top
anchors.rightMargin: 160
anchors.topMargin: 50
color: "white"
border.color: "black"
border.width: 1
TextInput {
id: fileNameInput
width: parent.width - 10
height: parent.height
text: myViewer.visibleFileName
onAccepted: {
myViewer.setVisibleFileName(this.text)
}
selectByMouse: true
layer.enabled: true
}
Text {
text: qsTr("Select File for 3D Rendering:")
anchors.bottom: fileNameInput.top
anchors.left: fileNameInput.left
anchors.bottomMargin: 3
}
Button {
id: renderScanButton
anchors.top: dialogHolder.bottom
anchors.topMargin: 10
anchors.horizontalCenter: dialogHolder.horizontalCenter
width: 130
height: 20
text: "Render 3D Model"
onClicked: {
var filename = fileDialog.fileUrl.toString().split('/');
fileNameText.text = filename[filename.length - 1];
myViewer.setScanFileName(myViewer.visibleFileName);
myViewer.renderScan();
myProcessor.setFileName(fileDialog.fileUrl);
myProcessor.setLastOperation(PectusProcessor.NoOperation)
}
ToolTip.visible: hovered
ToolTip.delay: 800
ToolTip.text: qsTr("Render the .obj file in the 3D scan viewer.")
}
Rectangle {
id: indiceBox
anchors.top: renderScanButton.bottom
anchors.topMargin: 20
Text {
id: hallerText
text: "Haller Index: "
font.pointSize: 10
anchors.top: indiceBox.top
anchors.topMargin: 10
}
Text{
id: hallerTextValue
visible: myProcessor.hallerIndexVisible
anchors.top: hallerText.top
anchors.left: hallerText.right
text: myProcessor.hallerIndex.toPrecision(4)
font.pointSize: 10
}
Text {
id: asymmetricText
text: "Asymmetric Index: "
font.pointSize: 10
anchors.top: hallerText.bottom
}
Text{
id: asymmetricTextValue
visible: myProcessor.asymmetricIndexVisible
anchors.top: asymmetricText.top
anchors.left: asymmetricText.right
text: myProcessor.asymmetricIndexValue.toPrecision(4)
font.pointSize: 10
}
Text {
id: volumeText
text: "Defect Volume Index: "
font.pointSize: 10
anchors.top: asymmetricText.bottom
}
Text{
id: volumeTextValue
visible: myProcessor.volumeDefectIndexVisible
anchors.top: volumeText.top
anchors.left: volumeText.right
text: myProcessor.volumeDefectIndexValue.toPrecision(4)
font.pointSize: 10
}
}
FileDialog {
id: fileDialog
title: "Choose a 3D Model File"
folder: shortcuts.home
nameFilters: ["3D Scan Files (*.obj)"]
onAccepted: {
myViewer.setVisibleFileName(fileDialog.fileUrl);
this.close();
}
onRejected: {
this.close();
}
}
Button {
id: searchFiles
width: 30
height: 20
anchors.left: fileNameInput.right
anchors.leftMargin: 20
text: "..."
onClicked: {
fileDialog.open();
}
ToolTip.visible: hovered
ToolTip.delay: 800
ToolTip.text: qsTr("Select a Wavefront .obj file to render in \nthe 3D Scan Viewer.")
}
}
Rectangle {
id: sliceRect
objectName: "sliceRect"
anchors.bottom: parent.bottom
anchors.left: viewerContainer.right
anchors.leftMargin: 20
anchors.right: parent.right
anchors.rightMargin: 20
anchors.bottomMargin: 20
height: 300
Row {
id: checkBoxRow
anchors.bottom: indexButtonRow.top
anchors.bottomMargin: 5
spacing: 10
CheckBox {
id: armRemovalEnabled
text: "Automatic Arm Removal"
checked: myProcessor.armRemovalEnabled
onClicked: {
myProcessor.enableArmRemoval(!myProcessor.armRemovalEnabled);
}
anchors.verticalCenter: parent.verticalCenter
ToolTip.visible: hovered
ToolTip.delay: 800
ToolTip.text: qsTr("Automatically remove connected arms \nwhen a slice is created.")
}
CheckBox {
id: runAllIndexes
text: "Run All Indexes"
checked: myProcessor.runAllIndexes
onClicked: {
myProcessor.setRunAllIndexes(!myProcessor.runAllIndexes);
}
anchors.verticalCenter: parent.verticalCenter
ToolTip.visible: hovered
ToolTip.delay: 800
ToolTip.text: qsTr("Calculate all indexes when a slice \nis created.")
}
}
Row {
id: indexButtonRow
anchors.bottom: sliceButtonRow.top
anchors.bottomMargin: 5
spacing: 3
Button {
id: hallerIndex
text: "Haller"
onClicked: {
myProcessor.calculateHallerIndex();
}
ToolTip.visible: hovered
ToolTip.delay: 800
ToolTip.text: qsTr("Calculates the Haller Index \n(width / depth).")
}
// Button {
// id: defectLine
// text: "Defect"
// onClicked: {
// myProcessor.findDefectLine(false);
// }
// ToolTip.visible: hovered
// ToolTip.delay: 800
// ToolTip.text: qsTr("Finds the line from the deepest \npoint of the defect to the spine")
// }
Button {
id: chestArea
text: "Asymmetric"
onClicked: {
myProcessor.asymmetricIndex();
}
ToolTip.visible: hovered
ToolTip.delay: 800
ToolTip.text: qsTr("Calculates (Left Side Area) / (Right Side Area)")
}
Button {
id: volumeDefect
text: "Defect Volume"
onClicked: {
myProcessor.volumeDefectIndex();
}
ToolTip.visible: hovered
ToolTip.delay: 800
ToolTip.text: qsTr("Calculates (Defect Area) / (Chest Area + Defect Area)")
}
Button {
id: clear
text: "Clear"
onClicked: {
sliceCanvas.clear()
}
ToolTip.visible: hovered
ToolTip.delay: 800
ToolTip.text: qsTr("Erase everything on the canvas.")
}
Button {
id: reset
text: "Reset"
onClicked: {
if (myProcessor.fileName == ""){
return
}
var armRemovalEnabled = myProcessor.armRemovalEnabled;
var lastYPlane = myProcessor.getLastYPlane();
myProcessor.enableArmRemoval(false);
myProcessor.calculateIntersection(lastYPlane);
myProcessor.drawLineSegments();
myProcessor.enableArmRemoval(armRemovalEnabled);
}
ToolTip.visible: hovered
ToolTip.delay: 800
ToolTip.text: qsTr("If attached arms were removed \n"
+ "on the last slice, draws the same \n"
+ "slice without connected arms removed.")
}
}
Row {
id: sliceButtonRow
objectName: "sliceButtonRow"
anchors.bottom: sliceCanvas.top
anchors.left: sliceCanvas.left
spacing: 3
Button {
id: pen
text: "Pen"
checked: true
onClicked: {
pen.checked = true;
eraser.checked = false;
armRemover.checked = false;
}
style: ButtonStyle {
background:
Rectangle {
color: pen.checked ? "#FFFFFF" : "#A9A9A9";
radius: 1;
}
}
ToolTip.visible: hovered
ToolTip.delay: 800
ToolTip.text: qsTr("Use a pen on the canvas.")
}
Button {
id: eraser
text: "Eraser"
checked: false
onClicked: {
pen.checked = false;
eraser.checked = true;
armRemover.checked = false;
}
style: ButtonStyle {
background:
Rectangle {
color: eraser.checked ? "#FFFFFF" : "#A9A9A9";
radius: 1;
}
}
ToolTip.visible: hovered
ToolTip.delay: 800
ToolTip.text: qsTr("Use an eraser on the canvas.")
}
Button {
id: armRemover
text: "Arm Removal"
checked: false
onClicked: {
pen.checked = false;
eraser.checked = false;
armRemover.checked = true;
}
style: ButtonStyle {
background:
Rectangle {
color: armRemover.checked ? "#FFFFFF" : "#A9A9A9";
radius: 1;
}
}
ToolTip.visible: hovered
ToolTip.delay: 800
ToolTip.text: qsTr("Remove connected arms from the slice.")
}
}
SliceCanvas {
id: sliceCanvas
objectName: "canvas"
anchors.fill: parent
sliceColor: "blue"
}
}
NotesTab {
id: notesTab
x: background.width - 80
y: 0
}
}
}