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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
|
#include "customGrid.h"
const unsigned int MinimumRows = 15;
//class containing pure grid data: basically the same as wxGridStringTable, but adds cell formatting
class CustomGridTableBase : public wxGridStringTable
{
public:
CustomGridTableBase(int numRows, int numCols) : wxGridStringTable(numRows, numCols), gridIdentifier(0), currentUI_ViewPtr(0), lastNrRows(MinimumRows)
{
lightBlue = new wxColour(80, 110, 255);
}
~CustomGridTableBase()
{
delete lightBlue;
}
void setGridDataTable(UI_Grid* currentUI_ViewPtr)
{
this->currentUI_ViewPtr = currentUI_ViewPtr;
}
void SetGridIdentifier(int id)
{
gridIdentifier = id;
}
//###########################################################################
//grid standard input output methods, redirected directly to UIGrid to improve performance
virtual int GetNumberRows()
{
if (currentUI_ViewPtr)
return max(currentUI_ViewPtr->size(), MinimumRows);
return MinimumRows; //grid is initialized with this number of rows
}
virtual bool IsEmptyCell( int row, int col )
{
return (GetValue(row, col) == wxEmptyString);
}
virtual wxString GetValue( int row, int col )
{
if (currentUI_ViewPtr)
{
if (currentUI_ViewPtr->size() > unsigned(row))
{
switch (gridIdentifier)
{
case 1:
if (4 > col)
{
switch (col)
{
case 0:
return (*currentUI_ViewPtr)[row].leftFilename;
case 1:
return (*currentUI_ViewPtr)[row].leftRelativePath;
case 2:
return (*currentUI_ViewPtr)[row].leftSize;
case 3:
return (*currentUI_ViewPtr)[row].leftDate;
}
}
break;
case 2:
if (4 > col)
{
switch (col)
{
case 0:
return (*currentUI_ViewPtr)[row].rightFilename;
case 1:
return (*currentUI_ViewPtr)[row].rightRelativePath;
case 2:
return (*currentUI_ViewPtr)[row].rightSize;
case 3:
return (*currentUI_ViewPtr)[row].rightDate;
}
}
break;
case 3:
if (1 > col)
{
return (*currentUI_ViewPtr)[row].cmpResult;
}
break;
default:
break;
}
}
}
//if data not found in UIgrid table:
return wxEmptyString;
}
virtual void SetValue( int row, int col, const wxString& value )
{
assert (false); //should not be used, since values are retrieved directly from currentUI_ViewPtr
}
virtual void Clear()
{
assert (false); // we don't want to use this, since the visible grid is directly connected to currentUI_ViewPtr}
}
virtual bool InsertRows( size_t pos = 0, size_t numRows = 1 )
{
assert (false); // we don't want to use this, since the visible grid is directly connected to currentUI_ViewPtr}
return true;
}
virtual bool AppendRows( size_t numRows = 1 )
{
assert (false); // we don't want to use this, since the visible grid is directly connected to currentUI_ViewPtr}
return true;
}
virtual bool DeleteRows( size_t pos = 0, size_t numRows = 1 )
{
assert (false); // we don't want to use this, since the visible grid is directly connected to currentUI_ViewPtr}
return true;
}
//update dimensions of grid: no need for InsertRows, AppendRows, DeleteRows anymore!!!
void updateGridSizes()
{
if (currentUI_ViewPtr)
{
int currentNrRows = GetNumberRows();
if (lastNrRows < currentNrRows)
{
if ( GetView() )
{
wxGridTableMessage msg(this,
wxGRIDTABLE_NOTIFY_ROWS_APPENDED,
currentNrRows - lastNrRows);
GetView()->ProcessTableMessage( msg );
}
}
else if (lastNrRows > currentNrRows)
{
if ( GetView() )
{
wxGridTableMessage msg(this,
wxGRIDTABLE_NOTIFY_ROWS_DELETED,
0,
lastNrRows - currentNrRows);
GetView()->ProcessTableMessage( msg );
}
}
lastNrRows = currentNrRows;
}
}
//###########################################################################
bool markThisRow(int row)
{
if (currentUI_ViewPtr)
{
if (unsigned(row) < currentUI_ViewPtr->size())
{
if ((*currentUI_ViewPtr)[row].cmpResult == constFilteredOut)
return true;
}
}
return false;
}
wxGridCellAttr* GetAttr(int row, int col, wxGridCellAttr::wxAttrKind kind)
{
wxGridCellAttr* result = wxGridTableBase::GetAttr(row, col, kind);
// MARK FILTERED ROWS:
if (result)
{ //if kind is not a cell or row attribute, we have to clone the cell attribute, since we don't want to change e.g. all column attribs
if (result->GetKind() != wxGridCellAttr::Cell && result->GetKind() != wxGridCellAttr::Row)
{
wxGridCellAttr* attr = result->Clone();
result->DecRef();
result = attr;
}
if (markThisRow(row))
result->SetBackgroundColour(*lightBlue);
else
result->SetBackgroundColour(*wxWHITE);
}
else
{
result = new wxGridCellAttr;
if (markThisRow(row))
result->SetBackgroundColour(*lightBlue);
}
return result;
}
private:
wxColour* lightBlue;
int gridIdentifier;
UI_Grid* currentUI_ViewPtr; //(fast) access to underlying grid data :)
int lastNrRows;
};
//########################################################################################################
CustomGrid::CustomGrid( wxWindow *parent,
wxWindowID id,
const wxPoint& pos,
const wxSize& size,
long style,
const wxString& name)
: wxGrid(parent, id, pos, size, style, name),
scrollbarsEnabled(true),
m_grid1(0), m_grid2(0), m_grid3(0),
gridDataTable(0),
currentSortColumn(-1),
sortMarker(0) {}
CustomGrid::~CustomGrid() {}
bool CustomGrid::CreateGrid(int numRows, int numCols, wxGrid::wxGridSelectionModes selmode)
{
//use custom wxGridTableBase class for management of large sets of formatted data.
//This is done in CreateGrid instead of SetTable method since source code is generated and wxFormbuilder invokes CreatedGrid by default.
gridDataTable = new CustomGridTableBase(numRows, numCols);
SetTable(gridDataTable, true, selmode); //give ownership to CustomGrid: gridDataTable is deleted automatically in CustomGrid destructor
return true;
}
void CustomGrid::deactivateScrollbars()
{
scrollbarsEnabled = false;
}
//overwrite virtual method to finally get rid of the scrollbars
void CustomGrid::SetScrollbar(int orientation, int position, int thumbSize, int range, bool refresh)
{
if (scrollbarsEnabled)
wxWindow::SetScrollbar(orientation, position, thumbSize, range, refresh);
else
wxWindow::SetScrollbar(orientation, 0, 0, 0, refresh);
}
//this method is called when grid view changes: useful for parallel updating of multiple grids
void CustomGrid::DoPrepareDC(wxDC& dc)
{
wxScrollHelper::DoPrepareDC(dc);
int x, y = 0;
if (leadingPanel == 1 && this == m_grid1) //avoid back coupling
{
GetViewStart(&x, &y);
m_grid2->Scroll(x, y);
m_grid3->Scroll(-1, y); //scroll in y-direction only
}
else if (leadingPanel == 2 && this == m_grid2) //avoid back coupling
{
GetViewStart(&x, &y);
m_grid1->Scroll(x, y);
m_grid3->Scroll(-1, y);
}
else if (leadingPanel == 3 && this == m_grid3) //avoid back coupling
{
GetViewStart(&x, &y);
m_grid1->Scroll(-1, y);
m_grid2->Scroll(-1, y);
}
}
//these classes will scroll together, hence the name ;)
void CustomGrid::setScrollFriends(CustomGrid* grid1, CustomGrid* grid2, CustomGrid* grid3)
{
m_grid1 = grid1;
m_grid2 = grid2;
m_grid3 = grid3;
assert(gridDataTable);
if (this == m_grid1)
gridDataTable->SetGridIdentifier(1);
else if (this == m_grid2)
gridDataTable->SetGridIdentifier(2);
else if (this == m_grid3)
gridDataTable->SetGridIdentifier(3);
else
assert (false);
}
void CustomGrid::setGridDataTable(UI_Grid* currentUI_ViewPtr)
{
//set underlying grid data
assert(gridDataTable);
gridDataTable->setGridDataTable(currentUI_ViewPtr);
}
void CustomGrid::updateGridSizes()
{
assert(gridDataTable);
gridDataTable->updateGridSizes();
}
void CustomGrid::setSortMarker(const int sortColumn, const wxBitmap* bitmap)
{
currentSortColumn = sortColumn;
sortMarker = bitmap;
}
void CustomGrid::DrawColLabel( wxDC& dc, int col )
{
assert(0 <= col && col < 4);
wxGrid::DrawColLabel(dc, col);
if (col == currentSortColumn)
{
dc.DrawBitmap(*sortMarker, GetColRight(col) - 16 - 2, 2, true); //respect 2-pixel border
}
}
|