-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlsStringListWidget.cpp
91 lines (77 loc) · 1.57 KB
/
lsStringListWidget.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
#include "lsStringListWidget.h"
lsStringListWidget::lsStringListWidget(QWidget *parent) :
QListWidget(parent)
{
connect(this, &QListWidget::itemSelectionChanged, this, &lsStringListWidget::slotSelected);
}
int lsStringListWidget::indexOf(const QString& searchText) const
{
for (int i = 0; i < this->count(); i++)
{
if (this->item(i)->text() == searchText)
{
return i;
}
}
return -1;
}
bool lsStringListWidget::replace(int row, const QString& newText)
{
if (row < 0 || row >= this->count()) { return false; }
this->item(row)->setText(newText);
return true;
}
bool lsStringListWidget::select(const QString& toSelect)
{
int row = this->indexOf(toSelect);
if (row == -1)
{
return false;
}
return this->select(row);
}
bool lsStringListWidget::select(int row)
{
if (row > -1)
{
this->selectionModel()->clear();
this->selectionModel()->select(this->model()->index(row, 0), QItemSelectionModel::Select);
return true;
}
return false;
}
int lsStringListWidget::selectedRow() const
{
if (this->selectedItems().isEmpty())
{
return -1;
}
else
{
return this->selectionModel()->selectedRows().first().row();
}
}
QString lsStringListWidget::selectedText() const
{
if (this->selectedItems().count() == 0)
{
return QStringLiteral("");
}
else
{
return this->selectedItems().first()->text();
}
}
QStringList lsStringListWidget::strings() const
{
QStringList toReturn;
for (int i = 0; i < this->count(); i++)
{
toReturn << this->item(i)->text();
}
return toReturn;
}
void lsStringListWidget::slotSelected()
{
emit signalSelected( this->selectedText() );
}