wxdragon-sys 0.9.16

Raw FFI bindings to libwxdragon (which statically links wxWidgets).
Documentation
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
#include <wx/wxprec.h>
#include <wx/wx.h>
#include "../include/wxdragon.h"
#include "../src/wxd_utils.h"
#include <wx/dataview.h>
#include <wx/string.h>   // For wxString methods
#include <wx/tokenzr.h>  // For wxStringTokenizer
#include <wx/bitmap.h>   // For wxBitmap
#include <wx/datetime.h> // For wxDateTime
#include <wx/variant.h>
#include <cstring>

// Forward declarations, this function is implemented in rust side.
extern "C" void
drop_rust_custom_renderer_callbacks(void* ptr);

// Global storage for custom renderer callbacks keyed by unique renderer ID
struct CustomRendererCallbacks {
    void* closure_ptr = nullptr;
    void* get_size_trampoline = nullptr;
    void* render_trampoline = nullptr;
    void* set_value_trampoline = nullptr;
    void* get_value_trampoline = nullptr;
    void* has_editor_trampoline = nullptr;
    void* create_editor_trampoline = nullptr;
    void* get_value_from_editor_trampoline = nullptr;
    void* activate_cell_trampoline = nullptr;
};

// Use renderer_id as the primary key instead of (dataview_id, column_index)
typedef int RendererKey;

// Hash function for RendererKey (now just int)
struct RendererKeyHash {
    std::size_t
    operator()(const RendererKey& key) const
    {
        return std::hash<int>{}(key);
    }
};

// Global map to store custom renderer callbacks by renderer ID
static std::unordered_map<RendererKey, CustomRendererCallbacks, RendererKeyHash>
    g_custom_renderer_callbacks;

