-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpectuspdf.cpp
195 lines (154 loc) · 6.5 KB
/
pectuspdf.cpp
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
#include "pectuspdf.h"
#include <QDebug>
#include <QPainter>
#include <QPrinter>
#include <QDir>
#include <QImage>
#include <QPixmap>
#include <QWidget>
#include <QGuiApplication>
void PectusPDF::createPDF()
{
qDebug() << "Creating pdf";
QPrinter pdf(QPrinter::HighResolution);
pdf.setOutputFormat(QPrinter::PdfFormat);
QString fileName = processor->getFileName();
fileName = fileName.split('/').back();
if (fileName.isEmpty()){
fileName = "No_Scan_Loaded";
}
pdf.setOutputFileName(QDir::homePath() + "/Downloads/" + fileName.split(".")[0] + ".pdf");
QPainter painter;
QQuickWindow* window = qobject_cast<QQuickWindow*>(rootQmlObject);
if (window) {
painter.begin(&pdf);
QFont font;
font.setPointSize(16);
painter.setFont(font);
painter.drawText(200, 300, "Summary for: " + fileName);
font.setBold(false);
font.setPointSize(12);
painter.setFont(font);
addNotes(painter);
addScanViewer(painter, window);
addSlice(painter, window);
addSummary(painter);
painter.end();
}
// qDebug() << window->devicePixelRatio();
}
// Adds the user's notes to the PDF
void PectusPDF::addNotes(QPainter & painter){
// qDebug() << viewer->getNotes();
QString notes = viewer->getNotes();
if (notes.size() > 5000){
QString newString = "";
for (int i = 0; i < 999; i++){
newString.push_back(notes[i]);
}
notes = newString;
}
//QRectF rect(200, 500, 9300, 5000);
QFont font;
font.setPointSize(16);
painter.setFont(font);
painter.drawText(200, 7200, "Notes:");
font.setBold(false);
font.setPointSize(12);
painter.setFont(font);
QRectF rect(200, 7500, 9300, 4500);
painter.drawText(rect, notes);
}
// Adds the contents of the 3D Scan Viewer to the PDF
void PectusPDF::addScanViewer(QPainter & painter, QQuickWindow * window){
QObject * scanObject = rootQmlObject->findChild<QObject*>("viewerContainer");
QQuickItem * scan = qobject_cast<QQuickItem *>(scanObject);
if (scan) {
double ratio = window->devicePixelRatio();
QImage image;
image = window->grabWindow();
double x = scan->x() * ratio;
#if defined(Q_OS_WIN)
QObject * scene3dControlsObject = rootQmlObject->findChild<QObject*>("scene3dControls");
QQuickItem * scene3dControls = qobject_cast<QQuickItem *>(scene3dControlsObject);
double y = (scan->y() + scene3dControls->height()) * ratio;
#else
double y = scan->y() * ratio;
#endif
double width = scan->width() * ratio;
double height = scan->height() * ratio;
qDebug() << x << y << width << height;
image = image.copy(x, y, width, height);
//image = image.scaled(475, 570, Qt::AspectRatioMode::KeepAspectRatio);
image = image.scaled(4500 * ratio, 4500 * ratio, Qt::AspectRatioMode::KeepAspectRatio);
// image.save(QDir::homePath() + "/scanViewer.png");
// qDebug() << image.width() << image.height();
//QPointF point(40, 6000);
QPointF point(200, 1700);
painter.drawImage(point, image);
}
}
// Adds the contents of the Slice Canvas to the PDF
void PectusPDF::addSlice(QPainter & painter, QQuickWindow * window){
QObject * canvasObject = rootQmlObject->findChild<QObject*>("sliceRect");
QQuickItem * canvas = qobject_cast<QQuickItem *>(canvasObject);
if (canvas) {
double ratio = window->devicePixelRatio();
QImage image;
image = window->grabWindow();
double x = canvas->x() * ratio;
#if defined(Q_OS_WIN)
QObject * sliceButtonRowObject = canvasObject->findChild<QObject*>("sliceButtonRow");
QQuickItem * sliceButtonRow = qobject_cast<QQuickItem *>(sliceButtonRowObject);
double y = (canvas->y() + sliceButtonRow->height()) * ratio;
#else
double y = canvas->y() * ratio;
#endif
double width = canvas->width() * ratio;
double height = canvas->height() * ratio;
image = image.copy(x, y, width, height);
//image = image.scaled(480, 300, Qt::AspectRatioMode::KeepAspectRatio);
image = image.scaled(4500 * ratio, 4500 * ratio, Qt::AspectRatioMode::KeepAspectRatio);
// image.save(QDir::homePath() + "/sliceCanvas.png");
// qDebug() << image.width() << image.height();
//QPointF point(4600, 6000);
QPointF point(4600, 1700);
painter.drawImage(point, image);
}
}
// Adds a summary detailing the index calculations to the PDF
void PectusPDF::addSummary(QPainter & painter){
QFont font;
font.setPointSize(16);
painter.setFont(font);
PectusProcessor::OperationType lastOperation = processor->getLastOperation();
qDebug() << lastOperation;
// If the program has not performed an operation on this scan, there is no data to print.
if (lastOperation == PectusProcessor::OperationType::NoOperation){
painter.drawText(200, 700, "No Data Generated");
}
else if (lastOperation == PectusProcessor::OperationType::SliceMode){
painter.drawText(200, 700, "Slice Index Data:");
font.setPointSize(12);
painter.setFont(font);
painter.drawText(200, 950, "Haller Index: \t" + QString::number(processor->getHallerIndex()));
painter.drawText(200, 1200, "Asymmetric index: \t" + QString::number(processor->getAsymmetricIndexValue()));
painter.drawText(200, 1450, "Defect Volume Index: \t" + QString::number(processor->getVolumeDefectIndexValue()));
}
else {
// TODO: Update with chosen values from Bounds mode calculation
painter.drawText(200, 700, "Bounds Index Data:");
font.setPointSize(12);
painter.setFont(font);
painter.drawText(200, 950, "Worst Case Haller Index: \t" + QString::number(processor->getHallerIndex()));
painter.drawText(200, 1200, "Worst Case Asymmetric index: \t" + QString::number(processor->getAsymmetricIndexValue()));
painter.drawText(200, 1450, "Average Defect Volume Index: \t" + QString::number(processor->getVolumeDefectIndexValue()));
}
}
PectusPDF::PectusPDF(PectusViewer * viewer_input, PectusProcessor * processor_input, QObject *parent) : QObject(parent), viewer(viewer_input), processor(processor_input)
{
}
void PectusPDF::setRootQmlObject(QObject *obj)
{
rootQmlObject = obj;
}