-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathImageButton.cpp
317 lines (266 loc) · 9.14 KB
/
ImageButton.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
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
//
// Copyright (C) Wojciech Jarosz <wjarosz@gmail.com>. All rights reserved.
// Use of this source code is governed by a BSD-style license that can
// be found in the LICENSE.txt file.
//
// This file is adapted from tev:
// This file was developed by Thomas Müller <thomas94@gmx.net>.
// It is published under the BSD 3-Clause License within the LICENSE file.
#include "ImageButton.h"
#include <nanogui/opengl.h>
#include <nanogui/entypo.h>
#include <nanogui/theme.h>
#include <iostream>
#include <spdlog/fmt/ostr.h>
using namespace nanogui;
using namespace std;
ImageButton::ImageButton(Widget *parent, const string &caption)
: Widget (parent), m_caption(caption)
{
mFontSize = 15;
}
void ImageButton::recomputeStringClipping()
{
m_cutoff = 0;
m_sizeForWhichCutoffWasComputed = Eigen::Vector2i::Constant(0);
}
Vector2i ImageButton::preferredSize(NVGcontext *ctx) const
{
// calculate size of the image iD number
nvgFontFace(ctx, "sans-bold");
nvgFontSize(ctx, mFontSize);
string idString = to_string(m_id);
float idSize = nvgTextBounds(ctx, 0, 0, idString.c_str(), nullptr, nullptr);
// calculate space for isModified icon
nvgFontFace(ctx, "icons");
nvgFontSize(ctx, mFontSize * 1.5f);
float iw = nvgTextBounds(ctx, 0, 0, utf8(ENTYPO_ICON_PENCIL).data(), nullptr, nullptr);
// calculate size of the filename
nvgFontFace(ctx, "sans");
nvgFontSize(ctx, mFontSize);
float tw = nvgTextBounds(ctx, 0, 0, m_caption.c_str(), nullptr, nullptr);
return Vector2i(static_cast<int>(tw + iw + idSize) + 15, mFontSize + 6);
}
bool ImageButton::mouseButtonEvent(const Vector2i &p, int button, bool down, int modifiers)
{
Widget::mouseButtonEvent(p, button, down, modifiers);
if (!mEnabled || !down)
{
return false;
}
if (button == GLFW_MOUSE_BUTTON_2 ||
(button == GLFW_MOUSE_BUTTON_1 && modifiers & GLFW_MOD_SHIFT))
{
// If we already were the reference, then let's disable using us a reference.
m_isReference = !m_isReference;
// If we newly became the reference, then we need to disable the existing reference
// if it exists.
if (m_isReference)
{
for (auto widget : parent()->children())
{
ImageButton* b = dynamic_cast<ImageButton*>(widget);
if (b && b != this)
b->m_isReference = false;
}
}
// Invoke the callback in any case, such that the surrounding code can
// react to new references or a loss of a reference image.
if (m_referenceCallback)
m_referenceCallback(m_isReference ? m_id : -1);
return true;
}
else if (button == GLFW_MOUSE_BUTTON_1)
{
if (!m_isSelected)
{
// Unselect the other, currently selected image.
for (auto widget : parent()->children())
{
ImageButton *b = dynamic_cast<ImageButton *>(widget);
if (b && b != this)
b->m_isSelected = false;
}
m_isSelected = true;
if (m_selectedCallback)
m_selectedCallback(m_id);
}
return true;
}
return false;
}
string ImageButton::highlighted() const
{
vector<string> pieces;
if (m_highlightBegin <= 0)
{
if (m_highlightEnd <= 0)
pieces.emplace_back(m_caption);
else
{
size_t offset = m_highlightEnd;
pieces.emplace_back(m_caption.substr(offset));
pieces.emplace_back(m_caption.substr(0, offset));
}
}
else
{
size_t beginOffset = m_highlightBegin;
size_t endOffset = m_highlightEnd;
pieces.emplace_back(m_caption.substr(endOffset));
pieces.emplace_back(m_caption.substr(beginOffset, endOffset - beginOffset));
pieces.emplace_back(m_caption.substr(0, beginOffset));
}
return pieces.size() > 1 ? pieces[1] : "";
}
static float triangleWave(float t, float period = 1.f)
{
float a = period/2.f;
return fabs(2 * (t/a - floor(t/a + 0.5f)));
}
void ImageButton::draw(NVGcontext *ctx)
{
Widget::draw(ctx);
int extraBorder = 0;
if (m_isReference)
{
extraBorder = 2;
nvgBeginPath(ctx);
nvgRoundedRect(ctx, mPos.x(), mPos.y(), mSize.x(), mSize.y(), 3+1);
nvgFillColor(ctx, Color(0.7f, 0.4f, 0.4f, 1.0f));
nvgFill(ctx);
}
// Fill the button with color.
if (m_isSelected || mMouseFocus)
{
nvgBeginPath(ctx);
nvgRoundedRect(ctx, mPos.x() + extraBorder, mPos.y() + extraBorder,
mSize.x() - 2*extraBorder, mSize.y() - 2*extraBorder, 3);
nvgFillColor(ctx, m_isSelected ? mTheme->mButtonGradientBotPushed : mTheme->mBorderMedium);
nvgFill(ctx);
}
// percent progress bar
if (m_progress >= 0.f && m_progress < 1.f)
{
int barPos = (int) std::round((mSize.x() - 4) * m_progress);
auto paint = nvgBoxGradient(
ctx, mPos.x() + 2 - 1, mPos.y() + 2 -1,
barPos + 1.5f, mSize.y() - 2*extraBorder + 1, 3, 4,
Color(.14f, .31f, .5f, .95f), Color(.045f, .05f, .141f, .95f));
nvgBeginPath(ctx);
nvgRoundedRect(ctx, mPos.x() + 2, mPos.y() + 2,
barPos, mSize.y() - 2*2, 3);
nvgFillPaint(ctx, paint);
nvgFill(ctx);
}
// busy progress bar
else if (m_progress < 0.f)
{
int leftEdge = mPos.x() + 2;
float time = glfwGetTime();
float anim1 = smoothStep(0.0f, 1.0f, smoothStep(0.0f, 1.0f, smoothStep(0.0f, 1.0f, triangleWave(time/4.f))));
float anim2 = smoothStep(0.0f, 1.0f, triangleWave(time/4.f*2.f));
int barSize = (int) std::round(lerp(float(mSize.x() - 4) * 0.05f, float(mSize.x() - 4) * 0.25f, anim2));
int left = (int) std::round(lerp((float)leftEdge, float(mSize.x() - 2 - barSize), anim1));
auto paint = nvgBoxGradient(
ctx, left - 1, mPos.y() + 2 -1,
barSize + 1.5f, mSize.y() - 2*extraBorder + 1, 3, 4,
Color(.14f, .31f, .5f, .95f), Color(.045f, .05f, .141f, .95f));
nvgBeginPath(ctx);
nvgRoundedRect(ctx, left, mPos.y() + 2,
barSize, mSize.y() - 2*2, 3);
nvgFillPaint(ctx, paint);
nvgFill(ctx);
}
nvgFontSize(ctx, mFontSize);
nvgFontFace(ctx, "sans-bold");
string idString = to_string(m_id);
float idSize = nvgTextBounds(ctx, 0, 0, idString.c_str(), nullptr, nullptr);
nvgFontSize(ctx, mFontSize * 1.5f);
nvgFontFace(ctx, "icons");
float iconSize = nvgTextBounds(ctx, 0, 0, utf8(ENTYPO_ICON_PENCIL).data(), nullptr, nullptr);
nvgFontSize(ctx, mFontSize);
nvgFontFace(ctx, m_isSelected ? "sans-bold" : "sans");
// trim caption to available space
if (mSize.x() == preferredSize(ctx).x())
m_cutoff = 0;
else if (mSize != m_sizeForWhichCutoffWasComputed)
{
m_cutoff = 0;
while (nvgTextBounds(ctx, 0, 0, m_caption.substr(m_cutoff).c_str(), nullptr, nullptr) > mSize.x() - 15 - idSize - iconSize)
++m_cutoff;
m_sizeForWhichCutoffWasComputed = mSize;
}
// Image name
string trimmedCaption = m_caption.substr(m_cutoff);
vector<string> pieces;
if (m_highlightBegin <= m_cutoff)
{
if (m_highlightEnd <= m_cutoff)
pieces.emplace_back(trimmedCaption);
else
{
size_t offset = m_highlightEnd - m_cutoff;
pieces.emplace_back(trimmedCaption.substr(offset));
pieces.emplace_back(trimmedCaption.substr(0, offset));
}
}
else
{
size_t beginOffset = m_highlightBegin - m_cutoff;
size_t endOffset = m_highlightEnd - m_cutoff;
pieces.emplace_back(trimmedCaption.substr(endOffset));
pieces.emplace_back(trimmedCaption.substr(beginOffset, endOffset - beginOffset));
pieces.emplace_back(trimmedCaption.substr(0, beginOffset));
}
if (m_cutoff > 0 && m_cutoff < m_caption.size())
pieces.back() = string{"…"} + pieces.back();
Vector2f center = mPos.cast<float>() + mSize.cast<float>() * 0.5f;
Vector2f bottomRight = mPos.cast<float>() + mSize.cast<float>();
Vector2f textPos(bottomRight.x() - 5, center.y());
NVGcolor regularTextColor = (m_isSelected || m_isReference || mMouseFocus) ? mTheme->mTextColor : Color(190, 100);
NVGcolor hightlightedTextColor = Color(190, 255);
nvgFontSize(ctx, mFontSize);
nvgTextAlign(ctx, NVG_ALIGN_RIGHT | NVG_ALIGN_MIDDLE);
for (size_t i = 0; i < pieces.size(); ++i)
{
nvgFontFace(ctx, i == 1 ? "sans-bold" : "sans");
nvgFillColor(ctx, i == 1 ? hightlightedTextColor : regularTextColor);
nvgText(ctx, textPos.x(), textPos.y(), pieces[i].c_str(), nullptr);
textPos.x() -= nvgTextBounds(ctx, 0, 0, pieces[i].c_str(), nullptr, nullptr);
}
// isModified icon
auto icon = utf8(m_isModified ? ENTYPO_ICON_PENCIL : ENTYPO_ICON_SAVE);
nvgFontSize(ctx, mFontSize * 0.8f);
nvgFontFace(ctx, "icons");
nvgFillColor(ctx, mTheme->mTextColor);
nvgTextAlign(ctx, NVG_ALIGN_LEFT | NVG_ALIGN_MIDDLE);
nvgText(ctx, mPos.x() + 5, textPos.y(), icon.data(), nullptr);
// Image number
nvgFontSize(ctx, mFontSize);
nvgFontFace(ctx, "sans-bold");
nvgTextAlign(ctx, NVG_ALIGN_LEFT | NVG_ALIGN_MIDDLE);
nvgFillColor(ctx, mTheme->mTextColor);
nvgText(ctx, mPos.x() + 20, textPos.y(), idString.c_str(), nullptr);
}
void ImageButton::setHighlightRange(size_t begin, size_t end)
{
size_t beginIndex = begin;
if (end > m_caption.size())
{
throw std::invalid_argument{fmt::format(
"end ({:d}) must not be larger than m_caption.size() ({:d})",
end, m_caption.size())};
}
m_highlightBegin = beginIndex;
m_highlightEnd = max(m_caption.size() - end, beginIndex);
if (m_highlightBegin == m_highlightEnd || m_caption.empty())
return;
// Extend beginning and ending of highlighted region to entire word/number
if (isalnum(m_caption[m_highlightBegin]))
while (m_highlightBegin > 0 && isalnum(m_caption[m_highlightBegin - 1]))
--m_highlightBegin;
if (isalnum(m_caption[m_highlightEnd - 1]))
while (m_highlightEnd < m_caption.size() && isalnum(m_caption[m_highlightEnd]))
++m_highlightEnd;
}