-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathImageBrowser.cpp
More file actions
2962 lines (2604 loc) · 95.2 KB
/
Copy pathImageBrowser.cpp
File metadata and controls
2962 lines (2604 loc) · 95.2 KB
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
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#include "ImageBrowser.h"
#include "Version.h"
#include "CommonUtil.h"
#include "framework.h"
#include "Resource.h"
#include "ThumbNavTile.h"
#include "ThumbImageTile.h"
#include "ImageBrowserMainPane.h"
#include "ImageBrowserThumbnailPane.h"
#include "ImageBrowserAsyncThumbLoader.h"
#include "ImageBrowserSplitCoordinator.h"
#include "ImageBrowserDeferredActions.h"
#include "ImageBrowserDragController.h"
#include "ImageBrowserThumbTypes.h"
#include "ImageBrowserThumbStripController.h"
#include "ImageBrowserInfoPresenter.h"
#include "ImageBrowserKeyboardController.h"
#include "ImageBrowserThumbLayoutCoordinator.h"
#include "ImageBrowserAssets.h"
#include "IpcOpenRequest.h"
#include "Ficture2Backplate.h"
#include "AppLog.h"
#include "AppSetup.h"
#include "RecentFiles.h"
#include "FD2D/FD2D.h"
#include "FD2D/Util.h"
#include "ImageBrowserMainImage.h"
#include "ImageViewTypes.h"
#include "ImageCore/DecoderRegistry.h"
#include "ImageCore/ImageCore.h"
#include "VirtualPath.h"
#include "VirtualFileSystem.h"
#include "ImageAwareVfs.h"
#include <algorithm>
#include <atomic>
#include <cstdint>
#include <filesystem>
#include <mutex>
#include <memory>
#include <thread>
#include <deque>
#include <unordered_set>
#include <unordered_map>
#include <vector>
#include <sstream>
#include <cwctype>
#include <wrl/client.h>
#include <commctrl.h>
namespace
{
class ImageBrowserImpl;
constexpr float kThumbStripPadding = 8.0f; // matches thumbs->SetPadding(8)
constexpr float kThumbMinSide = 32.0f;
constexpr float kThumbMaxSide = 256.0f;
constexpr float kThumbStripMinH = (kThumbStripPadding * 2.0f) + kThumbMinSide;
constexpr float kThumbStripMaxH = (kThumbStripPadding * 2.0f) + kThumbMaxSide;
constexpr float kSplitPanelDefaultHitThickness = 12.0f; // Splitter::m_hitAreaThickness default
static std::wstring MakeStableThumbName(const wchar_t* prefix, const std::wstring& path)
{
std::wstring s = CommonUtil::ToLower(path);
return std::wstring(prefix) + L"_" + CommonUtil::Hex64(CommonUtil::Fnv1a64(s)) + L"_tile";
}
static std::wstring MakeStableThumbName(const wchar_t* prefix, const std::filesystem::path& p)
{
return MakeStableThumbName(prefix, p.wstring());
}
static std::wstring MakeStableThumbName(const wchar_t* prefix, const Floar::VirtualPath& vp)
{
return MakeStableThumbName(prefix, vp.GetDisplayPath());
}
class ImageBrowserImpl : public FD2D::Wnd, public IImageBrowserOps
{
public:
explicit ImageBrowserImpl(const std::wstring& name, const std::wstring& initialFile = L"")
: Wnd(name)
, m_initialFile(initialFile)
{
FIC2_TIMER_START(t_ctor);
m_asyncThumbReadyEvent = CreateEventW(nullptr, TRUE, FALSE, nullptr);
FIC2_LOG_STEP(t_ctor, "ctor: CreateEventW");
if (m_asyncThumbReadyEvent != nullptr)
{
ImageBrowserAsyncThumbLoader::RegisterBrowser(Name(), m_asyncThumbReadyEvent);
FIC2_LOG_STEP(t_ctor, "ctor: AsyncThumbLoader::RegisterBrowser");
}
BuildUi();
FIC2_LOG_STEP(t_ctor, "ctor: BuildUi total");
}
~ImageBrowserImpl() override
{
ImageBrowserAsyncThumbLoader::UnregisterBrowser(Name());
if (m_asyncThumbReadyEvent != nullptr)
{
CloseHandle(m_asyncThumbReadyEvent);
m_asyncThumbReadyEvent = nullptr;
}
UnregisterFromEventBus();
}
void OnAttached(FD2D::Backplate& backplate) override
{
FIC2_TIMER_START(t_attach);
Wnd::OnAttached(backplate);
FIC2_LOG_STEP(t_attach, "[OnAttached] Wnd::OnAttached (recursive child attach + layout)");
RegisterWithEventBus();
FIC2_LOG_STEP(t_attach, "[OnAttached] RegisterWithEventBus");
auto* ficBp = FictureBackplateRef();
if (ficBp != nullptr)
{
ficBp->EnsureImageBrowserIniInitialized();
FIC2_LOG_STEP(t_attach, "[OnAttached] EnsureImageBrowserIniInitialized");
m_showNavItems = ficBp->ShowNavItemsEnabled();
m_browserFocusedBackgroundColor = ficBp->FocusedBackgroundColor();
ApplyShowNavItems(m_showNavItems);
ApplyAlphaCheckerboard(ficBp->AlphaCheckerboardEnabled());
if (m_mainImage)
{
m_mainImage->SetZoomStiffness(ficBp->ImageZoomStiffness());
}
FIC2_LOG_STEP(t_attach, "[OnAttached] apply INI settings");
}
// Default per-ImageBrowser background follows current global clear color.
m_browserBackgroundColor = backplate.ClearColor();
if (BackplateRef() != nullptr && BackplateRef()->FocusedWnd() == nullptr)
{
RequestFocus();
}
FIC2_LOG_STEP(t_attach, "[OnAttached] ClearColor + RequestFocus");
FIC2_LOG_DEBUG("[OnAttached] complete");
}
void OnDetached() override
{
UnregisterFromEventBus();
Wnd::OnDetached();
}
Ficture2Backplate* FictureBackplateRef() const
{
FD2D::Backplate* bp = BackplateRef();
if (bp == nullptr)
{
return nullptr;
}
return dynamic_cast<Ficture2Backplate*>(bp);
}
void NotifyIpcOpenSnapshotChanged()
{
if (auto* ficBp = FictureBackplateRef())
{
ficBp->RefreshIpcOpenSnapshot();
}
}
bool TryGetSyncedThumbStripHeight(float& outHeight) const
{
auto* ficBp = FictureBackplateRef();
if (ficBp == nullptr)
{
return false;
}
return ficBp->TryGetSyncedThumbStripHeight(outHeight);
}
void SetSyncedThumbStripHeight(float height)
{
auto* ficBp = FictureBackplateRef();
if (ficBp == nullptr)
{
return;
}
ficBp->SetSyncedThumbStripHeight(height);
}
std::shared_ptr<Ficture2Backplate::EventBus> EventBusRef() const
{
auto* ficBp = FictureBackplateRef();
if (ficBp == nullptr)
{
return nullptr;
}
return ficBp->BusPtr();
}
void RegisterWithEventBus()
{
if (!m_eventBus.expired())
{
return;
}
auto bus = EventBusRef();
if (!bus)
{
return;
}
m_eventBus = bus;
bus->RegisterImageBrowser(this);
}
void UnregisterFromEventBus()
{
auto bus = m_eventBus.lock();
if (!bus)
{
return;
}
bus->UnregisterImageBrowser(this);
m_eventBus.reset();
}
size_t ImageBrowserCount() const
{
auto bus = m_eventBus.lock();
if (!bus)
{
return 0;
}
return bus->ImageBrowserCount();
}
std::vector<ImageBrowserImpl*> ImageBrowsersSnapshot() const
{
std::vector<ImageBrowserImpl*> out;
auto bus = m_eventBus.lock();
if (!bus)
{
return out;
}
const auto browsers = bus->ImageBrowsersSnapshot();
out.reserve(browsers.size());
for (auto* b : browsers)
{
if (b != nullptr)
{
out.push_back(static_cast<ImageBrowserImpl*>(b));
}
}
return out;
}
void ApplyShowNavItems(bool showNavItems)
{
m_showNavItems = showNavItems;
Floar::VirtualPath prefer {};
if (m_selectedIndex < m_items.size())
{
prefer = m_items[m_selectedIndex].path;
}
RebuildThumbList(prefer);
}
void ApplyBrowserBackgroundColor(const D2D1_COLOR_F& color)
{
m_browserBackgroundColor = color;
}
void ApplyFocusedBackgroundColor(const D2D1_COLOR_F& color)
{
m_browserFocusedBackgroundColor = color;
}
void ApplyAlphaCheckerboard(bool checkerEnabled)
{
if (m_mainImage)
{
m_mainImage->SetAlphaCheckerboardEnabled(checkerEnabled);
}
// Keep info bars in sync.
RefreshInfoPanel();
}
static bool ContainsDescendantWnd(const FD2D::Wnd* root, const FD2D::Wnd* target)
{
if (root == nullptr || target == nullptr)
{
return false;
}
for (const auto& child : root->ChildrenInOrder())
{
if (!child)
{
continue;
}
if (child.get() == target || ContainsDescendantWnd(child.get(), target))
{
return true;
}
}
return false;
}
bool HasFocusWithinBrowser() const
{
FD2D::Backplate* bp = BackplateRef();
if (bp == nullptr)
{
return false;
}
FD2D::Wnd* focused = bp->FocusedWnd();
if (focused == nullptr)
{
return false;
}
if (focused == this)
{
return true;
}
// Focus highlighting should follow this browser's main pane subtree only.
// Using the whole ImageBrowser subtree can over-match when this browser hosts
// other browsers (split host), causing unrelated panes to appear focused.
return (m_mainPane != nullptr) && ContainsDescendantWnd(m_mainPane.get(), focused);
}
FD2D::Size Measure(FD2D::Size available) override
{
m_desired = available;
return m_desired;
}
void Arrange(FD2D::Rect finalRect) override
{
Wnd::Arrange(finalRect);
if (m_selectedFocus && m_thumbPane)
{
const D2D1_RECT_F focusRect = m_selectedFocus->LayoutRect();
auto scroll = m_thumbPane->Scroll();
if (scroll)
{
scroll->EnsureCentered(focusRect, true);
}
}
}
void OnRenderD3D(ID3D11DeviceContext* context) override
{
// Per-ImageBrowser background (stationary, never pans with the image).
// Draw in the D3D pass so it stays behind GPU-rendered images.
FD2D::Backplate* bp = BackplateRef();
const bool paneFocused = HasFocusWithinBrowser();
if (bp != nullptr && bp->D3DDevice() != nullptr)
{
const D2D1_COLOR_F bg = paneFocused ? m_browserFocusedBackgroundColor : m_browserBackgroundColor;
(void)bp->ClearRectD3D(LayoutRect(), bg);
}
Wnd::OnRenderD3D(context);
}
void OnRender(ID2D1RenderTarget* target) override
{
// Splitter dragging re-arranges the SplitPanel subtree directly, but may not trigger
// a full root re-Arrange pass. Drive responsive thumbnail sizing here so it updates
// live while dragging.
(void)ApplySyncedThumbStripHeightIfNeeded();
(void)UpdateThumbSizingFromPane();
if (m_thumbListLoading && m_asyncThumbReadyEvent != nullptr)
{
if (WaitForSingleObject(m_asyncThumbReadyEvent, 0) == WAIT_OBJECT_0)
{
DrainAsyncThumbChunks();
}
if (BackplateRef() != nullptr)
{
BackplateRef()->RequestAnimationFrame();
}
}
// Throttle progressive UI list updates so large folders don't monopolize the UI thread.
if (m_progressiveUiDirty && !m_progressiveLoadCompleted)
{
const unsigned long long now = CommonUtil::NowMs();
if (now - m_progressiveLastApplyMs >= 50)
{
ApplyProgressiveThumbUpdate(false);
}
}
if (m_pendingThumbStripBroadcast && m_rootSplit != nullptr && !m_rootSplit->IsSplitterDragging())
{
m_pendingThumbStripBroadcast = false;
NotifyThumbStripHeightChanged(m_pendingThumbStripHeight);
}
RefreshInfoPanel();
// D2D-only backend: fill per-ImageBrowser background before drawing children.
// (On the D3D swapchain backend, D2D runs after the GPU image pass, so we must NOT fill here.)
if (target != nullptr)
{
FD2D::Backplate* bp = BackplateRef();
const bool d3dActive = (bp != nullptr && bp->D3DDevice() != nullptr);
const bool paneFocused = HasFocusWithinBrowser();
if (!d3dActive)
{
const D2D1_COLOR_F bg = paneFocused ? m_browserFocusedBackgroundColor : m_browserBackgroundColor;
if (!m_browserBackgroundBrush)
{
(void)target->CreateSolidColorBrush(bg, m_browserBackgroundBrush.ReleaseAndGetAddressOf());
}
if (m_browserBackgroundBrush)
{
m_browserBackgroundBrush->SetColor(bg);
target->FillRectangle(LayoutRect(), m_browserBackgroundBrush.Get());
}
}
}
Wnd::OnRender(target);
}
// Fixed-band overlays (FD2D OverlayLayer): paint chrome after the content
// tree so drag tint / folder icons stay above siblings without a z-index.
void OnRenderOverlay(
ID2D1RenderTarget* target,
FD2D::OverlayLayer layer) override
{
if (target == nullptr || layer != FD2D::OverlayLayer::Chrome)
{
return;
}
// Drag&drop overlay (main image area only).
if (m_dragOverlay != ImageBrowserDragController::OverlayKind::None &&
m_mainPane != nullptr)
{
m_mainPane->RenderOnMainRect([this, target](const D2D1_RECT_F& mainRect)
{
m_dragController.DrawOverlay(target, mainRect, m_dragOverlay);
});
}
// Folder / parent-folder icon when a folder tile is selected.
if (m_selectedIndex < m_items.size() &&
(m_items[m_selectedIndex].kind == ThumbItemKind::Folder ||
m_items[m_selectedIndex].kind == ThumbItemKind::Up) &&
m_mainPane != nullptr)
{
const bool isUp = (m_items[m_selectedIndex].kind == ThumbItemKind::Up);
const auto iconKind = isUp
? ImageBrowserAssets::FolderIconKind::FolderUp
: ImageBrowserAssets::FolderIconKind::Folder;
if (m_assets.EnsureFolderBitmap(target, iconKind))
{
ID2D1Bitmap* bitmap = isUp ? m_assets.FolderUpBitmap() : m_assets.FolderBitmap();
if (bitmap != nullptr)
{
m_mainPane->RenderCenteredMainOverlayBitmap(target, bitmap, 0.30f);
}
}
}
}
// Decorative chrome only — do not claim the Chrome input band (keeps
// hover tooltips and normal hit-testing intact while drag tint paints).
bool IsOverlayActive(FD2D::OverlayLayer layer) const override
{
UNREFERENCED_PARAMETER(layer);
return false;
}
bool OnInputEvent(const FD2D::InputEvent& event) override
{
if (TryHandleInputEvent(event))
{
return true;
}
return Wnd::OnInputEvent(event);
}
bool TryHandleInputEvent(const FD2D::InputEvent& event)
{
return HandleInputType(event.type, event);
}
bool HandleInputType(FD2D::InputEventType type, const FD2D::InputEvent& event)
{
switch (type)
{
case FD2D::InputEventType::KeyDown:
return HandleKeyDownMessage(event);
case FD2D::InputEventType::KeyUp:
return HandleKeyUpMessage(event);
default:
return false;
}
}
bool OnCommandEvent(const FD2D::CommandEvent& event) override
{
if (TryHandleCommandEvent(event))
{
return true;
}
return Wnd::OnCommandEvent(event);
}
bool TryHandleCommandEvent(const FD2D::CommandEvent& event)
{
return HandleCommandId(event.id, event.lParam);
}
bool HandleCommandId(UINT id, LPARAM lParam)
{
switch (id)
{
case CMD_FIC2_IPC_OPEN:
return HandleIpcOpenMessage();
case CMD_FIC2_DEFERRED_ACTION:
return HandleDeferredActionMessage();
case CMD_FIC2_ASYNC_THUMB_READY:
return HandleAsyncThumbReadyMessage();
default:
return false;
}
}
bool HandleIpcOpenMessage()
{
auto* ficBp = FictureBackplateRef();
if (ficBp == nullptr)
{
return false;
}
FIC2_LOG_INFO("[IPC] UI: draining IPC open queue.");
ficBp->DrainIpcOpenQueue();
return true;
}
bool HandleContextMenuMessage(const POINT& pt)
{
auto* ficBp = FictureBackplateRef();
if (ficBp == nullptr)
{
return false;
}
return ficBp->ShowImageBrowserContextMenu(this, pt);
}
Floar::VirtualPath GetContextMenuTargetImagePathAtPoint(const POINT& pt) const
{
for (const auto& item : m_items)
{
if (item.kind != ThumbItemKind::Image || !item.focus)
{
continue;
}
if (FD2D::Util::RectContainsPoint(item.focus->LayoutRect(), pt))
{
return item.path;
}
}
if (m_selectedIndex < m_items.size() && m_items[m_selectedIndex].kind == ThumbItemKind::Image)
{
return m_items[m_selectedIndex].path;
}
return Floar::VirtualPath();
}
bool HandleDeferredActionMessage()
{
if (m_deferredKind != DeferredActionKind::None)
{
RunDeferredAction();
return true;
}
return false;
}
size_t CurrentThumbSelectionIndex() const
{
return (m_selectedIndex < m_items.size()) ? m_selectedIndex : 0;
}
void ApplyThumbWheelStep(int steps)
{
if (steps == 0)
{
return;
}
const int dir = (steps > 0) ? -1 : 1;
const int count = std::abs(steps);
const size_t cur = CurrentThumbSelectionIndex();
size_t next = cur;
for (int s = 0; s < count; ++s)
{
if (dir < 0)
{
if (next == 0)
{
break;
}
next--;
}
else
{
if ((next + 1) >= m_items.size())
{
break;
}
next++;
}
}
if (next != cur)
{
SelectItemByIndex(next);
}
}
bool HandleKeyDownMessage(const FD2D::InputEvent& event)
{
auto* ficBp = FictureBackplateRef();
bool handledByBackplate = false;
if (ficBp != nullptr &&
ficBp->HandleImageBrowserKeyDownCommand(
this,
event.keyCode,
event.modifiers.control,
event.modifiers.shift,
event.modifiers.alt,
handledByBackplate))
{
return true;
}
if (handledByBackplate)
{
return false;
}
// Image-view letter keys (NIFDiff parity). Handled before type-to-select.
if (!event.modifiers.control &&
!event.modifiers.alt &&
!event.modifiers.shift)
{
switch (event.keyCode)
{
case 'R': BrowserCmdSetChannelMode(1); return true;
case 'G': BrowserCmdSetChannelMode(2); return true;
case 'B': BrowserCmdSetChannelMode(3); return true;
case 'A': BrowserCmdSetChannelMode(4); return true;
case 'N': BrowserCmdSetChannelMode(0); return true;
case 'I': BrowserCmdShowImageInformation(); return true;
default: break;
}
}
return HandleTypeToSelectKeyDown(event);
}
bool HandleTypeToSelectKeyDown(const FD2D::InputEvent& event)
{
return ImageBrowserKeyboardController::HandleTypeToSelectWithStateStorage(
event.keyCode,
event.scanCode,
event.modifiers.control,
event.modifiers.alt,
CommonUtil::NowMs(),
m_items.size(),
m_selectedIndex,
[this](size_t index)
{
return TypeToSelectItemLabel(index);
},
[this](size_t index)
{
SelectItemByIndex(index);
},
m_typeSelectQuery,
m_typeSelectLastInputMs);
}
std::wstring TypeToSelectItemLabel(size_t index) const
{
if (index >= m_items.size())
{
return L"";
}
const ThumbItem& item = m_items[index];
if (item.kind == ThumbItemKind::Up)
{
return L"..";
}
return item.path.GetFilename();
}
bool HandleKeyUpMessage(const FD2D::InputEvent& event)
{
const auto& modifiers = event.modifiers;
auto* ficBp = FictureBackplateRef();
bool handledByBackplate = false;
if (ficBp != nullptr &&
ficBp->HandleImageBrowserKeyUpCommand(
this,
event.keyCode,
modifiers.control,
modifiers.shift,
modifiers.alt,
handledByBackplate))
{
return true;
}
if (handledByBackplate)
{
return false;
}
return false;
}
size_t PagingStepFromThumbViewport() const
{
if (m_thumbPane == nullptr)
{
return 1;
}
const float itemExtent = (std::max)(1.0f, m_thumbW + m_thumbOuterSpacing);
return m_thumbPane->PagingStep(itemExtent);
}
bool OnFileDrop(const std::wstring& path, const POINT& clientPt) override
{
if (path.empty())
{
return false;
}
// IMPORTANT:
// In compare mode, this ImageBrowser can contain other ImageBrowser panes as children (split host).
// If the drop is not for *this* browser's main pane, let children try first so drops work on
// any pane, not only the first/root ImageBrowser.
if (Wnd::OnFileDrop(path, clientPt))
{
return true;
}
// Only accept drops onto the main image region (not the thumbnail strip).
D2D1_RECT_F mainRect {};
if (!m_mainPane ||
!m_mainPane->TryGetMainImageRect(mainRect) ||
!FD2D::Util::RectContainsPoint(mainRect, clientPt))
{
return false;
}
ClearDragOverlay();
ImageBrowserDragController::Action action {};
if (!m_dragController.HandleFileDrop(path, clientPt, mainRect, action))
{
return false;
}
switch (action.kind)
{
case ImageBrowserDragController::ActionKind::InsertHorizontal:
QueueDeferredActionCore(DeferredActionKind::InsertHorizontalWithPathAfterName, action.path, Name());
return true;
case ImageBrowserDragController::ActionKind::NavigateToFolder:
QueueDeferredAction(DeferredActionKind::NavigateToFolder, action.path);
return true;
case ImageBrowserDragController::ActionKind::NavigateToFile:
QueueDeferredAction(DeferredActionKind::NavigateToFile, action.path);
return true;
default:
return false;
}
}
bool OnFileDrag(const std::wstring& path, const POINT& clientPt, FD2D::FileDragVisual& outVisual) override
{
// Let child panes handle first (for compare mode where this browser hosts other browsers).
if (Wnd::OnFileDrag(path, clientPt, outVisual))
{
return true;
}
D2D1_RECT_F mainRect {};
if (!m_mainPane ||
!m_mainPane->TryGetMainImageRect(mainRect) ||
!FD2D::Util::RectContainsPoint(mainRect, clientPt))
{
outVisual = FD2D::FileDragVisual::None;
ClearDragOverlay();
return false;
}
if (!m_dragController.HandleFileDrag(path, clientPt, mainRect, outVisual, m_dragOverlay))
{
outVisual = FD2D::FileDragVisual::None;
ClearDragOverlay();
return false;
}
Invalidate();
return true;
}
void OnFileDragLeave() override
{
Wnd::OnFileDragLeave();
ClearDragOverlay();
}
bool TryStartCompareWithFileNameMatch(const std::wstring& incomingFilePath)
{
if (incomingFilePath.empty())
{
FIC2_LOG_DEBUG("[IPC] UI: TryStartCompareWithFileNameMatch — incoming path empty, skipping.");
return false;
}
const std::wstring currentPath = ActiveMainPath();
if (currentPath.empty())
{
FIC2_LOG_WARN("[IPC] UI: TryStartCompareWithFileNameMatch — current browser has no file open (m_mainPath empty).");
return false;
}
const auto NormalizeLowerName = [](const std::wstring& p) -> std::wstring
{
return CommonUtil::ToLower(std::filesystem::path(p).filename().wstring());
};
const std::wstring incomingName = NormalizeLowerName(incomingFilePath);
const std::wstring currentName = NormalizeLowerName(currentPath);
FIC2_LOG_DEBUG("[IPC] UI: compare '{}' vs current '{}'",
std::filesystem::path(incomingName).string(),
std::filesystem::path(currentName).string());
if (incomingName.empty() || currentName.empty())
{
return false;
}
if (incomingName != currentName)
{
FIC2_LOG_INFO("[IPC] UI: filename mismatch ('{}' != '{}') — Ignore.",
std::filesystem::path(incomingName).string(),
std::filesystem::path(currentName).string());
return false;
}
FIC2_LOG_INFO("[IPC] UI: filename match! Opening incoming path in split pane: {}",
std::filesystem::path(incomingFilePath).string());
auto vp = Floar::VirtualPath::Parse(incomingFilePath);
if (vp)
{
SplitHorizontalWithFile(*vp);
}
return true;
}
std::wstring GetDisplayedFilePath() const
{
return ActiveMainPath();
}
std::wstring GetCurrentFolderPath() const
{
return m_currentFolder.wstring();
}
// Captures host-tree split ratios (preorder), including the two-row
// vertical split when present. Stops at compare pane roots so per-browser
// main/thumb vertical splits are not persisted.
std::vector<float> CaptureHorizontalSplitRatios() const
{
std::vector<float> out;
CaptureSplitRatiosRecursive(m_hHost, m_hPanes, out);
return out;
}
void ApplyHorizontalSplitRatios(const std::vector<float>& ratios)
{
size_t idx = 0;
ApplySplitRatiosRecursive(m_hHost, m_hPanes, ratios, idx);
if (BackplateRef() != nullptr)
{
BackplateRef()->RequestLayout();
}
}
// Restore this browser to show a given file (rebuild thumbs + select/apply).
void RestoreOpenFile(const std::wstring& filePath)
{
if (filePath.empty())
{
return;
}
auto vp = Floar::VirtualPath::Parse(filePath);
if (!vp || !Floar::VirtualFileSystem::Exists(*vp))
{
return;
}
auto parent = vp->GetParent();
m_currentFolder = parent;
RebuildThumbList(*vp);
// Select/apply exact match if present.
for (size_t i = 0; i < m_items.size(); ++i)
{
if (m_items[i].kind == ThumbItemKind::Image && m_items[i].path == *vp)
{
SelectItemByIndex(i);
return;
}
}
// Fallback: show first image in folder.
for (size_t i = 0; i < m_items.size(); ++i)
{
if (m_items[i].kind == ThumbItemKind::Image)
{
SelectItemByIndex(i);
return;
}
}
}
void RestoreOpenFolder(const std::wstring& folderPath)
{
if (folderPath.empty())
{
return;
}
auto vp = Floar::VirtualPath::Parse(folderPath);
if (vp)
{
NavigateToFolder(*vp);
}
}
void AddHorizontalViewerForRestore(const std::wstring& filePath)
{
if (filePath.empty())
{
return;
}
auto vp = Floar::VirtualPath::Parse(filePath);
if (vp)
{
SplitHorizontalWithFile(*vp);
}
}
void AddHorizontalViewerForRestoreFolder(const std::wstring& folderPath)
{
if (folderPath.empty())
{
return;
}
// Always apply horizontal splitting at the root host browser.
if (auto* rootHost = DelegatedRootHostBrowser())
{
rootHost->AddHorizontalViewerForRestoreFolder(folderPath);
return;
}
if (!EnsureHorizontalHostReady(true))