-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathimagewidget.cpp
208 lines (171 loc) · 4.74 KB
/
imagewidget.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
196
197
198
199
200
201
202
203
204
205
206
207
208
#include "imagewidget.h"
#include "ui_imagewidget.h"
ImageWidget::ImageWidget(LifeSupport *dataPackage, MainWindow *parent, bool initTargetList) :
QWidget(parent),
ui(new Ui::ImageWidget)
{
imagePath = "";
title = "";
ui->setupUi(this);
this->seen = false;
mainWindow = parent ;
this->dataPackage=dataPackage;
// Initialize imageLabel
//setImage(":/images/Untitled.png");
//ui->imageLabel->setScaledContents(true);
//ui->imageLabel->setSizePolicy( QSizePolicy::Ignored, QSizePolicy::Ignored );
if (initTargetList)
targetList = new TargetListWindow(dataPackage);
else
targetList = NULL;
targetListInitialized = false;
ui->colourLabel->setStyleSheet("QLabel { background-color : yellow; color : blue; }");
}
ImageWidget::~ImageWidget()
{
delete targetList;
delete ui;
}
QString ImageWidget::getTitle() const
{
return this->title;
}
int ImageWidget::getNumTargets() const
{
return this->numTargets;
}
QString ImageWidget::getImagePath() const
{
return this->imagePath;
}
QPixmap& ImageWidget::getImage()
{
return this->image;
}
QString ImageWidget::getFolderPath() const
{
return this->folderPath;
}
QString ImageWidget::getFilePath() const
{
return this->filePath;
}
bool ImageWidget::getSeen() const
{
return this->seen;
}
void ImageWidget::setTitle(QString name)
{
ui->imageCaption->setText(name);
title = name;
}
void ImageWidget::setSeen(bool seen)
{
if (seen)
ui->colourLabel->setStyleSheet("QLabel { background-color : green; color : blue; }");
else
ui->colourLabel->setStyleSheet("QLabel { background-color : yellow; color : blue; }");
this->seen = seen;
}
void ImageWidget::setFolderPath(QString folderPath){
this->folderPath = folderPath ;
}
void ImageWidget::setFilePath(QString filePath){
this->filePath = filePath ;
}
void ImageWidget::setImagePath(QString imagePath)
{
this->imagePath = imagePath;
}
void ImageWidget::setNumTargets(int numTargets)
{
QString s = QString::number(numTargets);
QString numTargetsString = s + " targets";
this->ui->numTargetDisplay->setText(numTargetsString);
this->numTargets = numTargets;
}
void ImageWidget::setImage(QString imagePath)
{
if (imagePath != "") {
QPixmap *pix = new QPixmap();
pix->load(imagePath);
image = pix->scaled(220, 220, Qt::KeepAspectRatioByExpanding, Qt::FastTransformation);
ui->imageLabel->setPixmap(image);
this->imagePath = imagePath;
delete pix;
}
}
void ImageWidget::setImage(QPixmap &resizedImage)
{
ui->imageLabel->setPixmap(resizedImage);
image = resizedImage;
}
bool ImageWidget::isInitialized() const
{
return this->targetListInitialized;
}
void ImageWidget::deleteTargetListWindow()
{
delete this->targetList;
this->targetList = NULL;
}
/*bool ImageWidget::getSeen() const
{
return this->seen;
}*/
void ImageWidget::changeTargetListWindow(TargetListWindow* targetList, bool alreadyInitialized)
{
this->targetList = targetList;
this->targetListInitialized = alreadyInitialized;
}
TargetListWindow* ImageWidget::getTargetList() const
{
return this->targetList;
}
/*void ImageWidget::setTabWidget(QTabWidget* tabWidget ) {
this->tabWidget = tabWidget ;
}*/
void ImageWidget::mouseDoubleClickEvent(QMouseEvent *event){
if ( event->button() == Qt::LeftButton ){
ui->colourLabel->setStyleSheet("QLabel { background-color : green; color : blue; }"); // Mark as seen
this->seen = true;
dataPackage->filePath=filePath;
/*
if (!targetListInitialized) {
targetList->setWindowFlags(Qt::Window);
targetList->setModal(false);
targetList->setWindowTitle(title);
targetList->setMainPic(imagePath);
targetList->loadTargets(folderPath, filePath) ;
targetListInitialized = true;
}
targetList->show();*/
if (!targetListInitialized) {
//TargetListWindow* newTab = new TargetListWindow ;
targetList->setMainPic(imagePath);
targetList->loadTargets(folderPath, filePath) ;
mainWindow->addTab(targetList, title) ;
targetListInitialized = true;
}
else {
bool found = mainWindow->findTab(targetList) ;
if (!found)
{
mainWindow->addTab(targetList, title);
}
}
}
}
void ImageWidget::on_pinButton_clicked()
{
QList<ImageWidget*>* itemsList = mainWindow->getItems();
for (int i = 0; i < itemsList->size(); ++i)
{
if (itemsList->at(i) == this) {
itemsList->removeAt(i);
break;
}
}
itemsList->insert(0, this);
mainWindow->refreshTable();
}