extern "C" {

// Function to clean up all callbacks for a specific dataview ID
// This should be called when the DataView control is destroyed
void
cleanup_all_custom_renderer_callbacks_for_dataview(int dataview_id)
{
    // With the new renderer_id approach, we don't automatically clean up by dataview_id
    // Individual renderers are now cleaned up when they're dropped in Rust
    // This function is kept for compatibility but does nothing
}

// Enhanced DataView control that automatically cleans up custom renderer callbacks
class WxdDataViewCtrlWithCleanup : public wxDataViewCtrl {
public:
    WxdDataViewCtrlWithCleanup(wxWindow* parent, wxWindowID id, const wxPoint& pos,
                               const wxSize& size, long style)
        : wxDataViewCtrl(parent, id, pos, size, style)
    {
        WXD_LOG_TRACEF("WxdDataViewCtrlWithCleanup created with pointer %p", this);
    }

    virtual ~WxdDataViewCtrlWithCleanup()
    {
        // No special cleanup needed - each renderer manages its own callbacks
        WXD_LOG_TRACEF("WxdDataViewCtrlWithCleanup destroyed with pointer %p", this);
    }
};

// Base DataViewCtrl functions
WXD_EXPORTED wxd_Window_t*
wxd_DataViewCtrl_Create(wxd_Window_t* parent, int64_t id, const wxd_Point* pos,
                        const wxd_Size* size, int64_t style)
{
    if (!parent)
        return nullptr;

    wxWindow* p = reinterpret_cast<wxWindow*>(parent);
    wxPoint wxPos = pos ? wxPoint(pos->x, pos->y) : wxDefaultPosition;
    wxSize wxSizeObj = size ? wxSize(size->width, size->height) : wxDefaultSize;

    // Use the enhanced DataView control that automatically cleans up custom renderer callbacks
    WxdDataViewCtrlWithCleanup* ctrl =
        new WxdDataViewCtrlWithCleanup(p, id, wxPos, wxSizeObj, style);
    return reinterpret_cast<wxd_Window_t*>(ctrl);
}

WXD_EXPORTED wxd_Window_t*
wxd_DataViewListCtrl_Create(wxd_Window_t* parent, int64_t id, const wxd_Point* pos,
                            const wxd_Size* size, int64_t style)
{
    if (!parent)
        return nullptr;

    wxWindow* p = reinterpret_cast<wxWindow*>(parent);
    wxPoint wxPos = pos ? wxPoint(pos->x, pos->y) : wxDefaultPosition;
    wxSize wxSizeObj = size ? wxSize(size->width, size->height) : wxDefaultSize;

    wxDataViewListCtrl* ctrl = new wxDataViewListCtrl(p, id, wxPos, wxSizeObj, style);
    WXD_LOG_TRACEF("wxDataViewListCtrl created with pointer %p", ctrl);
    return reinterpret_cast<wxd_Window_t*>(ctrl);
}

WXD_EXPORTED wxd_Window_t*
wxd_DataViewTreeCtrl_Create(wxd_Window_t* parent, int64_t id, const wxd_Point* pos,
                            const wxd_Size* size, int64_t style)
{
    if (!parent)
        return nullptr;

    wxWindow* p = reinterpret_cast<wxWindow*>(parent);
    wxPoint wxPos = pos ? wxPoint(pos->x, pos->y) : wxDefaultPosition;
    wxSize wxSizeObj = size ? wxSize(size->width, size->height) : wxDefaultSize;

    wxDataViewTreeCtrl* ctrl = new wxDataViewTreeCtrl(p, id, wxPos, wxSizeObj, style);
    WXD_LOG_TRACEF("wxDataViewTreeCtrl created with pointer %p", ctrl);
    return reinterpret_cast<wxd_Window_t*>(ctrl);
}

// Column management
WXD_EXPORTED wxd_DataViewColumn_t*
wxd_DataViewColumn_Create(const char* title, wxd_DataViewRenderer_t* renderer, int model_column,
                          int width, int align, int flags)
{
    if (!renderer)
        return nullptr;

    wxString wxTitle = wxString::FromUTF8(title ? title : "");
    wxDataViewRenderer* r = reinterpret_cast<wxDataViewRenderer*>(renderer);

    wxDataViewColumn* column = new wxDataViewColumn(wxTitle, r,
                                                    static_cast<unsigned int>(model_column), width,
                                                    static_cast<wxAlignment>(align), flags);
    WXD_LOG_TRACEF("wxDataViewColumn created with pointer %p", column);
    return reinterpret_cast<wxd_DataViewColumn_t*>(column);
}

WXD_EXPORTED bool
wxd_DataViewCtrl_AppendColumn(wxd_Window_t* self, wxd_DataViewColumn_t* column)
{
    if (!self || !column)
        return false;

    wxDataViewCtrl* ctrl = reinterpret_cast<wxDataViewCtrl*>(self);
    wxDataViewColumn* col = reinterpret_cast<wxDataViewColumn*>(column);

    return ctrl->AppendColumn(col);
}

WXD_EXPORTED bool
wxd_DataViewCtrl_PrependColumn(wxd_Window_t* self, wxd_DataViewColumn_t* column)
{
    if (!self || !column)
        return false;

    wxDataViewCtrl* ctrl = reinterpret_cast<wxDataViewCtrl*>(self);
    wxDataViewColumn* col = reinterpret_cast<wxDataViewColumn*>(column);

    return ctrl->PrependColumn(col);
}

WXD_EXPORTED bool
wxd_DataViewCtrl_InsertColumn(wxd_Window_t* self, int64_t pos, wxd_DataViewColumn_t* column)
{
    if (!self || !column)
        return false;

    wxDataViewCtrl* ctrl = reinterpret_cast<wxDataViewCtrl*>(self);
    wxDataViewColumn* col = reinterpret_cast<wxDataViewColumn*>(column);

    return ctrl->InsertColumn(static_cast<unsigned int>(pos), col);
}

// Tree-style helpers on DataViewCtrl
WXD_EXPORTED const wxd_DataViewItem_t*
wxd_DataViewCtrl_GetNthChild(wxd_Window_t* self, const wxd_DataViewItem_t* parent_wrapper,
                             unsigned int pos)
{
    wxDataViewCtrl* ctrl = reinterpret_cast<wxDataViewCtrl*>(self);
    const wxDataViewItem* parent_item = reinterpret_cast<const wxDataViewItem*>(parent_wrapper);
    if (!ctrl || !parent_item)
        return nullptr; // Invalid parent
    wxDataViewModel* model = ctrl->GetModel();
    if (!model)
        return nullptr;
    wxDataViewItemArray arr;
    unsigned int count = model->GetChildren(*parent_item, arr);
    if (pos >= count)
        return nullptr;
    return wxd_DataViewItem_Clone(reinterpret_cast<const wxd_DataViewItem_t*>(&arr[pos]));
}

WXD_EXPORTED void
wxd_DataViewCtrl_Expand(wxd_Window_t* self, const wxd_DataViewItem_t* item_wrapper)
{
    wxDataViewCtrl* ctrl = reinterpret_cast<wxDataViewCtrl*>(self);
    const wxDataViewItem* item = reinterpret_cast<const wxDataViewItem*>(item_wrapper);
    if (ctrl && item)
        ctrl->Expand(*item);
}

WXD_EXPORTED void
wxd_DataViewCtrl_EnsureVisible(wxd_Window_t* self, const wxd_DataViewItem_t* item_wrapper)
{
    wxDataViewCtrl* ctrl = reinterpret_cast<wxDataViewCtrl*>(self);
    const wxDataViewItem* item = reinterpret_cast<const wxDataViewItem*>(item_wrapper);
    if (ctrl && item)
        ctrl->EnsureVisible(*item);
}

// Renderer creation functions
WXD_EXPORTED wxd_DataViewRenderer_t*
wxd_DataViewTextRenderer_Create(const char* varianttype, int64_t mode, int64_t align)
{
    wxString wxVarType = wxString::FromUTF8(varianttype ? varianttype : "string");
    wxDataViewTextRenderer* renderer =
        new wxDataViewTextRenderer(wxVarType, static_cast<wxDataViewCellMode>(mode),
                                   static_cast<wxAlignment>(align));
    return reinterpret_cast<wxd_DataViewRenderer_t*>(renderer);
}

WXD_EXPORTED wxd_DataViewRenderer_t*
wxd_DataViewIconTextRenderer_Create(const char* varianttype, int64_t mode, int64_t align)
{
    wxString wxVarType = wxString::FromUTF8(varianttype ? varianttype : "wxDataViewIconText");
    wxDataViewIconTextRenderer* renderer =
        new wxDataViewIconTextRenderer(wxVarType, static_cast<wxDataViewCellMode>(mode),
                                       static_cast<wxAlignment>(align));
    return reinterpret_cast<wxd_DataViewRenderer_t*>(renderer);
}

WXD_EXPORTED wxd_DataViewRenderer_t*
wxd_DataViewToggleRenderer_Create(const char* varianttype, int64_t mode, int64_t align)
{
    wxString wxVarType = wxString::FromUTF8(varianttype ? varianttype : "bool");
    wxDataViewToggleRenderer* renderer =
        new wxDataViewToggleRenderer(wxVarType, static_cast<wxDataViewCellMode>(mode),
                                     static_cast<wxAlignment>(align));
    return reinterpret_cast<wxd_DataViewRenderer_t*>(renderer);
}

WXD_EXPORTED wxd_DataViewRenderer_t*
wxd_DataViewProgressRenderer_Create(const char* varianttype, int64_t mode, int64_t align)
{
    wxString wxVarType = wxString::FromUTF8(varianttype ? varianttype : "long");
    // The constructor signature is different from other renderers
    wxDataViewProgressRenderer* renderer =
        new wxDataViewProgressRenderer(wxEmptyString,                          // label
                                       wxVarType,                              // varianttype
                                       static_cast<wxDataViewCellMode>(mode)); // mode

    return reinterpret_cast<wxd_DataViewRenderer_t*>(renderer);
}

// Additional renderer implementations
WXD_EXPORTED wxd_DataViewRenderer_t*
wxd_DataViewBitmapRenderer_Create(const char* varianttype, int64_t mode, int64_t align)
{
    wxString wxVarType = wxString::FromUTF8(varianttype ? varianttype : "wxBitmap");
    wxDataViewBitmapRenderer* renderer =
        new wxDataViewBitmapRenderer(wxVarType, static_cast<wxDataViewCellMode>(mode),
                                     static_cast<wxAlignment>(align));

    return reinterpret_cast<wxd_DataViewRenderer_t*>(renderer);
}

WXD_EXPORTED wxd_DataViewRenderer_t*
wxd_DataViewDateRenderer_Create(const char* varianttype, int64_t mode, int64_t align)
{
    wxString wxVarType = wxString::FromUTF8(varianttype ? varianttype : "datetime");
    wxDataViewDateRenderer* renderer =
        new wxDataViewDateRenderer(wxVarType, static_cast<wxDataViewCellMode>(mode),
                                   static_cast<wxAlignment>(align));

    return reinterpret_cast<wxd_DataViewRenderer_t*>(renderer);
}

WXD_EXPORTED wxd_DataViewRenderer_t*
wxd_DataViewSpinRenderer_Create(const char* varianttype, int64_t mode, int64_t align, int32_t min,
                                int32_t max, int32_t inc)
{
    // The constructor order is different: min and max come first, then mode and align
    wxDataViewSpinRenderer* renderer =
        new wxDataViewSpinRenderer(min, max, static_cast<wxDataViewCellMode>(mode),
                                   static_cast<int>(align));

    return reinterpret_cast<wxd_DataViewRenderer_t*>(renderer);
}

WXD_EXPORTED wxd_DataViewRenderer_t*
wxd_DataViewChoiceRenderer_Create(const char* varianttype, const char* choices_str, int64_t mode,
                                  int64_t align)
{
    wxString wxChoices = wxString::FromUTF8(choices_str ? choices_str : "");

    // Parse choices and create wxArrayString
    wxArrayString choices;
    wxStringTokenizer tokenizer(wxChoices, ",");
    while (tokenizer.HasMoreTokens()) {
        choices.Add(tokenizer.GetNextToken().Trim());
    }

    wxDataViewChoiceRenderer* renderer =
        new wxDataViewChoiceRenderer(choices, static_cast<wxDataViewCellMode>(mode),
                                     static_cast<int>(align));

    return reinterpret_cast<wxd_DataViewRenderer_t*>(renderer);
}

WXD_EXPORTED wxd_DataViewRenderer_t*
wxd_DataViewCheckIconTextRenderer_Create(const char* varianttype, int64_t mode, int64_t align)
{
    // This renderer doesn't accept a varianttype parameter
    wxDataViewCheckIconTextRenderer* renderer =
        new wxDataViewCheckIconTextRenderer(static_cast<wxDataViewCellMode>(mode),
                                            static_cast<int>(align));

    return reinterpret_cast<wxd_DataViewRenderer_t*>(renderer);
}

// Custom Renderer Implementation - stores callbacks directly in the instance
class WxdDataViewCustomRenderer : public wxDataViewCustomRenderer {
public:
    typedef wxd_Size_t (*GetSizeCallback)(void* user_data);
    typedef bool (*RenderCallback)(void* user_data, wxd_Rect_t cell, void* dc, int state);
    typedef bool (*SetValueCallback)(void* user_data, const wxd_Variant_t* value);
    typedef wxd_Variant_t* (*GetValueCallback)(void* user_data);
    typedef bool (*HasEditorCtrlCallback)(void* user_data);
    typedef void* (*CreateEditorCtrlCallback)(void* user_data, void* parent, wxd_Rect_t label_rect,
                                              const wxd_Variant_t* value);
    typedef wxd_Variant_t* (*GetValueFromEditorCtrlCallback)(void* user_data, void* editor);
    typedef bool (*ActivateCellCallback)(void* user_data, wxd_Rect_t cell, void* model, void* item,
                                         unsigned int col, void* mouse_event);

    WxdDataViewCustomRenderer(const wxString& varianttype, wxDataViewCellMode mode, int align,
                              void* user_data, GetSizeCallback get_size_callback,
                              RenderCallback render_callback, SetValueCallback set_value_callback,
                              GetValueCallback get_value_callback,
                              HasEditorCtrlCallback has_editor_callback,
                              CreateEditorCtrlCallback create_editor_callback,
                              GetValueFromEditorCtrlCallback get_value_from_editor_callback,
                              ActivateCellCallback activate_cell_callback)
        : wxDataViewCustomRenderer(varianttype, mode, align), m_user_data(user_data),
          m_get_size_callback(get_size_callback), m_render_callback(render_callback),
          m_set_value_callback(set_value_callback), m_get_value_callback(get_value_callback),
          m_has_editor_callback(has_editor_callback),
          m_create_editor_callback(create_editor_callback),
          m_get_value_from_editor_callback(get_value_from_editor_callback),
          m_activate_cell_callback(activate_cell_callback)
    {
        // Constructor implementation without debug logs
        WXD_LOG_TRACEF("WxdDataViewCustomRenderer created with pointer %p", this);
    }

    virtual ~WxdDataViewCustomRenderer()
    {
        // Destructor implementation without debug logs
        WXD_LOG_TRACEF("WxdDataViewCustomRenderer destroyed with pointer %p", this);
    }

    // Size calculation for custom rendering
    virtual wxSize
    GetSize() const override
    {
        if (m_get_size_callback && m_user_data) {
            wxd_Size_t size = m_get_size_callback(m_user_data);
            return wxSize(size.width, size.height);
        }
        return wxSize(80, 20); // Default size
    }

    virtual bool
    Render(wxRect cell, wxDC* dc, int state) override
    {
        if (m_render_callback && m_user_data) {
            wxd_Rect_t cell_rect = { cell.x, cell.y, cell.width, cell.height };
            bool result = m_render_callback(m_user_data, cell_rect, dc, state);
            return result;
        }
        return false;
    }

    virtual bool
    SetValue(const wxVariant& value) override
    {
        if (m_set_value_callback && m_user_data) {
            const wxd_Variant_t* var_data = reinterpret_cast<const wxd_Variant_t*>(&value);
            return m_set_value_callback(m_user_data, var_data);
        }
        return true;
    }

    virtual bool
    GetValue(wxVariant& value) const override
    {
        if (m_get_value_callback && m_user_data) {
            wxd_Variant_t* var_data = m_get_value_callback(m_user_data);
            if (!var_data)
                return false;

            value = *reinterpret_cast<wxVariant*>(var_data);
            delete reinterpret_cast<wxVariant*>(var_data);
            return true;
        }
        // No callback available, return an empty string variant
        value = wxString();
        return true;
    }

    // Optional editing support
    virtual bool
    HasEditorCtrl() const override
    {
        if (m_has_editor_callback && m_user_data) {
            return m_has_editor_callback(m_user_data);
        }
        return false;
    }

    virtual wxWindow*
    CreateEditorCtrl(wxWindow* parent, wxRect labelRect, const wxVariant& value) override
    {
        if (m_create_editor_callback && m_user_data) {
            // Convert value to wxd_Variant_t
            const wxd_Variant_t* var_data = reinterpret_cast<const wxd_Variant_t*>(&value);

            wxd_Rect_t rect = { labelRect.x, labelRect.y, labelRect.width, labelRect.height };
            void* editor = m_create_editor_callback(m_user_data, parent, rect, var_data);

            return reinterpret_cast<wxWindow*>(editor);
        }
        return nullptr;
    }

    virtual bool
    GetValueFromEditorCtrl(wxWindow* editor, wxVariant& value) override
    {
        if (m_get_value_from_editor_callback && m_user_data && editor) {
            wxd_Variant_t* var_data = m_get_value_from_editor_callback(m_user_data, editor);
            if (var_data) {
                value = *reinterpret_cast<wxVariant*>(var_data);
                delete reinterpret_cast<wxVariant*>(var_data);
                return true;
            }
        }
        return false;
    }

    // Optional cell activation support
    virtual bool
    ActivateCell(const wxRect& cell, wxDataViewModel* model, const wxDataViewItem& item,
                 unsigned int col, const wxMouseEvent* mouseEvent) override
    {
        if (m_activate_cell_callback && m_user_data) {
            wxd_Rect_t cell_rect = { cell.x, cell.y, cell.width, cell.height };
            return m_activate_cell_callback(m_user_data, cell_rect, model, (void*)item.GetID(), col,
                                            (void*)mouseEvent);
        }
        return false;
    }

private:
    void* m_user_data;
    GetSizeCallback m_get_size_callback;
    RenderCallback m_render_callback;
    SetValueCallback m_set_value_callback;
    GetValueCallback m_get_value_callback;
    HasEditorCtrlCallback m_has_editor_callback;
    CreateEditorCtrlCallback m_create_editor_callback;
    GetValueFromEditorCtrlCallback m_get_value_from_editor_callback;
    ActivateCellCallback m_activate_cell_callback;
};

// Custom renderer creation
WXD_EXPORTED wxd_DataViewRenderer_t*
wxd_DataViewCustomRenderer_Create(
    const char* varianttype, int64_t mode, int64_t align, void* user_data,
    wxd_CustomRenderer_GetSizeCallback get_size_callback,
    wxd_CustomRenderer_RenderCallback render_callback,
    wxd_CustomRenderer_SetValueCallback set_value_callback,
    wxd_CustomRenderer_GetValueCallback get_value_callback,
    wxd_CustomRenderer_HasEditorCtrlCallback has_editor_callback,
    wxd_CustomRenderer_CreateEditorCtrlCallback create_editor_callback,
    wxd_CustomRenderer_GetValueFromEditorCtrlCallback get_value_from_editor_callback,
    wxd_CustomRenderer_ActivateCellCallback activate_cell_callback)
{
    try {
        wxString variant_type(varianttype, wxConvUTF8);
        WxdDataViewCustomRenderer* renderer =
            new WxdDataViewCustomRenderer(variant_type, static_cast<wxDataViewCellMode>(mode),
                                          static_cast<int>(align), user_data, get_size_callback,
                                          render_callback, set_value_callback, get_value_callback,
                                          has_editor_callback, create_editor_callback,
                                          get_value_from_editor_callback, activate_cell_callback);

        return reinterpret_cast<wxd_DataViewRenderer_t*>(renderer);
    }
    catch (const std::exception& e) {
        return nullptr;
    }
    catch (...) {
        return nullptr;
    }
}

// Function to release callbacks by renderer ID (no longer needed with direct storage)
WXD_EXPORTED void
wxd_DataViewCustomRenderer_ReleaseCallbacksByKey(int32_t renderer_id)
{
    // No-op: callbacks are now cleaned up automatically when renderer is destroyed
}

// Function to release all callbacks for a specific dataview ID (no longer needed)
WXD_EXPORTED void
wxd_DataViewCustomRenderer_ReleaseAllCallbacksForDataView(int32_t dataview_id)
{
    // No-op: callbacks are now cleaned up automatically when renderers are destroyed
}

// Cleanup function for custom renderer callbacks (legacy - no longer needed)
WXD_EXPORTED void
wxd_DataViewCustomRenderer_ReleaseCallbacks(wxd_DataViewRenderer_t* renderer)
{
    // No-op: callbacks are now cleaned up automatically in destructor
}

// DataViewModel implementation
class WxDDataViewModel : public wxDataViewModel {
private:
    wxd_DataViewModel_GetColumnCountCallback m_get_column_count;
    wxd_DataViewModel_GetRowCountCallback m_get_row_count;
    wxd_DataViewModel_GetValueCallback m_get_value;
    wxd_DataViewModel_SetValueCallback m_set_value;
    void* m_user_data;

public:
    WxDDataViewModel(wxd_DataViewModel_GetColumnCountCallback get_column_count,
                     wxd_DataViewModel_GetRowCountCallback get_row_count,
                     wxd_DataViewModel_GetValueCallback get_value,
                     wxd_DataViewModel_SetValueCallback set_value, void* user_data)
        : m_get_column_count(get_column_count), m_get_row_count(get_row_count),
          m_get_value(get_value), m_set_value(set_value), m_user_data(user_data)
    {
        WXD_LOG_TRACEF("WxDDataViewModel created with pointer %p", this);
    }

    virtual ~WxDDataViewModel()
    {
        WXD_LOG_TRACEF("WxDDataViewModel destroyed with pointer %p", this);
    }

    // wxDataViewModel interface implementation
    virtual unsigned int
    GetColumnCount() const override
    {
        if (!m_get_column_count)
            return 0;
        return static_cast<unsigned int>(m_get_column_count(m_user_data));
    }

    virtual wxString
    GetColumnType(unsigned int col) const override
    {
        // We'll need a way to get column types...
        return wxS("string");
    }

    virtual void
    GetValue(wxVariant& variant, const wxDataViewItem& item, unsigned int col) const override
    {
        if (!m_get_value)
            return;

        // Convert wxDataViewItem to row index
        unsigned int row =
            wxDataViewItem(item).GetID() ?
                static_cast<unsigned int>(reinterpret_cast<uintptr_t>(item.GetID())) - 1 :
                0;

        // Create wxd_Variant_t for the callback
        wxd_Variant_t* wxd_variant = m_get_value(m_user_data, row, col);
        if (!wxd_variant)
            return;
        // Convert wxd_Variant_t to wxVariant
        variant = *reinterpret_cast<wxVariant*>(wxd_variant);
        delete reinterpret_cast<wxVariant*>(wxd_variant);
    }

    virtual bool
    SetValue(const wxVariant& variant, const wxDataViewItem& item, unsigned int col) override
    {
        if (!m_set_value)
            return false;

        // Convert wxDataViewItem to row index
        unsigned int row =
            wxDataViewItem(item).GetID() ?
                static_cast<unsigned int>(reinterpret_cast<uintptr_t>(item.GetID())) - 1 :
                0;

        const wxd_Variant_t* wxd_variant = reinterpret_cast<const wxd_Variant_t*>(&variant);
        // Call the callback
        return m_set_value(m_user_data, row, col, wxd_variant);
    }

    virtual wxDataViewItem
    GetParent(const wxDataViewItem& item) const override
    {
        // For list models, items have no parent
        return wxDataViewItem(nullptr);
    }

    virtual bool
    IsContainer(const wxDataViewItem& item) const override
    {
        // For list models, only the invisible root is a container
        return !item.IsOk();
    }

    virtual unsigned int
    GetChildren(const wxDataViewItem& parent, wxDataViewItemArray& children) const override
    {
        if (!m_get_row_count)
            return 0;

        // For a list model, only the invisible root item has children
        if (!parent.IsOk()) {
            int count = static_cast<int>(m_get_row_count(m_user_data));
            for (int i = 0; i < count; ++i) {
                // Use index as the item ID
                children.Add(
                    wxDataViewItem(reinterpret_cast<void*>(static_cast<uintptr_t>(i + 1))));
            }
            return count;
        }
        return 0;
    }
};

extern "C" void
wxd_DataViewModel_AddRef(wxd_DataViewModel_t* model)
{
    wxDataViewModel* m = reinterpret_cast<wxDataViewModel*>(model);
    if (m) {
        m->IncRef();
    }
}

extern "C" void
wxd_DataViewModel_Release(wxd_DataViewModel_t* model)
{
    wxDataViewModel* m = reinterpret_cast<wxDataViewModel*>(model);
    if (m) {
        m->DecRef();
    }
}

extern "C" int
wxd_DataViewModel_GetRefCount(const wxd_DataViewModel_t* model)
{
    const wxDataViewModel* m = reinterpret_cast<const wxDataViewModel*>(model);
    if (m) {
        return m->GetRefCount();
    }
    return 0;
}

// Model creation and attachment
WXD_EXPORTED wxd_DataViewModel_t*
wxd_DataViewModel_Create(wxd_DataViewModel_GetColumnCountCallback get_column_count,
                         wxd_DataViewModel_GetRowCountCallback get_row_count,
                         wxd_DataViewModel_GetValueCallback get_value,
                         wxd_DataViewModel_SetValueCallback set_value, void* user_data)
{
    if (!get_column_count || !get_row_count || !get_value)
        return nullptr;

    WxDDataViewModel* model =
        new WxDDataViewModel(get_column_count, get_row_count, get_value, set_value, user_data);

    return reinterpret_cast<wxd_DataViewModel_t*>(model);
}

WXD_EXPORTED bool
wxd_DataViewCtrl_AssociateModel(wxd_Window_t* self, wxd_DataViewModel_t* model)
{
    if (!self || !model)
        return false;

    wxDataViewCtrl* ctrl = reinterpret_cast<wxDataViewCtrl*>(self);
    wxDataViewModel* m = reinterpret_cast<wxDataViewModel*>(model);

    // AssociateModel returns a bool indicating success/failure, now the reference count is incremented by 1.
    bool result = ctrl->AssociateModel(m);

    return result;
}

// Selection management
WXD_EXPORTED bool
wxd_DataViewCtrl_SelectRow(wxd_Window_t* self, int64_t row)
{
    if (!self)
        return false;

    wxDataViewCtrl* ctrl = reinterpret_cast<wxDataViewCtrl*>(self);
    wxDataViewItem item(reinterpret_cast<void*>(static_cast<uintptr_t>(row + 1)));

    ctrl->Select(item);
    return true;
}

WXD_EXPORTED int64_t
wxd_DataViewCtrl_GetSelectedRow(wxd_Window_t* self)
{
    if (!self)
        return -1;

    wxDataViewCtrl* ctrl = reinterpret_cast<wxDataViewCtrl*>(self);
    wxDataViewItem item = ctrl->GetSelection();

    if (!item.IsOk())
        return -1;

    return reinterpret_cast<uintptr_t>(item.GetID()) - 1;
}

WXD_EXPORTED void
wxd_DataViewCtrl_UnselectAll(wxd_Window_t* self)
{
    if (!self)
        return;

    wxDataViewCtrl* ctrl = reinterpret_cast<wxDataViewCtrl*>(self);
    ctrl->UnselectAll();
}

// Standard DataViewListModel implementation
class WxDDataViewListModel : public wxDataViewListStore {
private:
    // Keep track of our columns
    struct ColumnInfo {
        wxString name;
        wxString type;
    };
    wxVector<ColumnInfo> m_columns;

public:
    WxDDataViewListModel()
    {
        WXD_LOG_TRACEF("WxDDataViewListModel created with pointer %p", this);
    }

    ~WxDDataViewListModel()
    {
        WXD_LOG_TRACEF("WxDDataViewListModel destroyed with pointer %p", this);
    }
    // Add a column to our model
    bool
    AppendColumnInfo(const wxString& name, const wxString& type = "string")
    {
        ColumnInfo info;
        info.name = name;
        info.type = type;
        m_columns.push_back(info);
        return true;
    }

    // Get number of columns we've defined
    unsigned int
    GetColumnCount() const
    {
        return static_cast<unsigned int>(m_columns.size());
    }
};

// Standard models
WXD_EXPORTED wxd_DataViewModel_t*
wxd_DataViewListModel_Create()
{
    WxDDataViewListModel* model = new WxDDataViewListModel();
    return reinterpret_cast<wxd_DataViewModel_t*>(model);
}

WXD_EXPORTED bool
wxd_DataViewListModel_AppendColumn(wxd_DataViewModel_t* self, const char* name)
{
    if (!self)
        return false;

    WxDDataViewListModel* model = reinterpret_cast<WxDDataViewListModel*>(self);
    wxString wxName = wxString::FromUTF8(name ? name : "");

    // Actually add the column to our model
    return model->AppendColumnInfo(wxName);
}

WXD_EXPORTED bool
wxd_DataViewListModel_AppendRow(wxd_DataViewModel_t* self)
{
    if (!self)
        return false;

    WxDDataViewListModel* model = reinterpret_cast<WxDDataViewListModel*>(self);

    // Get the number of columns from our model
    size_t colCount = model->GetColumnCount();
    if (colCount == 0) {
        // No columns defined yet, can't add rows
        return false;
    }

    // Create proper-sized vector of variants for the new row
    wxVector<wxVariant> values;
    values.resize(colCount); // Initialize with empty values for each column

    model->AppendItem(values);
    return true;
}

WXD_EXPORTED bool
wxd_DataViewListModel_SetValue(wxd_DataViewModel_t* self, size_t row, size_t col,
                               const wxd_Variant_t* variant)
{
    if (!self || !variant)
        return false;

    WxDDataViewListModel* model = reinterpret_cast<WxDDataViewListModel*>(self);

    // Make sure we have enough columns defined
    if (col >= model->GetColumnCount()) {
        return false; // Column index out of bounds
    }

    // Create a wxVariant from our wxd_Variant_t
    wxVariant wxVariantValue = *reinterpret_cast<const wxVariant*>(variant);
    // FIXME: Create a wxDataViewItem for the row
    wxDataViewItem item(reinterpret_cast<void*>(static_cast<size_t>(row + 1)));

    // Set the value
    return model->SetValue(wxVariantValue, item, static_cast<unsigned int>(col));
}

// Column management
WXD_EXPORTED int
wxd_DataViewCtrl_GetColumnCount(wxd_Window_t* self)
{
    wxDataViewCtrl* ctrl = reinterpret_cast<wxDataViewCtrl*>(self);
    if (!ctrl)
        return 0;
    return ctrl->GetColumnCount();
}

WXD_EXPORTED wxd_DataViewColumn_t*
wxd_DataViewCtrl_GetColumn(wxd_Window_t* self, uint32_t pos)
{
    wxDataViewCtrl* ctrl = reinterpret_cast<wxDataViewCtrl*>(self);
    if (!ctrl)
        return nullptr;
    return reinterpret_cast<wxd_DataViewColumn_t*>(ctrl->GetColumn(pos));
}

WXD_EXPORTED int
wxd_DataViewCtrl_GetColumnPosition(wxd_Window_t* self, wxd_DataViewColumn_t* column)
{
    wxDataViewCtrl* ctrl = reinterpret_cast<wxDataViewCtrl*>(self);
    wxDataViewColumn* col = reinterpret_cast<wxDataViewColumn*>(column);
    if (!ctrl || !col)
        return -1;
    return ctrl->GetColumnPosition(col);
}

WXD_EXPORTED bool
wxd_DataViewCtrl_ClearColumns(wxd_Window_t* self)
{
    wxDataViewCtrl* ctrl = reinterpret_cast<wxDataViewCtrl*>(self);
    if (!ctrl)
        return false;
    return ctrl->ClearColumns();
}

// Item management
WXD_EXPORTED void
wxd_DataViewCtrl_Select(wxd_Window_t* self, const wxd_DataViewItem_t* item)
{
    wxDataViewCtrl* ctrl = reinterpret_cast<wxDataViewCtrl*>(self);
    if (!ctrl)
        return;
    const wxDataViewItem* inner = reinterpret_cast<const wxDataViewItem*>(item);
    if (!inner)
        return;
    ctrl->Select(*inner);
}

WXD_EXPORTED void
wxd_DataViewCtrl_Unselect(wxd_Window_t* self, const wxd_DataViewItem_t* item)
{
    wxDataViewCtrl* ctrl = reinterpret_cast<wxDataViewCtrl*>(self);
    if (!ctrl)
        return;
    const wxDataViewItem* inner = reinterpret_cast<const wxDataViewItem*>(item);
    if (!inner)
        return;
    ctrl->Unselect(*inner);
}

WXD_EXPORTED void
wxd_DataViewCtrl_SelectAll(wxd_Window_t* self)
{
    wxDataViewCtrl* ctrl = reinterpret_cast<wxDataViewCtrl*>(self);
    if (!ctrl)
        return;
    ctrl->SelectAll();
}

WXD_EXPORTED bool
wxd_DataViewCtrl_IsSelected(wxd_Window_t* self, const wxd_DataViewItem_t* item)
{
    wxDataViewCtrl* ctrl = reinterpret_cast<wxDataViewCtrl*>(self);
    if (!ctrl)
        return false;
    const wxDataViewItem* inner = reinterpret_cast<const wxDataViewItem*>(item);
    if (!inner)
        return false;
    return ctrl->IsSelected(*inner);
}

WXD_EXPORTED uint32_t
wxd_DataViewCtrl_GetSelectedItemsCount(wxd_Window_t* self)
{
    wxDataViewCtrl* ctrl = reinterpret_cast<wxDataViewCtrl*>(self);
    if (!ctrl)
        return 0;
    return ctrl->GetSelectedItemsCount();
}

WXD_EXPORTED const wxd_DataViewItem_t*
wxd_DataViewCtrl_GetSelection(wxd_Window_t* self)
{
    wxDataViewCtrl* ctrl = reinterpret_cast<wxDataViewCtrl*>(self);
    if (!ctrl)
        return nullptr;

    wxDataViewItem item = ctrl->GetSelection();
    if (!item.IsOk())
        return nullptr;
    return wxd_DataViewItem_Clone(reinterpret_cast<const wxd_DataViewItem_t*>(&item));
}

WXD_EXPORTED void
wxd_DataViewCtrl_GetSelections(wxd_Window_t* self, const wxd_DataViewItem_t** items,
                               uint32_t max_count)
{
    wxDataViewCtrl* ctrl = reinterpret_cast<wxDataViewCtrl*>(self);
    if (!ctrl || !items || max_count == 0)
        return;

    wxDataViewItemArray selections;
    ctrl->GetSelections(selections);

    // Only include valid selections (IsOk) in the results. Skip invalid
    // entries and stop when we've filled up to max_count.
    uint32_t written = 0;
    uint32_t total = static_cast<uint32_t>(selections.GetCount());
    for (uint32_t i = 0; i < total && written < max_count; ++i) {
        if (!selections[i].IsOk())
            continue; // skip invalid items
        items[written++] =
            wxd_DataViewItem_Clone(reinterpret_cast<const wxd_DataViewItem_t*>(&selections[i]));
    }
}

WXD_EXPORTED void
wxd_DataViewCtrl_SetSelections(wxd_Window_t* self, const wxd_DataViewItem_t* const* items,
                               uint32_t count)
{
    wxDataViewCtrl* ctrl = reinterpret_cast<wxDataViewCtrl*>(self);
    if (!ctrl || !items || count == 0)
        return;

    wxDataViewItemArray selections;
    selections.Alloc(count);

    for (uint32_t i = 0; i < count; i++) {
        const wxDataViewItem* inner = reinterpret_cast<const wxDataViewItem*>(items[i]);
        selections.Add(*inner);
    }

    ctrl->SetSelections(selections);
}

WXD_EXPORTED const wxd_DataViewItem_t*
wxd_DataViewCtrl_GetCurrentItem(wxd_Window_t* self)
{
    wxDataViewCtrl* ctrl = reinterpret_cast<wxDataViewCtrl*>(self);
    if (!ctrl)
        return nullptr;

    wxDataViewItem item = ctrl->GetCurrentItem();
    if (!item.IsOk())
        return nullptr;
    return wxd_DataViewItem_Clone(reinterpret_cast<const wxd_DataViewItem_t*>(&item));
}

WXD_EXPORTED void
wxd_DataViewCtrl_SetCurrentItem(wxd_Window_t* self, const wxd_DataViewItem_t* item)
{
    wxDataViewCtrl* ctrl = reinterpret_cast<wxDataViewCtrl*>(self);
    if (!ctrl || !item)
        return;
    const wxDataViewItem* inner = reinterpret_cast<const wxDataViewItem*>(item);
    ctrl->SetCurrentItem(*inner);
}

// Visual appearance
WXD_EXPORTED int
wxd_DataViewCtrl_GetIndent(wxd_Window_t* self)
{
    wxDataViewCtrl* ctrl = reinterpret_cast<wxDataViewCtrl*>(self);
    if (!ctrl)
        return 0;
    return ctrl->GetIndent();
}

WXD_EXPORTED void
wxd_DataViewCtrl_SetIndent(wxd_Window_t* self, int indent)
{
    wxDataViewCtrl* ctrl = reinterpret_cast<wxDataViewCtrl*>(self);
    if (!ctrl)
        return;
    ctrl->SetIndent(indent);
}

WXD_EXPORTED wxd_DataViewColumn_t*
wxd_DataViewCtrl_GetExpanderColumn(wxd_Window_t* self)
{
    wxDataViewCtrl* ctrl = reinterpret_cast<wxDataViewCtrl*>(self);
    if (!ctrl)
        return nullptr;
    return reinterpret_cast<wxd_DataViewColumn_t*>(ctrl->GetExpanderColumn());
}

WXD_EXPORTED void
wxd_DataViewCtrl_SetExpanderColumn(wxd_Window_t* self, wxd_DataViewColumn_t* column)
{
    wxDataViewCtrl* ctrl = reinterpret_cast<wxDataViewCtrl*>(self);
    wxDataViewColumn* col = reinterpret_cast<wxDataViewColumn*>(column);
    if (!ctrl || !col)
        return;
    ctrl->SetExpanderColumn(col);
}

WXD_EXPORTED bool
wxd_DataViewCtrl_SetRowHeight(wxd_Window_t* self, int height)
{
    wxDataViewCtrl* ctrl = reinterpret_cast<wxDataViewCtrl*>(self);
    if (!ctrl)
        return false;
    return ctrl->SetRowHeight(height);
}

WXD_EXPORTED bool
wxd_DataViewCtrl_SetAlternateRowColour(wxd_Window_t* self, const wxd_Colour_t* colour)
{
    wxDataViewCtrl* ctrl = reinterpret_cast<wxDataViewCtrl*>(self);
    if (!ctrl || !colour)
        return false;

    wxColour wxColour(colour->r, colour->g, colour->b, colour->a);
    return ctrl->SetAlternateRowColour(wxColour);
}

// Sorting controls
WXD_EXPORTED void
wxd_DataViewCtrl_ClearSorting(wxd_Window_t* self)
{
    wxDataViewCtrl* ctrl = reinterpret_cast<wxDataViewCtrl*>(self);
    if (!ctrl)
        return;
    WXD_LOG_TRACEF("ClearSorting called on ctrl %p", ctrl);
    const int count = ctrl->GetColumnCount();
    for (int i = 0; i < count; ++i) {
        wxDataViewColumn* col = ctrl->GetColumn(static_cast<unsigned int>(i));
        if (col && col->IsSortKey()) {
            WXD_LOG_TRACEF(" - UnsetAsSortKey for column %d", i);
            col->UnsetAsSortKey();
        }
    }
}

WXD_EXPORTED bool
wxd_DataViewCtrl_SetSortingColumn(wxd_Window_t* self, int32_t column_index, bool ascending)
{
    wxDataViewCtrl* ctrl = reinterpret_cast<wxDataViewCtrl*>(self);
    if (!ctrl)
        return false;
    const int count = ctrl->GetColumnCount();
    if (count <= 0)
        return false;

    // Map model column index to view/display position
    int view_pos = -1;
    wxDataViewColumn* col = nullptr;
    for (int i = 0; i < count; ++i) {
        wxDataViewColumn* c = ctrl->GetColumn(static_cast<unsigned int>(i));
        if (c && static_cast<int>(c->GetModelColumn()) == column_index) {
            view_pos = i;
            col = c;
            break;
        }
    }
    if (view_pos < 0 || !col)
        return false;

    const bool is_key = col->IsSortKey();
    const bool is_asc = col->IsSortOrderAscending();
    WXD_LOG_TRACEF("SetSortingColumn called on ctrl %p, col=%d asc=%d", ctrl, (int)column_index,
                   (int)ascending);
    WXD_LOG_TRACEF(" - before: is_key=%d is_asc=%d", (int)is_key, (int)is_asc);

    if (!is_key) {
        // Programmatically set desired order; this also marks it as sort key
        col->SetSortOrder(ascending);
    }
    else if (is_asc != ascending) {
        // Already the sort key; just change direction
        col->SetSortOrder(ascending);
    }

    // Ask the model/control to resort based on the new sort key/order
    if (wxDataViewModel* m = ctrl->GetModel()) {
        m->Resort();
    }

    // Ensure UI updates promptly
    ctrl->Refresh();
    ctrl->Update();

    // Log after-state
    const bool after_key = col->IsSortKey();
    const bool after_asc = col->IsSortOrderAscending();
    WXD_LOG_TRACEF(" - after: is_key=%d is_asc=%d", (int)after_key, (int)after_asc);

    return true;
}

WXD_EXPORTED bool
wxd_DataViewCtrl_GetSortingState(const wxd_Window_t* self, int32_t* model_column, bool* ascending)
{
    const wxDataViewCtrl* ctrl = reinterpret_cast<const wxDataViewCtrl*>(self);
    if (!ctrl)
        return false;

    if (model_column)
        *model_column = -1;
    if (ascending)
        *ascending = true;

    // Prefer API if available
    wxDataViewColumn* col = ctrl->GetSortingColumn();
    if (!col) {
        // Fallback: scan columns for sort key
        const int count = ctrl->GetColumnCount();
        for (int i = 0; i < count; ++i) {
            wxDataViewColumn* c = ctrl->GetColumn(static_cast<unsigned int>(i));
            if (c && c->IsSortKey()) {
                col = c;
                break;
            }
        }
    }

    if (!col)
        return false;

    if (model_column)
        *model_column = static_cast<int32_t>(col->GetModelColumn());
    if (ascending)
        *ascending = col->IsSortOrderAscending();
    return true;
}

// DataViewColumn property implementations
WXD_EXPORTED void
wxd_DataViewColumn_SetTitle(wxd_DataViewColumn_t* self, const char* title)
{
    wxDataViewColumn* col = reinterpret_cast<wxDataViewColumn*>(self);
    if (col) {
        col->SetTitle(WXD_STR_TO_WX_STRING_UTF8_NULL_OK(title));
    }
}

WXD_EXPORTED void
wxd_DataViewColumn_SetResizeable(wxd_DataViewColumn_t* self, bool resizeable)
{
    wxDataViewColumn* col = reinterpret_cast<wxDataViewColumn*>(self);
    if (col) {
        col->SetResizeable(resizeable);
    }
}

WXD_EXPORTED bool
wxd_DataViewColumn_IsResizeable(wxd_DataViewColumn_t* self)
{
    wxDataViewColumn* col = reinterpret_cast<wxDataViewColumn*>(self);
    if (col) {
        return col->IsResizeable();
    }
    return false; // Default if col is null
}

WXD_EXPORTED void
wxd_DataViewColumn_SetSortable(wxd_DataViewColumn_t* self, bool sortable)
{
    wxDataViewColumn* col = reinterpret_cast<wxDataViewColumn*>(self);
    if (col) {
        col->SetSortable(sortable);
    }
}

WXD_EXPORTED bool
wxd_DataViewColumn_IsSortable(wxd_DataViewColumn_t* self)
{
    wxDataViewColumn* col = reinterpret_cast<wxDataViewColumn*>(self);
    if (col) {
        return col->IsSortable();
    }
    return false; // Default if col is null
}

// =============================================================================
// DataViewListModel (DataViewListStore) - CRUD Operations
// =============================================================================

WXD_EXPORTED uint32_t
wxd_DataViewListModel_GetItemCount(wxd_DataViewModel_t* self)
{
    if (!self)
        return 0;
    WxDDataViewListModel* model = reinterpret_cast<WxDDataViewListModel*>(self);
    return static_cast<uint32_t>(model->GetCount());
}

WXD_EXPORTED bool
wxd_DataViewListModel_PrependRow(wxd_DataViewModel_t* self)
{
    if (!self)
        return false;
    WxDDataViewListModel* model = reinterpret_cast<WxDDataViewListModel*>(self);

    size_t colCount = model->GetColumnCount();
    if (colCount == 0)
        return false;

    wxVector<wxVariant> values;
    values.resize(colCount);
    model->PrependItem(values);
    return true;
}

WXD_EXPORTED bool
wxd_DataViewListModel_InsertRow(wxd_DataViewModel_t* self, uint32_t pos)
{
    if (!self)
        return false;
    WxDDataViewListModel* model = reinterpret_cast<WxDDataViewListModel*>(self);

    size_t colCount = model->GetColumnCount();
    if (colCount == 0)
        return false;

    wxVector<wxVariant> values;
    values.resize(colCount);
    model->InsertItem(pos, values);
    return true;
}

WXD_EXPORTED bool
wxd_DataViewListModel_DeleteItem(wxd_DataViewModel_t* self, uint32_t row)
{
    if (!self)
        return false;
    WxDDataViewListModel* model = reinterpret_cast<WxDDataViewListModel*>(self);
    model->DeleteItem(row);
    return true;
}

WXD_EXPORTED bool
wxd_DataViewListModel_DeleteAllItems(wxd_DataViewModel_t* self)
{
    if (!self)
        return false;
    WxDDataViewListModel* model = reinterpret_cast<WxDDataViewListModel*>(self);
    model->DeleteAllItems();
    return true;
}

WXD_EXPORTED wxd_Variant_t*
wxd_DataViewListModel_GetValue(wxd_DataViewModel_t* self, size_t row, size_t col)
{
    if (!self)
        return nullptr;
    WxDDataViewListModel* model = reinterpret_cast<WxDDataViewListModel*>(self);

    wxVariant value;
    model->GetValueByRow(value, static_cast<unsigned int>(row), static_cast<unsigned int>(col));

    // Allocate a new wxVariant on the heap and return it
    wxVariant* result = new wxVariant(value);
    return reinterpret_cast<wxd_Variant_t*>(result);
}

// =============================================================================
// DataViewListCtrl - CRUD Operations
// =============================================================================

WXD_EXPORTED bool
wxd_DataViewListCtrl_AppendItem(wxd_Window_t* self, const wxd_Variant_t* const* values,
                                uint32_t count, uintptr_t data)
{
    if (!self)
        return false;
    wxDataViewListCtrl* ctrl = reinterpret_cast<wxDataViewListCtrl*>(self);

    wxVector<wxVariant> wxValues;
    wxValues.reserve(count);
    for (uint32_t i = 0; i < count; ++i) {
        if (values[i]) {
            const wxVariant* v = reinterpret_cast<const wxVariant*>(values[i]);
            wxValues.push_back(*v);
        }
        else {
            wxValues.push_back(wxVariant());
        }
    }

    ctrl->AppendItem(wxValues, static_cast<wxUIntPtr>(data));
    return true;
}

WXD_EXPORTED bool
wxd_DataViewListCtrl_PrependItem(wxd_Window_t* self, const wxd_Variant_t* const* values,
                                 uint32_t count, uintptr_t data)
{
    if (!self)
        return false;
    wxDataViewListCtrl* ctrl = reinterpret_cast<wxDataViewListCtrl*>(self);

    wxVector<wxVariant> wxValues;
    wxValues.reserve(count);
    for (uint32_t i = 0; i < count; ++i) {
        if (values[i]) {
            const wxVariant* v = reinterpret_cast<const wxVariant*>(values[i]);
            wxValues.push_back(*v);
        }
        else {
            wxValues.push_back(wxVariant());
        }
    }

    ctrl->PrependItem(wxValues, static_cast<wxUIntPtr>(data));
    return true;
}

WXD_EXPORTED bool
wxd_DataViewListCtrl_InsertItem(wxd_Window_t* self, uint32_t row,
                                const wxd_Variant_t* const* values, uint32_t count, uintptr_t data)
{
    if (!self)
        return false;
    wxDataViewListCtrl* ctrl = reinterpret_cast<wxDataViewListCtrl*>(self);

    wxVector<wxVariant> wxValues;
    wxValues.reserve(count);
    for (uint32_t i = 0; i < count; ++i) {
        if (values[i]) {
            const wxVariant* v = reinterpret_cast<const wxVariant*>(values[i]);
            wxValues.push_back(*v);
        }
        else {
            wxValues.push_back(wxVariant());
        }
    }

    ctrl->InsertItem(row, wxValues, static_cast<wxUIntPtr>(data));
    return true;
}

WXD_EXPORTED bool
wxd_DataViewListCtrl_DeleteItem(wxd_Window_t* self, uint32_t row)
{
    if (!self)
        return false;
    wxDataViewListCtrl* ctrl = reinterpret_cast<wxDataViewListCtrl*>(self);
    ctrl->DeleteItem(row);
    return true;
}

WXD_EXPORTED void
wxd_DataViewListCtrl_DeleteAllItems(wxd_Window_t* self)
{
    if (!self)
        return;
    wxDataViewListCtrl* ctrl = reinterpret_cast<wxDataViewListCtrl*>(self);
    ctrl->DeleteAllItems();
}

WXD_EXPORTED uint32_t
wxd_DataViewListCtrl_GetItemCount(wxd_Window_t* self)
{
    if (!self)
        return 0;
    wxDataViewListCtrl* ctrl = reinterpret_cast<wxDataViewListCtrl*>(self);
    return static_cast<uint32_t>(ctrl->GetItemCount());
}

WXD_EXPORTED void
wxd_DataViewListCtrl_SetValue(wxd_Window_t* self, uint32_t row, uint32_t col,
                              const wxd_Variant_t* value)
{
    if (!self || !value)
        return;
    wxDataViewListCtrl* ctrl = reinterpret_cast<wxDataViewListCtrl*>(self);
    const wxVariant* v = reinterpret_cast<const wxVariant*>(value);
    ctrl->SetValue(*v, row, col);
}

WXD_EXPORTED wxd_Variant_t*
wxd_DataViewListCtrl_GetValue(wxd_Window_t* self, uint32_t row, uint32_t col)
{
    if (!self)
        return nullptr;
    wxDataViewListCtrl* ctrl = reinterpret_cast<wxDataViewListCtrl*>(self);

    wxVariant value;
    ctrl->GetValue(value, row, col);

    wxVariant* result = new wxVariant(value);
    return reinterpret_cast<wxd_Variant_t*>(result);
}

// Thread-local storage for GetTextValue return string
static thread_local wxString g_text_value_buffer;

WXD_EXPORTED void
wxd_DataViewListCtrl_SetTextValue(wxd_Window_t* self, uint32_t row, uint32_t col, const char* value)
{
    if (!self)
        return;
    wxDataViewListCtrl* ctrl = reinterpret_cast<wxDataViewListCtrl*>(self);
    wxString wxValue = wxString::FromUTF8(value ? value : "");
    ctrl->SetTextValue(wxValue, row, col);
}

WXD_EXPORTED const char*
wxd_DataViewListCtrl_GetTextValue(wxd_Window_t* self, uint32_t row, uint32_t col)
{
    if (!self)
        return "";
    wxDataViewListCtrl* ctrl = reinterpret_cast<wxDataViewListCtrl*>(self);
    g_text_value_buffer = ctrl->GetTextValue(row, col);
    return g_text_value_buffer.utf8_str().data();
}

WXD_EXPORTED void
wxd_DataViewListCtrl_SetToggleValue(wxd_Window_t* self, uint32_t row, uint32_t col, bool value)
{
    if (!self)
        return;
    wxDataViewListCtrl* ctrl = reinterpret_cast<wxDataViewListCtrl*>(self);
    ctrl->SetToggleValue(value, row, col);
}

WXD_EXPORTED bool
wxd_DataViewListCtrl_GetToggleValue(wxd_Window_t* self, uint32_t row, uint32_t col)
{
    if (!self)
        return false;
    wxDataViewListCtrl* ctrl = reinterpret_cast<wxDataViewListCtrl*>(self);
    return ctrl->GetToggleValue(row, col);
}

WXD_EXPORTED int32_t
wxd_DataViewListCtrl_ItemToRow(wxd_Window_t* self, const wxd_DataViewItem_t* item)
{
    if (!self || !item)
        return -1;
    wxDataViewListCtrl* ctrl = reinterpret_cast<wxDataViewListCtrl*>(self);
    const wxDataViewItem* wxItem = reinterpret_cast<const wxDataViewItem*>(item);
    return ctrl->ItemToRow(*wxItem);
}

WXD_EXPORTED wxd_DataViewItem_t*
wxd_DataViewListCtrl_RowToItem(wxd_Window_t* self, int32_t row)
{
    if (!self || row < 0)
        return nullptr;
    wxDataViewListCtrl* ctrl = reinterpret_cast<wxDataViewListCtrl*>(self);
    wxDataViewItem item = ctrl->RowToItem(row);
    if (!item.IsOk())
        return nullptr;
    // wxd_DataViewItem_Clone returns const pointer, but we own this new item
    return const_cast<wxd_DataViewItem_t*>(
        wxd_DataViewItem_Clone(reinterpret_cast<const wxd_DataViewItem_t*>(&item)));
}

WXD_EXPORTED void
wxd_DataViewListCtrl_UnselectRow(wxd_Window_t* self, uint32_t row)
{
    if (!self)
        return;
    wxDataViewListCtrl* ctrl = reinterpret_cast<wxDataViewListCtrl*>(self);
    ctrl->UnselectRow(row);
}

WXD_EXPORTED bool
wxd_DataViewListCtrl_IsRowSelected(wxd_Window_t* self, uint32_t row)
{
    if (!self)
        return false;
    wxDataViewListCtrl* ctrl = reinterpret_cast<wxDataViewListCtrl*>(self);
    return ctrl->IsRowSelected(row);
}

WXD_EXPORTED void
wxd_DataViewListCtrl_SetItemData(wxd_Window_t* self, const wxd_DataViewItem_t* item, uintptr_t data)
{
    if (!self || !item)
        return;
    wxDataViewListCtrl* ctrl = reinterpret_cast<wxDataViewListCtrl*>(self);
    const wxDataViewItem* wxItem = reinterpret_cast<const wxDataViewItem*>(item);
    ctrl->SetItemData(*wxItem, static_cast<wxUIntPtr>(data));
}

WXD_EXPORTED uintptr_t
wxd_DataViewListCtrl_GetItemData(wxd_Window_t* self, const wxd_DataViewItem_t* item)
{
    if (!self || !item)
        return 0;
    wxDataViewListCtrl* ctrl = reinterpret_cast<wxDataViewListCtrl*>(self);
    const wxDataViewItem* wxItem = reinterpret_cast<const wxDataViewItem*>(item);
    return static_cast<uintptr_t>(ctrl->GetItemData(*wxItem));
}

} // extern "C"