-
Notifications
You must be signed in to change notification settings - Fork 3
/
ProjectComboBox.cpp
238 lines (198 loc) · 5.5 KB
/
ProjectComboBox.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
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
#include <assert.h>
#include <QVariant>
#include "configItem.h"
#include "ProjectComboBox.h"
#include "qtimemage.h"
#include "util.h"
//static configIntVec S_project_ids("Project_QuickSelect_projects");
static configInt S_currentProject_id("Project_QuickSelect_current_project", -1);
/*****************************************************************************/
/**************** ProjectComboBox ******************************************/
/*****************************************************************************/
ProjectComboBox::
ProjectComboBox(QWidget *parent)
/*****************************************************************************
* Constructor
*/
: QComboBox(parent)
{
/* Settings management */
connect(&G, SIGNAL(sig_aboutToSaveSettings()), SLOT(storeSettings()));
connect(&G.projectTable, SIGNAL(sig_insert(int64_t)), SLOT(project_insert(int64_t)));
connect(&G.projectTable, SIGNAL(sig_update(int64_t)), SLOT(project_update(int64_t)));
connect(&G.projectTable, SIGNAL(sig_remove(int64_t)), SLOT(project_remove(int64_t)));
connect(&G.eventTable, SIGNAL(sig_insert(int64_t)), SLOT(event_insert(int64_t)));
connect(&G.eventTable, SIGNAL(sig_update(int64_t)), SLOT(event_update(int64_t)));
connect(&G.eventTable, SIGNAL(sig_remove(int64_t)), SLOT(event_remove(int64_t)));
setMinimumContentsLength(60);
}
ProjectComboBox::
~ProjectComboBox()
/*****************************************************************************
* Destructor
*/
{}
void
ProjectComboBox::
project_insert(int64_t prj_id)
/***********************************************************
* A project record was inserted.
*/
{
Project *prj= G.projectTable[prj_id];
Q_ASSERT(prj);
addProjectSorted(prj);
int ndx= project_id2ndx(prj_id);
assert (-1 != ndx);
setCurrentIndex (ndx);
}
void
ProjectComboBox::
project_update(int64_t prj_id)
/***********************************************************
* A project record was updated.
*/
{
/* See if this project is in our combo box */
int ndx= project_id2ndx(prj_id);
if(ndx == -1) return;
Project *prj= G.projectTable[prj_id];
Q_ASSERT(prj);
setItemText(ndx, prj->FQLongTitle());
// TODO: Re-sort?
}
void
ProjectComboBox::
project_remove(int64_t prj_id)
/***********************************************************
* A project record was removed.
*/
{
int ndx= project_id2ndx(prj_id);
if(ndx == -1) return;
removeItem(ndx);
}
void
ProjectComboBox::
event_insert(int64_t event_id)
/***********************************************************
* A event record was inserted.
*/
{
Event *ev= G.eventTable[event_id];
Q_ASSERT(ev);
int ndx= project_id2ndx(ev->project_id());
if(-1 == ndx) return;
Project *prj= G.projectTable[ev->project_id()];
Q_ASSERT(prj);
setItemIcon(ndx, prj->currentStateIcon());
}
void
ProjectComboBox::
event_update(int64_t event_id)
/***********************************************************
* A event record was
*/
{
event_insert(event_id);
}
void
ProjectComboBox::
event_remove(int64_t event_id)
/***********************************************************
* A event record was
*/
{
event_insert(event_id);
}
void
ProjectComboBox::
storeSettings()
/*****************************************************************************
* Store the relevant settings
*/
{
if(currentIndex() != -1) {
S_currentProject_id= ndx2Project_id(currentIndex());
}
}
int64_t
ProjectComboBox::
ndx2Project_id(int ndx)
/*****************************************************************************
* Return the Project id represented by ndx.
*/
{
QVariant qv= itemData(ndx);
Q_ASSERT(qv.isValid());
bool ok;
int64_t prj_id= qv.toLongLong(&ok);
Q_ASSERT(ok);
return prj_id;
}
Project*
ProjectComboBox::
ndx2Project(int ndx)
/*****************************************************************************
* Return the Project represented by ndx.
*/
{
return G.projectTable[ndx2Project_id(ndx)];
}
int
ProjectComboBox::
project_id2ndx(int64_t prj_id)
/*****************************************************************************
* Convert a Project id to a QComboBox index.
*/
{
QVariant qv= QVariant::fromValue(prj_id);
return findData(qv);
}
void
ProjectComboBox::
addProjectSorted(Project *prj)
/*****************************************************************************
* Add a project sorted on FQLongTitle().
*/
{
QString name= prj->FQLongTitle();
QVariant qv= QVariant::fromValue(prj->id());
for(int i= 0; i < count(); ++i) {
if(itemText(i) < name) continue;
insertItem(i, prj->currentStateIcon(), name, qv);
return;
}
addItem(prj->currentStateIcon(), name, qv);
}
void
ProjectComboBox::
populate()
/*****************************************************************************
* Populate the QComboBox with Projects
*/
{
/* Put all projects into the combo box */
QVector<int64_t> prj_id_vec;
int rtn = G.projectTable.fetchAll(prj_id_vec);
if (rtn < 0) qFatal("Project::fetchAll() failed!");
for(int i= 0; i < prj_id_vec.size(); ++i) {
int64_t prj_id= prj_id_vec[i];
Project *prj= G.projectTable[prj_id];
addProjectSorted(prj);
}
if(S_currentProject_id.val() != -1) {
int ndx= project_id2ndx(S_currentProject_id.val());
if(ndx != -1) setCurrentIndex(ndx);
}
}
void
ProjectComboBox::
removeItem(int ndx)
/*****************************************************************************
* Overloaded from QComboBox to keep config info current.
*/
{
storeSettings();
QComboBox::removeItem(ndx);
}