-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpectusviewer.cpp
57 lines (45 loc) · 1.2 KB
/
pectusviewer.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
#include "pectusviewer.h"
PectusViewer::PectusViewer(QObject *parent) : QObject(parent), m_scanFileName(""), m_renderStatus(false), m_notesActive(false), m_notes("")
{
}
QString PectusViewer::getVisibleFileName(){
return m_visibleFileName;
}
QString PectusViewer::getScanFileName(){
return m_scanFileName;
}
bool PectusViewer::getRenderStatus(){
return m_renderStatus;
}
bool PectusViewer::getNotesActive(){
return m_notesActive;
}
QString PectusViewer::getNotes(){
return m_notes;
}
void PectusViewer::setVisibleFileName(const QString &arg){
if (arg.endsWith(".obj")){
m_visibleFileName = arg;
emit visibleFileNameChanged(arg);
}
}
void PectusViewer::setScanFileName(const QString & arg){
if (arg.endsWith(".obj")){
m_scanFileName = arg;
emit scanFileNameChanged(arg);
}
}
void PectusViewer::renderScan(){
if (m_scanFileName.endsWith(".obj")){
m_renderStatus = true;
emit renderStatusChanged(true);
}
}
void PectusViewer::toggleNotesActive(){
m_notesActive = !m_notesActive;
emit notesActiveChanged(m_notesActive);
}
void PectusViewer::updateNotes(const QString &arg){
m_notes = arg;
emit notesChanged(arg);
}