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
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
|
// *****************************************************************************
// * This file is part of the FreeFileSync project. It is distributed under *
// * GNU General Public License: http://www.gnu.org/licenses/gpl-3.0 *
// * Copyright (C) Zenju (zenju AT freefilesync DOT org) - All Rights Reserved *
// *****************************************************************************
#ifndef GRAPH_H_234425245936567345799
#define GRAPH_H_234425245936567345799
#include <map>
#include <vector>
#include <memory>
#include <wx/panel.h>
#include <wx/settings.h>
#include <wx/bitmap.h>
#include <zen/string_tools.h>
#include <zen/optional.h>
//elegant 2D graph as wxPanel specialization
namespace zen
{
/*
Example:
//init graph (optional)
m_panelGraph->setAttributes(Graph2D::MainAttributes().
setLabelX(Graph2D::LABEL_X_BOTTOM, 20, std::make_shared<LabelFormatterTimeElapsed>()).
setLabelY(Graph2D::LABEL_Y_RIGHT, 60, std::make_shared<LabelFormatterBytes>()));
//set graph data
std::shared_ptr<CurveData> curveDataBytes_ = ...
m_panelGraph->setCurve(curveDataBytes_, Graph2D::CurveAttributes().setLineWidth(2).setColor(wxColor(0, 192, 0)));
*/
struct CurvePoint
{
CurvePoint() {}
CurvePoint(double xVal, double yVal) : x(xVal), y(yVal) {}
double x = 0;
double y = 0;
};
inline bool operator==(const CurvePoint& lhs, const CurvePoint& rhs) { return lhs.x == rhs.x && lhs.y == rhs.y; }
inline bool operator!=(const CurvePoint& lhs, const CurvePoint& rhs) { return !(lhs == rhs); }
struct CurveData
{
virtual ~CurveData() {}
virtual std::pair<double, double> getRangeX() const = 0;
virtual std::vector<CurvePoint> getPoints(double minX, double maxX, const wxSize& areaSizePx) const = 0; //points outside the draw area are automatically trimmed!
};
//special curve types:
struct ContinuousCurveData : public CurveData
{
virtual double getValue(double x) const = 0;
private:
std::vector<CurvePoint> getPoints(double minX, double maxX, const wxSize& areaSizePx) const override;
};
struct SparseCurveData : public CurveData
{
SparseCurveData(bool addSteps = false) : addSteps_(addSteps) {} //addSteps: add points to get a staircase effect or connect points via a direct line
virtual Opt<CurvePoint> getLessEq (double x) const = 0;
virtual Opt<CurvePoint> getGreaterEq(double x) const = 0;
private:
std::vector<CurvePoint> getPoints(double minX, double maxX, const wxSize& areaSizePx) const override;
const bool addSteps_;
};
struct ArrayCurveData : public SparseCurveData
{
virtual double getValue(size_t pos) const = 0;
virtual size_t getSize () const = 0;
private:
std::pair<double, double> getRangeX() const override { const size_t sz = getSize(); return { 0.0, sz == 0 ? 0.0 : sz - 1.0}; }
Opt<CurvePoint> getLessEq(double x) const override
{
const size_t sz = getSize();
const size_t pos = std::min<ptrdiff_t>(std::floor(x), sz - 1); //[!] expect unsigned underflow if empty!
if (pos < sz)
return CurvePoint(pos, getValue(pos));
return NoValue();
}
Opt<CurvePoint> getGreaterEq(double x) const override
{
const size_t pos = std::max<ptrdiff_t>(std::ceil(x), 0); //[!] use std::max with signed type!
if (pos < getSize())
return CurvePoint(pos, getValue(pos));
return NoValue();
}
};
struct VectorCurveData : public ArrayCurveData
{
std::vector<double>& refData() { return data; }
private:
double getValue(size_t pos) const override { return pos < data.size() ? data[pos] : 0; }
size_t getSize() const override { return data.size(); }
std::vector<double> data;
};
//------------------------------------------------------------------------------------------------------------
struct LabelFormatter
{
virtual ~LabelFormatter() {}
//determine convenient graph label block size in unit of data: usually some small deviation on "sizeProposed"
virtual double getOptimalBlockSize(double sizeProposed) const = 0;
//create human-readable text for x or y-axis position
virtual wxString formatText(double value, double optimalBlockSize) const = 0;
};
double nextNiceNumber(double blockSize); //round to next number which is convenient to read, e.g. 2.13 -> 2; 2.7 -> 2.5
struct DecimalNumberFormatter : public LabelFormatter
{
double getOptimalBlockSize(double sizeProposed ) const override { return nextNiceNumber(sizeProposed); }
wxString formatText (double value, double optimalBlockSize) const override { return zen::numberTo<wxString>(value); }
};
//------------------------------------------------------------------------------------------------------------
//emit data selection event
//Usage: wnd.Connect(wxEVT_GRAPH_SELECTION, GraphSelectEventHandler(MyDlg::OnGraphSelection), nullptr, this);
// void MyDlg::OnGraphSelection(GraphSelectEvent& event);
extern const wxEventType wxEVT_GRAPH_SELECTION;
struct SelectionBlock
{
CurvePoint from;
CurvePoint to;
};
class GraphSelectEvent : public wxCommandEvent
{
public:
GraphSelectEvent(const SelectionBlock& selBlock) : wxCommandEvent(wxEVT_GRAPH_SELECTION), selBlock_(selBlock) {}
wxEvent* Clone() const override { return new GraphSelectEvent(selBlock_); }
SelectionBlock getSelection() { return selBlock_; }
private:
SelectionBlock selBlock_;
};
using GraphSelectEventFunction = void (wxEvtHandler::*)(GraphSelectEvent&);
#define GraphSelectEventHandler(func) \
(wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(GraphSelectEventFunction, &func)
//------------------------------------------------------------------------------------------------------------
class Graph2D : public wxPanel
{
public:
Graph2D(wxWindow* parent,
wxWindowID winid = wxID_ANY,
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize,
long style = wxTAB_TRAVERSAL | wxNO_BORDER,
const wxString& name = wxPanelNameStr);
class CurveAttributes
{
public:
CurveAttributes() {} //required by GCC
CurveAttributes& setColor (const wxColor& col) { color = col; autoColor = false; return *this; }
CurveAttributes& fillCurveArea (const wxColor& col) { fillColor = col; fillMode = FILL_CURVE; return *this; }
CurveAttributes& fillPolygonArea(const wxColor& col) { fillColor = col; fillMode = FILL_POLYGON; return *this; }
CurveAttributes& setLineWidth(size_t width) { lineWidth = static_cast<int>(width); return *this; }
private:
friend class Graph2D;
bool autoColor = true;
wxColor color;
enum FillMode
{
FILL_NONE,
FILL_CURVE,
FILL_POLYGON
};
FillMode fillMode = FILL_NONE;
wxColor fillColor;
int lineWidth = 2;
};
void setCurve(const std::shared_ptr<CurveData>& data, const CurveAttributes& ca = CurveAttributes());
void addCurve(const std::shared_ptr<CurveData>& data, const CurveAttributes& ca = CurveAttributes());
static wxColor getBorderColor() { return { 130, 135, 144 }; } //medium grey, the same Win7 uses for other frame borders => not accessible! but no big deal...
enum PosLabelY
{
LABEL_Y_LEFT,
LABEL_Y_RIGHT,
LABEL_Y_NONE
};
enum PosLabelX
{
LABEL_X_TOP,
LABEL_X_BOTTOM,
LABEL_X_NONE
};
enum PosCorner
{
CORNER_TOP_LEFT,
CORNER_TOP_RIGHT,
CORNER_BOTTOM_LEFT,
CORNER_BOTTOM_RIGHT,
};
enum SelMode
{
SELECT_NONE,
SELECT_RECTANGLE,
SELECT_X_AXIS,
SELECT_Y_AXIS,
};
class MainAttributes
{
public:
MainAttributes& setMinX(double newMinX) { minX = newMinX; minXauto = false; return *this; }
MainAttributes& setMaxX(double newMaxX) { maxX = newMaxX; maxXauto = false; return *this; }
MainAttributes& setMinY(double newMinY) { minY = newMinY; minYauto = false; return *this; }
MainAttributes& setMaxY(double newMaxY) { maxY = newMaxY; maxYauto = false; return *this; }
MainAttributes& setAutoSize() { minXauto = maxXauto = minYauto = maxYauto = true; return *this; }
MainAttributes& setLabelX(PosLabelX posX, size_t height = 25, std::shared_ptr<LabelFormatter> newLabelFmt = std::make_shared<DecimalNumberFormatter>())
{
labelposX = posX;
xLabelHeight = static_cast<int>(height);
labelFmtX = newLabelFmt;
return *this;
}
MainAttributes& setLabelY(PosLabelY posY, size_t width = 60, std::shared_ptr<LabelFormatter> newLabelFmt = std::make_shared<DecimalNumberFormatter>())
{
labelposY = posY;
yLabelWidth = static_cast<int>(width);
labelFmtY = newLabelFmt;
return *this;
}
MainAttributes& setCornerText(const wxString& txt, PosCorner pos) { cornerTexts[pos] = txt; return *this; }
MainAttributes& setBackgroundColor(const wxColor& col) { backgroundColor = col; return *this; }
MainAttributes& setSelectionMode(SelMode mode) { mouseSelMode = mode; return *this; }
private:
friend class Graph2D;
bool minXauto = true; //autodetect range for X value
bool maxXauto = true;
double minX = 0; //x-range to visualize
double maxX = 0; //
bool minYauto = true; //autodetect range for Y value
bool maxYauto = true;
double minY = 0; //y-range to visualize
double maxY = 0; //
PosLabelX labelposX = LABEL_X_BOTTOM;
int xLabelHeight = 25;
std::shared_ptr<LabelFormatter> labelFmtX = std::make_shared<DecimalNumberFormatter>();
PosLabelY labelposY = LABEL_Y_LEFT;
int yLabelWidth = 60;
std::shared_ptr<LabelFormatter> labelFmtY = std::make_shared<DecimalNumberFormatter>();
std::map<PosCorner, wxString> cornerTexts;
wxColor backgroundColor = wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW);
SelMode mouseSelMode = SELECT_RECTANGLE;
};
void setAttributes(const MainAttributes& newAttr) { attr_ = newAttr; Refresh(); }
MainAttributes getAttributes() const { return attr_; }
std::vector<SelectionBlock> getSelections() const { return oldSel_; }
void setSelections(const std::vector<SelectionBlock>& sel)
{
oldSel_ = sel;
activeSel_.reset();
Refresh();
}
void clearSelection() { oldSel_.clear(); Refresh(); }
private:
void OnMouseLeftDown(wxMouseEvent& event);
void OnMouseMovement(wxMouseEvent& event);
void OnMouseLeftUp (wxMouseEvent& event);
void OnMouseCaptureLost(wxMouseCaptureLostEvent& event);
void onPaintEvent(wxPaintEvent& event);
void onSizeEvent(wxSizeEvent& event) { Refresh(); event.Skip(); }
void onEraseBackGround(wxEraseEvent& event) {}
void render(wxDC& dc) const;
class MouseSelection
{
public:
MouseSelection(wxWindow& wnd, const wxPoint& posDragStart) : wnd_(wnd), posDragStart_(posDragStart), posDragCurrent(posDragStart) { wnd_.CaptureMouse(); }
~MouseSelection() { if (wnd_.HasCapture()) wnd_.ReleaseMouse(); }
wxPoint getStartPos() const { return posDragStart_; }
wxPoint& refCurrentPos() { return posDragCurrent; }
SelectionBlock& refSelection() { return selBlock; } //updated in Graph2d::render(): this is fine, since only what's shown is selected!
private:
wxWindow& wnd_;
const wxPoint posDragStart_;
wxPoint posDragCurrent;
SelectionBlock selBlock;
};
std::vector<SelectionBlock> oldSel_; //applied selections
std::shared_ptr<MouseSelection> activeSel_; //set during mouse selection
MainAttributes attr_; //global attributes
Opt<wxBitmap> doubleBuffer_;
using CurveList = std::vector<std::pair<std::shared_ptr<CurveData>, CurveAttributes>>;
CurveList curves_;
//perf!!! generating the font is *very* expensive! don't do this repeatedly in Graph2D::render()!
const wxFont labelFont_ { wxNORMAL_FONT->GetPointSize(), wxFONTFAMILY_DEFAULT, wxFONTSTYLE_NORMAL, wxFONTWEIGHT_NORMAL, false, L"Arial" };
};
}
#endif //GRAPH_H_234425245936567345799
|