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
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
|
#include "cru/ui/render/ScrollBar.hpp"
#include "../Helper.hpp"
#include "cru/common/Base.hpp"
#include "cru/platform/GraphBase.hpp"
#include "cru/platform/graphics/Factory.hpp"
#include "cru/platform/graphics/Geometry.hpp"
#include "cru/platform/graphics/Painter.hpp"
#include "cru/platform/graphics/util/Painter.hpp"
#include "cru/platform/gui/Base.hpp"
#include "cru/platform/gui/Cursor.hpp"
#include "cru/ui/Base.hpp"
#include "cru/ui/ThemeManager.hpp"
#include "cru/ui/UiManager.hpp"
#include "cru/ui/events/UiEvent.hpp"
#include "cru/ui/helper/ClickDetector.hpp"
#include "cru/ui/host/WindowHost.hpp"
#include "cru/ui/render/ScrollRenderObject.hpp"
#include <algorithm>
#include <cassert>
#include <chrono>
#include <gsl/pointers>
#include <memory>
#include <optional>
#include <stdexcept>
#include <string>
namespace cru::ui::render {
using namespace std::chrono_literals;
constexpr float kScrollBarCollapseThumbWidth = 3;
constexpr float kScrollBarCollapsedTriggerExpandAreaWidth = 7;
constexpr float kScrollBarExpandWidth = 14;
constexpr float kScrollBarArrowHeight = 4;
constexpr auto kScrollBarAutoCollapseDelay = 1500ms;
constexpr std::array<ScrollBarAreaKind, 5> kScrollBarAreaKindList{
ScrollBarAreaKind::UpArrow, ScrollBarAreaKind::DownArrow,
ScrollBarAreaKind::UpSlot, ScrollBarAreaKind::DownSlot,
ScrollBarAreaKind::Thumb};
std::u16string GenerateScrollBarThemeColorKey(ScrollBarBrushUsageKind usage,
ScrollBarBrushStateKind state) {
std::u16string result = u"scrollbar.";
switch (usage) {
case ScrollBarBrushUsageKind::Arrow:
result.append(u"arrow");
break;
case ScrollBarBrushUsageKind::ArrowBackground:
result.append(u"arrow-background");
break;
case ScrollBarBrushUsageKind::Slot:
result.append(u"slot");
break;
case ScrollBarBrushUsageKind::Thumb:
result.append(u"thumb");
break;
}
result.push_back(u'.');
switch (state) {
case ScrollBarBrushStateKind::Normal:
result.append(u"normal");
break;
case ScrollBarBrushStateKind::Hover:
result.append(u"hover");
break;
case ScrollBarBrushStateKind::Press:
result.append(u"press");
break;
case ScrollBarBrushStateKind::Disable:
result.append(u"disable");
break;
}
result.append(u".color");
return result;
}
namespace {
std::unique_ptr<platform::graphics::IGeometry> CreateScrollBarArrowGeometry() {
auto geometry_builder = GetGraphFactory()->CreateGeometryBuilder();
geometry_builder->BeginFigure({-kScrollBarArrowHeight / 2, 0});
geometry_builder->LineTo({kScrollBarArrowHeight / 2, kScrollBarArrowHeight});
geometry_builder->LineTo({kScrollBarArrowHeight / 2, -kScrollBarArrowHeight});
geometry_builder->CloseFigure(true);
return geometry_builder->Build();
}
} // namespace
ScrollBar::ScrollBar(gsl::not_null<ScrollRenderObject*> render_object,
Direction direction)
: render_object_(render_object), direction_(direction) {
arrow_geometry_ = CreateScrollBarArrowGeometry();
}
ScrollBar::~ScrollBar() { RestoreCursor(); }
void ScrollBar::SetEnabled(bool value) {
if (value == is_enabled_) return;
if (!value) {
SetExpanded(false);
if (move_thumb_start_) {
if (const auto control = this->render_object_->GetAttachedControl()) {
control->ReleaseMouse();
}
move_thumb_start_ = std::nullopt;
}
}
}
void ScrollBar::SetExpanded(bool value) {
if (is_expanded_ == value) return;
is_expanded_ = value;
render_object_->InvalidatePaint();
}
void ScrollBar::Draw(platform::graphics::IPainter* painter) {
if (is_enabled_) {
OnDraw(painter, is_expanded_);
}
}
void ScrollBar::InstallHandlers(controls::Control* control) {
event_guard_.Clear();
if (control != nullptr) {
event_guard_ +=
control->MouseDownEvent()->Tunnel()->PrependShortCircuitHandler(
[control, this](event::MouseButtonEventArgs& event) {
if (event.GetButton() == mouse_buttons::left && IsEnabled() &&
IsExpanded()) {
auto hit_test_result =
ExpandedHitTest(event.GetPoint(render_object_));
if (!hit_test_result) return false;
if (mouse_press_ != hit_test_result) {
mouse_press_ = hit_test_result;
render_object_->InvalidatePaint();
}
switch (*hit_test_result) {
case ScrollBarAreaKind::UpArrow:
this->scroll_attempt_event_.Raise(
{GetDirection(), ScrollKind::Line, -1});
event.SetHandled();
return true;
case ScrollBarAreaKind::DownArrow:
this->scroll_attempt_event_.Raise(
{GetDirection(), ScrollKind::Line, 1});
event.SetHandled();
return true;
case ScrollBarAreaKind::UpSlot:
this->scroll_attempt_event_.Raise(
{GetDirection(), ScrollKind::Page, -1});
event.SetHandled();
return true;
case ScrollBarAreaKind::DownSlot:
this->scroll_attempt_event_.Raise(
{GetDirection(), ScrollKind::Page, 1});
event.SetHandled();
return true;
case ScrollBarAreaKind::Thumb: {
auto thumb_rect =
GetExpandedAreaRect(ScrollBarAreaKind::Thumb);
assert(thumb_rect);
if (!control->CaptureMouse()) break;
move_thumb_thumb_original_rect_ = *thumb_rect;
move_thumb_start_ = event.GetPoint();
event.SetHandled();
return true;
}
default:
break;
}
}
return false;
});
event_guard_ +=
control->MouseUpEvent()->Tunnel()->PrependShortCircuitHandler(
[control, this](event::MouseButtonEventArgs& event) {
if (mouse_press_ != std::nullopt) {
mouse_press_ = std::nullopt;
render_object_->InvalidatePaint();
}
if (event.GetButton() == mouse_buttons::left &&
move_thumb_start_) {
move_thumb_start_ = std::nullopt;
auto hit_test_result =
ExpandedHitTest(event.GetPoint(this->render_object_));
if (!hit_test_result) {
OnMouseLeave();
}
control->ReleaseMouse();
event.SetHandled();
return true;
}
return false;
});
event_guard_ +=
control->MouseMoveEvent()->Tunnel()->PrependShortCircuitHandler(
[this](event::MouseEventArgs& event) {
if (move_thumb_start_) {
auto new_scroll_position = CalculateNewScrollPosition(
move_thumb_thumb_original_rect_,
event.GetPoint() - *move_thumb_start_);
this->scroll_attempt_event_.Raise({GetDirection(),
ScrollKind::Absolute,
new_scroll_position});
event.SetHandled();
return true;
}
if (IsEnabled()) {
if (IsExpanded()) {
auto hit_test_result =
ExpandedHitTest(event.GetPoint(this->render_object_));
if (mouse_hover_ != hit_test_result) {
mouse_hover_ = hit_test_result;
render_object_->InvalidatePaint();
}
if (hit_test_result) {
SetCursor();
StopAutoCollapseTimer();
} else {
OnMouseLeave();
}
} else {
auto trigger_expand_area =
GetCollapsedTriggerExpandAreaRect();
if (trigger_expand_area &&
trigger_expand_area->IsPointInside(
event.GetPoint(this->render_object_))) {
SetExpanded(true);
SetCursor();
event.SetHandled();
return true;
}
}
}
return false;
});
event_guard_ +=
control->MouseLeaveEvent()->Tunnel()->PrependShortCircuitHandler(
[this](event::MouseEventArgs&) {
if (IsExpanded() && !move_thumb_start_) {
if (mouse_hover_ != std::nullopt) {
mouse_hover_ = std::nullopt;
render_object_->InvalidatePaint();
}
OnMouseLeave();
}
return false;
});
}
}
gsl::not_null<std::shared_ptr<platform::graphics::IBrush>>
ScrollBar::GetCollapsedThumbBrush() {
return collapsed_thumb_brush_ ? gsl::not_null(collapsed_thumb_brush_)
: ThemeManager::GetInstance()->GetBrush(
u"scrollbar.collapse-thumb.color");
}
void ScrollBar::SetCollapsedThumbBrush(
std::shared_ptr<platform::graphics::IBrush> brush) {
if (brush == collapsed_thumb_brush_) return;
collapsed_thumb_brush_ = std::move(brush);
render_object_->InvalidatePaint();
}
gsl::not_null<std::shared_ptr<platform::graphics::IBrush>> ScrollBar::GetBrush(
ScrollBarBrushUsageKind usage, ScrollBarBrushStateKind state) {
auto b = brushes_[usage][state];
return b ? gsl::not_null(b)
: ThemeManager::GetInstance()->GetBrush(
GenerateScrollBarThemeColorKey(usage, state));
}
// Brush could be nullptr to use the theme brush.
void ScrollBar::SetBrush(ScrollBarBrushUsageKind usage,
ScrollBarBrushStateKind state,
std::shared_ptr<platform::graphics::IBrush> brush) {
if (brushes_[usage][state] == brush) return;
brushes_[usage][state] = std::move(brush);
render_object_->InvalidatePaint();
}
void ScrollBar::OnDraw(platform::graphics::IPainter* painter,
bool is_expanded) {
if (is_expanded) {
auto thumb_rect = GetExpandedAreaRect(ScrollBarAreaKind::Thumb);
if (thumb_rect) {
auto thumb_state = GetState(ScrollBarAreaKind::Thumb);
painter->FillRectangle(
*thumb_rect,
GetBrush(ScrollBarBrushUsageKind::Thumb, thumb_state).get().get());
}
auto up_slot_rect = GetExpandedAreaRect(ScrollBarAreaKind::UpSlot);
auto up_slot_state = GetState(ScrollBarAreaKind::UpSlot);
if (up_slot_rect)
painter->FillRectangle(
*up_slot_rect,
GetBrush(ScrollBarBrushUsageKind::Slot, up_slot_state).get().get());
auto down_slot_rect = GetExpandedAreaRect(ScrollBarAreaKind::DownSlot);
auto down_slot_state = GetState(ScrollBarAreaKind::DownSlot);
if (down_slot_rect)
painter->FillRectangle(
*down_slot_rect,
GetBrush(ScrollBarBrushUsageKind::Slot, down_slot_state).get().get());
auto up_arrow_rect = GetExpandedAreaRect(ScrollBarAreaKind::UpArrow);
auto up_arrow_state = GetState(ScrollBarAreaKind::UpArrow);
if (up_arrow_rect)
this->DrawUpArrow(
painter, *up_arrow_rect,
GetBrush(ScrollBarBrushUsageKind::Arrow, up_arrow_state).get().get(),
GetBrush(ScrollBarBrushUsageKind::ArrowBackground, up_arrow_state)
.get()
.get());
auto down_arrow_rect = GetExpandedAreaRect(ScrollBarAreaKind::DownArrow);
auto down_arrow_state = GetState(ScrollBarAreaKind::DownArrow);
if (down_arrow_rect)
this->DrawDownArrow(
painter, *down_arrow_rect,
GetBrush(ScrollBarBrushUsageKind::Arrow, down_arrow_state)
.get()
.get(),
GetBrush(ScrollBarBrushUsageKind::ArrowBackground, down_arrow_state)
.get()
.get());
} else {
auto optional_rect = GetCollapsedThumbRect();
if (optional_rect) {
painter->FillRectangle(*optional_rect,
GetCollapsedThumbBrush().get().get());
}
}
}
void ScrollBar::SetCursor() {
if (const auto control = render_object_->GetAttachedControl()) {
if (const auto window_host = control->GetWindowHost()) {
window_host->SetOverrideCursor(
GetUiApplication()->GetCursorManager()->GetSystemCursor(
platform::gui::SystemCursorType::Arrow));
cursor_overrided_ = true;
}
}
}
void ScrollBar::RestoreCursor() {
if (cursor_overrided_) {
if (const auto control = render_object_->GetAttachedControl()) {
if (const auto window_host = control->GetWindowHost()) {
window_host->SetOverrideCursor(nullptr);
}
}
cursor_overrided_ = false;
}
}
void ScrollBar::BeginAutoCollapseTimer() {
if (!auto_collapse_timer_canceler_ && IsExpanded()) {
auto_collapse_timer_canceler_ = GetUiApplication()->SetTimeout(
kScrollBarAutoCollapseDelay, [this] { this->SetExpanded(false); });
}
}
void ScrollBar::StopAutoCollapseTimer() {
auto_collapse_timer_canceler_.Reset();
}
void ScrollBar::OnMouseLeave() {
RestoreCursor();
BeginAutoCollapseTimer();
}
std::optional<ScrollBarAreaKind> ScrollBar::ExpandedHitTest(
const Point& point) {
for (auto kind : kScrollBarAreaKindList) {
auto rect = this->GetExpandedAreaRect(kind);
if (rect) {
if (rect->IsPointInside(point)) return kind;
}
}
return std::nullopt;
}
ScrollBarBrushStateKind ScrollBar::GetState(ScrollBarAreaKind area) {
if (area == ScrollBarAreaKind::UpArrow) {
if (!CanScrollUp()) return ScrollBarBrushStateKind::Disable;
}
if (area == ScrollBarAreaKind::DownArrow) {
if (!CanScrollDown()) return ScrollBarBrushStateKind::Disable;
}
if (mouse_hover_ == area) {
if (mouse_press_ == area) {
return ScrollBarBrushStateKind::Press;
} else {
return ScrollBarBrushStateKind::Hover;
}
} else {
return ScrollBarBrushStateKind::Normal;
}
}
HorizontalScrollBar::HorizontalScrollBar(
gsl::not_null<ScrollRenderObject*> render_object)
: ScrollBar(render_object, Direction::Horizontal) {}
void HorizontalScrollBar::DrawUpArrow(
platform::graphics::IPainter* painter, const Rect& area,
gsl::not_null<platform::graphics::IBrush*> arrow_brush,
gsl::not_null<platform::graphics::IBrush*> background_brush) {
painter->FillRectangle(area, background_brush.get());
platform::graphics::util::WithTransform(
painter, Matrix::Translation(area.GetCenter()),
[this, arrow_brush](platform::graphics::IPainter* painter) {
painter->FillGeometry(arrow_geometry_.get(), arrow_brush.get());
});
}
void HorizontalScrollBar::DrawDownArrow(
platform::graphics::IPainter* painter, const Rect& area,
gsl::not_null<platform::graphics::IBrush*> arrow_brush,
gsl::not_null<platform::graphics::IBrush*> background_brush) {
painter->FillRectangle(area, background_brush.get());
platform::graphics::util::WithTransform(
painter, Matrix::Rotation(180) * Matrix::Translation(area.GetCenter()),
[this, arrow_brush](platform::graphics::IPainter* painter) {
painter->FillGeometry(arrow_geometry_.get(), arrow_brush.get());
});
}
bool HorizontalScrollBar::IsShowBar() {
const auto child = render_object_->GetFirstChild();
if (child == nullptr) return false;
const auto view_rect = render_object_->GetViewRect();
const auto child_size = child->GetSize();
if (view_rect.width >= child_size.width) return false;
return true;
}
std::optional<Rect> HorizontalScrollBar::GetExpandedAreaRect(
ScrollBarAreaKind area_kind) {
auto show = IsShowBar();
if (!show) return std::nullopt;
const auto padding_rect = render_object_->GetPaddingRect();
const auto child = render_object_->GetFirstChild();
const auto view_rect = render_object_->GetViewRect();
const auto child_size = child->GetSize();
const float start_percentage = view_rect.left / child_size.width;
const float length_percentage = view_rect.width / child_size.width;
const float end_percentage = start_percentage + length_percentage;
const float top = padding_rect.GetBottom() - kScrollBarExpandWidth;
const float height = kScrollBarExpandWidth;
// Without arrow.
const float bar_area_length = padding_rect.width - 3 * kScrollBarExpandWidth;
const float bar_area_start = padding_rect.left + kScrollBarExpandWidth;
switch (area_kind) {
case ScrollBarAreaKind::UpArrow:
return Rect{padding_rect.left, top, kScrollBarExpandWidth, height};
case ScrollBarAreaKind::DownArrow:
return Rect{padding_rect.GetRight() - 2 * kScrollBarExpandWidth, top,
kScrollBarExpandWidth, height};
case ScrollBarAreaKind::UpSlot:
return Rect{bar_area_start, top, bar_area_length * start_percentage,
height};
case ScrollBarAreaKind::DownSlot:
return Rect{bar_area_start + bar_area_length * end_percentage, top,
bar_area_length * (1 - end_percentage), height};
case ScrollBarAreaKind::Thumb:
return Rect{bar_area_start + bar_area_length * start_percentage, top,
bar_area_length * length_percentage, height};
default:
throw std::invalid_argument("Unsupported scroll area kind.");
}
}
std::optional<Rect> HorizontalScrollBar::GetCollapsedTriggerExpandAreaRect() {
auto show = IsShowBar();
if (!show) return std::nullopt;
const auto padding_rect = render_object_->GetPaddingRect();
return Rect{
padding_rect.left,
padding_rect.GetBottom() - kScrollBarCollapsedTriggerExpandAreaWidth,
padding_rect.width, kScrollBarCollapseThumbWidth};
}
std::optional<Rect> HorizontalScrollBar::GetCollapsedThumbRect() {
auto show = IsShowBar();
if (!show) return std::nullopt;
const auto child = render_object_->GetFirstChild();
const auto view_rect = render_object_->GetViewRect();
const auto child_size = child->GetSize();
const float start_percentage = view_rect.left / child_size.width;
const float length_percentage = view_rect.width / child_size.width;
// const float end_percentage = start_percentage + length_percentage;
const auto padding_rect = render_object_->GetPaddingRect();
return Rect{padding_rect.left + padding_rect.width * start_percentage,
padding_rect.GetBottom() - kScrollBarCollapseThumbWidth,
padding_rect.width * length_percentage,
kScrollBarCollapseThumbWidth};
}
float HorizontalScrollBar::CalculateNewScrollPosition(
const Rect& thumb_original_rect, const Point& mouse_offset) {
auto new_thumb_start = thumb_original_rect.left + mouse_offset.x;
const auto padding_rect = render_object_->GetPaddingRect();
auto scroll_area_start = padding_rect.left + kScrollBarExpandWidth;
auto scroll_area_end = padding_rect.GetRight() - 2 * kScrollBarExpandWidth;
auto thumb_head_end = scroll_area_end - thumb_original_rect.width;
const auto child = render_object_->GetFirstChild();
const auto child_size = child->GetSize();
new_thumb_start =
std::clamp(new_thumb_start, scroll_area_start, thumb_head_end);
auto offset = (new_thumb_start - scroll_area_start) /
(scroll_area_end - scroll_area_start) * child_size.width;
return offset;
}
bool HorizontalScrollBar::CanScrollUp() {
return render_object_->HorizontalCanScrollUp();
}
bool HorizontalScrollBar::CanScrollDown() {
return render_object_->HorizontalCanScrollDown();
}
VerticalScrollBar::VerticalScrollBar(
gsl::not_null<ScrollRenderObject*> render_object)
: ScrollBar(render_object, Direction::Vertical) {}
void VerticalScrollBar::DrawUpArrow(
platform::graphics::IPainter* painter, const Rect& area,
gsl::not_null<platform::graphics::IBrush*> arrow_brush,
gsl::not_null<platform::graphics::IBrush*> background_brush) {
painter->FillRectangle(area, background_brush.get());
platform::graphics::util::WithTransform(
painter, Matrix::Rotation(90) * Matrix::Translation(area.GetCenter()),
[this, arrow_brush](platform::graphics::IPainter* painter) {
painter->FillGeometry(arrow_geometry_.get(), arrow_brush.get());
});
}
void VerticalScrollBar::DrawDownArrow(
platform::graphics::IPainter* painter, const Rect& area,
gsl::not_null<platform::graphics::IBrush*> arrow_brush,
gsl::not_null<platform::graphics::IBrush*> background_brush) {
painter->FillRectangle(area, background_brush.get());
platform::graphics::util::WithTransform(
painter, Matrix::Rotation(270) * Matrix::Translation(area.GetCenter()),
[this, arrow_brush](platform::graphics::IPainter* painter) {
painter->FillGeometry(arrow_geometry_.get(), arrow_brush.get());
});
}
bool VerticalScrollBar::IsShowBar() {
const auto child = render_object_->GetFirstChild();
if (child == nullptr) return false;
const auto view_rect = render_object_->GetViewRect();
const auto child_size = child->GetSize();
if (view_rect.height >= child_size.height) return false;
return true;
}
std::optional<Rect> VerticalScrollBar::GetExpandedAreaRect(
ScrollBarAreaKind area_kind) {
auto show = IsShowBar();
if (!show) return std::nullopt;
const auto padding_rect = render_object_->GetPaddingRect();
const auto child = render_object_->GetFirstChild();
const auto view_rect = render_object_->GetViewRect();
const auto child_size = child->GetSize();
const float start_percentage = view_rect.top / child_size.height;
const float length_percentage = view_rect.height / child_size.height;
const float end_percentage = start_percentage + length_percentage;
const float left = padding_rect.GetRight() - kScrollBarExpandWidth;
const float width = kScrollBarExpandWidth;
// Without arrow.
const float bar_area_length = padding_rect.height - 3 * kScrollBarExpandWidth;
const float bar_area_start = padding_rect.top + kScrollBarExpandWidth;
switch (area_kind) {
case ScrollBarAreaKind::UpArrow:
return Rect{left, padding_rect.top, width, kScrollBarExpandWidth};
case ScrollBarAreaKind::DownArrow:
return Rect{left, padding_rect.GetBottom() - 2 * kScrollBarExpandWidth,
width, kScrollBarExpandWidth};
case ScrollBarAreaKind::UpSlot:
return Rect{left, bar_area_start, width,
bar_area_length * start_percentage};
case ScrollBarAreaKind::DownSlot:
return Rect{left, bar_area_start + bar_area_length * end_percentage,
width, bar_area_length * (1 - end_percentage)};
case ScrollBarAreaKind::Thumb:
return Rect{left, bar_area_start + bar_area_length * start_percentage,
width, bar_area_length * length_percentage};
default:
throw std::invalid_argument("Unsupported scroll area kind.");
}
}
std::optional<Rect> VerticalScrollBar::GetCollapsedTriggerExpandAreaRect() {
auto show = IsShowBar();
if (!show) return std::nullopt;
const auto padding_rect = render_object_->GetPaddingRect();
return Rect{
padding_rect.GetRight() - kScrollBarCollapsedTriggerExpandAreaWidth,
padding_rect.top, kScrollBarCollapseThumbWidth, padding_rect.height};
}
std::optional<Rect> VerticalScrollBar::GetCollapsedThumbRect() {
const auto child = render_object_->GetFirstChild();
if (child == nullptr) return std::nullopt;
const auto view_rect = render_object_->GetViewRect();
const auto padding_rect = render_object_->GetPaddingRect();
const auto child_size = child->GetSize();
if (view_rect.height >= child_size.height) return std::nullopt;
const float start_percentage = view_rect.top / child_size.height;
const float length_percentage = view_rect.height / child_size.height;
// const float end_percentage = start_percentage + length_percentage;
return Rect{padding_rect.GetRight() - kScrollBarCollapseThumbWidth,
padding_rect.top + padding_rect.height * start_percentage,
kScrollBarCollapseThumbWidth,
padding_rect.height * length_percentage};
}
float VerticalScrollBar::CalculateNewScrollPosition(
const Rect& thumb_original_rect, const Point& mouse_offset) {
auto new_thumb_start = thumb_original_rect.top + mouse_offset.y;
const auto padding_rect = render_object_->GetPaddingRect();
auto scroll_area_start = padding_rect.top + kScrollBarExpandWidth;
auto scroll_area_end = padding_rect.GetBottom() - 2 * kScrollBarExpandWidth;
auto thumb_head_end = scroll_area_end - thumb_original_rect.height;
const auto child = render_object_->GetFirstChild();
const auto child_size = child->GetSize();
new_thumb_start =
std::clamp(new_thumb_start, scroll_area_start, thumb_head_end);
auto offset = (new_thumb_start - scroll_area_start) /
(scroll_area_end - scroll_area_start) * child_size.height;
return offset;
}
bool VerticalScrollBar::CanScrollUp() {
return render_object_->VerticalCanScrollUp();
}
bool VerticalScrollBar::CanScrollDown() {
return render_object_->VerticalCanScrollDown();
}
ScrollBarDelegate::ScrollBarDelegate(
gsl::not_null<ScrollRenderObject*> render_object)
: render_object_(render_object),
horizontal_bar_(render_object),
vertical_bar_(render_object) {
horizontal_bar_.ScrollAttemptEvent()->AddHandler(
[this](auto scroll) { this->scroll_attempt_event_.Raise(scroll); });
vertical_bar_.ScrollAttemptEvent()->AddHandler(
[this](auto scroll) { this->scroll_attempt_event_.Raise(scroll); });
}
void ScrollBarDelegate::DrawScrollBar(platform::graphics::IPainter* painter) {
horizontal_bar_.Draw(painter);
vertical_bar_.Draw(painter);
}
void ScrollBarDelegate::InstallHandlers(controls::Control* control) {
horizontal_bar_.InstallHandlers(control);
vertical_bar_.InstallHandlers(control);
}
} // namespace cru::ui::render
|