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
|
#include "alf.h"
#include <windows.h>
#include <commctrl.h>
#include <windowsx.h>
#include <stdio.h>
#include <stddef.h>
#ifdef _MSC_VER
// MSVC6 for scoping hack
# define for if(0){}else for
#endif
typedef struct ALFListHeader {
struct ALFListHeader *prev;
struct ALFListHeader *next;
} ALFListHeader;
#define ALF_LIST_CONTAINER(ContainerType, containermember, listp) \
((ContainerType *)((char *)(listp) - offsetof(ContainerType, containermember)))
#define ALF_FOR_LIST(ContainerType, containermember, listp, iteratorvar) \
for (ALFListHeader *alf_list_##iteratorvar##_curr = (listp)->next, \
*alf_list_##iteratorvar##_next = alf_list_##iteratorvar##_curr->next; \
alf_list_##iteratorvar##_curr != (listp); \
alf_list_##iteratorvar##_curr = alf_list_##iteratorvar##_next, \
alf_list_##iteratorvar##_next = alf_list_##iteratorvar##_next->next) \
for (ContainerType *iteratorvar = (ContainerType *)((char *)alf_list_##iteratorvar##_curr - offsetof(ContainerType, containermember)); \
iteratorvar; iteratorvar = NULL) \
static inline BOOL
ALF_ListIsEmpty(ALFListHeader *list)
{
return list->next == list;
}
static inline void
ALF_ListInsert(ALFListHeader *list, ALFListHeader *newel)
{
newel->prev = list;
newel->next = list->next;
newel->next->prev = newel;
list->next = newel;
}
static inline void
ALF_ListRemove(ALFListHeader *member)
{
member->prev->next = member->next;
member->next->prev = member->prev;
member->next = NULL;
member->prev = NULL;
}
static inline void
ALF_ListInit(ALFListHeader *list)
{
list->next = list->prev = list;
}
typedef struct {
ALFListHeader list;
HWND hwnd;
UINT x;
UINT y;
UINT cptWidth;
UINT cptHeight;
UINT cptMarginTop;
UINT cptMarginRight;
UINT cptMarginBottom;
UINT cptMarginLeft;
DWORD flags;
} ALFWidgetPriv;
typedef struct {
int minWidth;
int allocatedWidth;
int allocatedPosition;
int expand : 1;
} ALFRowOrColumn;
typedef struct {
ALFRowOrColumn *columns;
ALFRowOrColumn *rows;
int nColumns;
int nRows;
int totalMinWidth;
int totalMinHeight;
int occupiedColumnCount;
int occupiedRowCount;
} ALFLayout;
typedef struct {
ALFAPP app;
ALFWindowVTable *vtbl;
void *closure;
ALFWindowFonts fonts;
ALFListHeader widgets;
int modalResult;
ALFLayout layout;
WORD defid;
HWND hwndFocus;
} ALFWindowPriv;
struct ALFAppPriv {
HINSTANCE hInstance;
ALFCompatFunctions *compatFn;
};
/* ALF App and Window */
static void
ALF_InitializeWindowPriv(HWND hwnd, ALFWindowPriv *priv, ALFWindowInstanceParams *params)
{
priv->vtbl = (ALFWindowVTable*)GetClassLongPtr(hwnd, 0);
priv->app = (ALFAPP)GetClassLongPtr(hwnd, sizeof(void*));
priv->closure = params->closure;
ALF_ListInit(&priv->widgets);
priv->defid = (WORD)-1;
}
static void
ALF_DestroyWindowPriv(ALFWindowPriv *priv)
{
if (priv->vtbl->postdestroy)
priv->vtbl->postdestroy(priv->closure);
ALF_FOR_LIST(ALFWidgetPriv, list, &priv->widgets, w) {
HeapFree(GetProcessHeap(), 0, w);
}
ALF_ListInit(&priv->widgets);
HeapFree(GetProcessHeap(), 0, priv->layout.columns);
HeapFree(GetProcessHeap(), 0, priv->layout.rows);
HeapFree(GetProcessHeap(), 0, priv);
}
int
ALF_CentipointsToPxPriv(ALFWindowPriv *priv, int cptValue)
{
return MulDiv(cptValue, priv->fonts.dpi, 7200);
}
static void
ALF_UpdateFontForWidget(ALFWindowPriv *priv, ALFWidgetPriv *widget)
{
if (widget->hwnd && (widget->flags & ALF_MESSAGEFONT) == ALF_MESSAGEFONT) {
SendMessage(widget->hwnd, WM_SETFONT, (WPARAM)priv->fonts.hMessageFont, (LPARAM)NULL);
}
}
void
ALF_UpdateFonts(HWND win)
{
// TODO per-monitor DPI aware: GetDpiForWindow, SystemParametersInfoForDpi etc.
ALFWindowPriv *priv = (ALFWindowPriv*)GetWindowLongPtr(win, 0);
priv->fonts.dpi = 0;
HDC hdcScreen = GetDC(NULL);
if (hdcScreen) {
priv->fonts.dpi = GetDeviceCaps(hdcScreen, LOGPIXELSY);
ReleaseDC(NULL, hdcScreen);
}
if (!priv->fonts.dpi) {
priv->fonts.dpi = 96; // FIXME! fallback to default DPI
}
NONCLIENTMETRICS ncm;
ZeroMemory(&ncm, sizeof(ncm));
ncm.cbSize = sizeof(ncm);
if (SystemParametersInfoW(SPI_GETNONCLIENTMETRICS, ncm.cbSize, &ncm, 0)) {
priv->fonts.lfMessageFont = ncm.lfMessageFont;
} else {
// FIXME! fallback to default font, 8pt MS Shell Dlg
ZeroMemory(&priv->fonts.lfMessageFont, sizeof(priv->fonts.lfMessageFont));
priv->fonts.lfMessageFont.lfHeight = -MulDiv(8, priv->fonts.dpi, 72);
lstrcpyW(priv->fonts.lfMessageFont.lfFaceName, L"MS Shell Dlg");
}
if (priv->fonts.hMessageFont) {
DeleteObject(priv->fonts.hMessageFont);
}
priv->fonts.hMessageFont = CreateFontIndirect(&priv->fonts.lfMessageFont);
ALF_FOR_LIST(ALFWidgetPriv, list, &priv->widgets, i) {
ALF_UpdateFontForWidget(priv, i);
}
if (priv->vtbl->updatefonts) {
priv->vtbl->updatefonts(priv->closure, win, &priv->fonts);
}
}
void
ALF_RecalculateLayout(HWND hwnd)
{
SIZE dummy;
SendMessage(hwnd, ALF_WM_QUERYSIZE, 0, (LPARAM)&dummy);
SendMessage(hwnd, ALF_WM_APPLYLAYOUT, 0, 0);
}
static void
ALF_CalculateSizes(ALFWindowPriv *win)
{
for (int i = 0; i < win->layout.nColumns; ++i) {
ZeroMemory(&win->layout.columns[i], sizeof(win->layout.columns[i]));
}
for (int i = 0; i < win->layout.nRows; ++i) {
ZeroMemory(&win->layout.rows[i], sizeof(win->layout.rows[i]));
}
ALF_FOR_LIST(ALFWidgetPriv, list, &win->widgets, c) {
while ((int)c->x >= win->layout.nColumns) {
// FIXME! overflow, use reallocarray(2) equivalent
if (win->layout.nColumns == 0) {
win->layout.nColumns = 1;
win->layout.columns = (ALFRowOrColumn*)HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY | HEAP_GENERATE_EXCEPTIONS, win->layout.nColumns*sizeof(win->layout.columns[0]));
} else {
win->layout.nColumns *= 2;
win->layout.columns = (ALFRowOrColumn*)HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY | HEAP_GENERATE_EXCEPTIONS, win->layout.columns, win->layout.nColumns*sizeof(win->layout.columns[0]));
}
}
while ((int)c->y >= win->layout.nRows) {
// FIXME! overflow, use reallocarray(2) equivalent
if (win->layout.nRows == 0) {
win->layout.nRows = 1;
win->layout.rows = (ALFRowOrColumn*)HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY | HEAP_GENERATE_EXCEPTIONS, win->layout.nRows*sizeof(win->layout.rows[0]));
} else {
win->layout.nRows *= 2;
win->layout.rows = (ALFRowOrColumn*)HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY | HEAP_GENERATE_EXCEPTIONS, win->layout.rows, win->layout.nRows*sizeof(win->layout.rows[0]));
}
}
// TODO: ignore spanning cell
SIZE qs = { ALF_CentipointsToPxPriv(win, c->cptWidth),
ALF_CentipointsToPxPriv(win, c->cptHeight) };
if ((c->flags & ALF_QUERYSIZE) == ALF_QUERYSIZE) {
SendMessage(c->hwnd, ALF_WM_QUERYSIZE, 0, (LPARAM)&qs);
}
qs.cx += ALF_CentipointsToPxPriv(win, c->cptMarginLeft);
qs.cx += ALF_CentipointsToPxPriv(win, c->cptMarginRight);
qs.cy += ALF_CentipointsToPxPriv(win, c->cptMarginTop);
qs.cy += ALF_CentipointsToPxPriv(win, c->cptMarginBottom);
if (qs.cx > win->layout.columns[c->x].minWidth)
win->layout.columns[c->x].minWidth = qs.cx;
if (qs.cy > win->layout.rows[c->y].minWidth)
win->layout.rows[c->y].minWidth = qs.cy;
// TODO: expand flag
}
// TODO: second pass for spanning cells
// update min width bookkeeping
win->layout.totalMinWidth = 0;
win->layout.occupiedColumnCount = 0;
for (int i = 0; i < win->layout.nColumns; ++i) {
if (win->layout.columns[i].minWidth > 0) {
win->layout.totalMinWidth += win->layout.columns[i].minWidth;
win->layout.occupiedColumnCount++;
// TODO: expand flag
}
}
win->layout.totalMinHeight = 0;
win->layout.occupiedRowCount = 0;
for (int i = 0; i < win->layout.nRows; ++i) {
if (win->layout.rows[i].minWidth > 0) {
win->layout.totalMinHeight += win->layout.rows[i].minWidth;
win->layout.occupiedRowCount++;
// TODO: expand flag
}
}
// TODO: split here into allocation function
}
static void
ALF_ApplyLayout(HWND hwnd, ALFWindowPriv *win)
{
// allocate cell positions
// distribute free space
int extraWidth = 0;
int extraHeight = 0;
RECT client;
if (GetClientRect(hwnd, &client)) {
if (client.right - client.left > win->layout.totalMinWidth)
extraWidth = client.right - client.left - win->layout.totalMinWidth;
if (client.bottom - client.top > win->layout.totalMinHeight)
extraHeight = client.bottom - client.top - win->layout.totalMinHeight;
}
int extraWidthPart = 0;
int extraWidthError = 0;
if (win->layout.occupiedColumnCount) {
extraWidthPart = extraWidth / win->layout.occupiedColumnCount;
extraWidthError = extraWidth - extraWidthPart * win->layout.occupiedColumnCount;
}
for (int i = 0; i < win->layout.nColumns; ++i) {
win->layout.columns[i].allocatedWidth = win->layout.columns[i].minWidth;
if (win->layout.columns[i].minWidth > 0) {
win->layout.columns[i].allocatedWidth += extraWidthPart;
if (extraWidthError) {
win->layout.columns[i].allocatedWidth++;
extraWidthError--;
}
}
if (i == 0) {
win->layout.columns[i].allocatedPosition = 0;
} else {
win->layout.columns[i].allocatedPosition =
win->layout.columns[i-1].allocatedPosition + win->layout.columns[i-1].allocatedWidth;
}
}
int extraHeightPart = 0;
int extraHeightError = 0;
if (win->layout.occupiedRowCount) {
extraHeightPart = extraHeight / win->layout.occupiedRowCount;
extraHeightError = extraHeight - extraHeightPart * win->layout.occupiedRowCount;
}
for (int i = 0; i < win->layout.nRows; ++i) {
win->layout.rows[i].allocatedWidth = win->layout.rows[i].minWidth;
if (win->layout.rows[i].minWidth > 0) {
win->layout.rows[i].allocatedWidth += extraHeightPart;
if (extraHeightError) {
win->layout.rows[i].allocatedWidth++;
extraHeightError--;
}
}
if (i == 0) {
win->layout.rows[i].allocatedPosition = 0;
} else {
win->layout.rows[i].allocatedPosition =
win->layout.rows[i-1].allocatedPosition + win->layout.rows[i-1].allocatedWidth;
}
}
HDWP hdwp = BeginDeferWindowPos(win->layout.occupiedColumnCount * win->layout.occupiedRowCount);
ALF_FOR_LIST(ALFWidgetPriv, list, &win->widgets, c) {
int marginleft = ALF_CentipointsToPxPriv(win, c->cptMarginLeft);
int marginright = ALF_CentipointsToPxPriv(win, c->cptMarginRight);
int margintop = ALF_CentipointsToPxPriv(win, c->cptMarginTop);
int marginbottom = ALF_CentipointsToPxPriv(win, c->cptMarginBottom);
hdwp = DeferWindowPos(hdwp,
c->hwnd, 0,
win->layout.columns[c->x].allocatedPosition + marginleft,
win->layout.rows[c->y].allocatedPosition + margintop,
win->layout.columns[c->x].allocatedWidth - marginleft - marginright,
win->layout.rows[c->y].allocatedWidth - margintop - marginbottom,
SWP_NOACTIVATE | SWP_NOZORDER);
}
EndDeferWindowPos(hdwp);
}
static void
ALF_InternalAddWidget(HWND hwnd, ALFWindowPriv *priv, ALFAddWidgetParams *params)
{
ALFWidgetPriv *w = (ALFWidgetPriv*)HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY|HEAP_GENERATE_EXCEPTIONS, sizeof(ALFWidgetPriv));
w->hwnd = params->hwnd;
w->x = params->x;
w->y = params->y;
w->cptWidth = params->width;
w->cptHeight = params->height;
w->flags = params->flags;
w->cptMarginTop = params->margins[0];
w->cptMarginRight = params->margins[1];
w->cptMarginBottom = params->margins[2];
w->cptMarginLeft = params->margins[3];
if (GetParent(w->hwnd) != hwnd)
SetParent(w->hwnd, hwnd);
// TODO: QUERYUISTATE on parent, then replicate in child. But wait, XP appears to do this automatically!??
ALF_ListInsert(priv->widgets.prev, &w->list);
ALF_UpdateFontForWidget(priv, w);
}
static void
ALF_ApplyFocus(HWND hwnd, ALFWindowPriv *priv, BOOL restoringFocus)
{
if (priv->hwndFocus) {
if (!restoringFocus && SendMessage(priv->hwndFocus, WM_GETDLGCODE, 0, 0) & DLGC_HASSETSEL)
SendMessage(priv->hwndFocus, EM_SETSEL, 0, -1);
if (GetForegroundWindow() == hwnd)
SetFocus(priv->hwndFocus);
} else {
priv->hwndFocus = GetNextDlgTabItem(hwnd, NULL, FALSE);
if (priv->hwndFocus)
ALF_ApplyFocus(hwnd, priv, FALSE);
}
}
LRESULT
ALF_DefWindowProc(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
{
ALFWindowPriv *priv = (ALFWindowPriv*)GetWindowLongPtr(hwnd, 0);
if (msg == ALF_WM_QUERYSIZE) {
ALF_CalculateSizes(priv);
SIZE *ps = (SIZE*)lparam;
ps->cx = priv->layout.totalMinWidth;
ps->cy = priv->layout.totalMinHeight;
return 0;
}
if (msg == ALF_WM_APPLYLAYOUT) {
ALF_ApplyLayout(hwnd, priv);
return 0;
}
if (msg == ALF_WM_GETMODALRESULT) {
return (LRESULT)priv->modalResult;
}
if (msg == ALF_WM_SETMODALRESULT) {
priv->modalResult = (int)wparam;
return 0;
}
if (msg == ALF_WM_CENTIPOINTTOPX) {
return (LRESULT)ALF_CentipointsToPxPriv(priv, (int)wparam);
}
if (msg == ALF_WM_ADDWIDGET) {
ALF_InternalAddWidget(hwnd, priv, (ALFAddWidgetParams *)lparam);
return 0;
}
if (msg == ALF_WM_SETFOCUS) {
priv->hwndFocus = (HWND)lparam;
ALF_ApplyFocus(hwnd, priv, FALSE);
return 0;
}
if (msg == ALF_WM_GETAPPLICATION) {
return (LRESULT)priv->app;
}
if (msg == WM_ACTIVATE) {
if (!HIWORD(wparam)) { // if !minimized
if (LOWORD(wparam)) {
ALF_ApplyFocus(hwnd, priv, TRUE);
} else {
priv->hwndFocus = GetFocus();
}
}
return 0;
}
if (msg == WM_SIZE) {
ALF_ApplyLayout(hwnd, priv);
return 0;
}
if (msg == WM_GETMINMAXINFO) {
RECT tmp;
ZeroMemory(&tmp, sizeof(tmp));
tmp.right = priv->layout.totalMinWidth;
tmp.bottom = priv->layout.totalMinHeight;
// TODO ..ForDpi
if (AdjustWindowRectEx(&tmp,
GetWindowLong(hwnd, GWL_STYLE),
GetMenu(hwnd) != NULL,
GetWindowLong(hwnd, GWL_EXSTYLE))) {
MINMAXINFO *i = (MINMAXINFO *)lparam;
i->ptMinTrackSize.x = tmp.right - tmp.left;
i->ptMinTrackSize.y = tmp.bottom - tmp.top;
return 0;
}
}
if (msg == WM_CREATE) {
if (priv->vtbl->create) {
priv->vtbl->create(priv->closure, hwnd);
}
BOOL alwaysUnderline = FALSE;
SystemParametersInfo(SPI_GETKEYBOARDCUES, 0, &alwaysUnderline, 0);
if (!alwaysUnderline) {
SendMessage(hwnd, WM_UPDATEUISTATE, MAKEWPARAM(UIS_INITIALIZE, 0), 0);
}
ALF_UpdateFonts(hwnd);
ALF_RecalculateLayout(hwnd);
}
if (msg == WM_DESTROY && priv->vtbl->destroy) {
priv->vtbl->destroy(priv->closure, hwnd);
}
if (msg == WM_CLOSE) {
if (!priv->vtbl->close || !priv->vtbl->close(priv->closure, hwnd)) {
priv->modalResult = 2;
ShowWindow(hwnd, FALSE);
}
return TRUE;
}
if (msg == WM_NCDESTROY) {
SetWindowLongPtr(hwnd, 0, 0);
ALF_DestroyWindowPriv(priv);
}
if (msg == DM_GETDEFID) {
if (priv->defid == (WORD)-1) {
return 0;
} else {
return MAKELONG(priv->defid, DC_HASDEFID);
}
}
if (msg == DM_SETDEFID) {
if (priv->defid != (WORD)-1) {
HWND hwndOld = ALF_WidgetHwndById(hwnd, priv->defid);
if (hwndOld && SendMessage(hwndOld, WM_GETDLGCODE, 0, 0) & DLGC_DEFPUSHBUTTON) {
SendMessage(hwndOld, BM_SETSTYLE, BS_PUSHBUTTON, TRUE);
}
}
priv->defid = (WORD)wparam;
HWND hwndNew = ALF_WidgetHwndById(hwnd, priv->defid);
if (hwndNew && SendMessage(hwndNew, WM_GETDLGCODE, 0, 0) & DLGC_UNDEFPUSHBUTTON) {
SendMessage(hwndNew, BM_SETSTYLE, BS_DEFPUSHBUTTON, TRUE);
}
return TRUE;
}
return DefWindowProc(hwnd, msg, wparam, lparam);
}
void
ALF_AddWidget(HWND win, UINT x, UINT y, HWND widget, UINT minWidth, UINT minHeight, DWORD flags)
{
ALFAddWidgetParams params;
ZeroMemory(¶ms, sizeof(params));
params.hwnd = widget;
params.x = x;
params.y = y;
params.width = minWidth;
params.height = minHeight;
params.flags = flags;
ALF_AddWidgetEx(win, ¶ms);
}
void
ALF_AddWidgetEx(HWND win, const ALFAddWidgetParams *p)
{
SendMessage(win, ALF_WM_ADDWIDGET, 0, (LPARAM)p);
}
static LRESULT CALLBACK
ALF_WindowProc(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
{
if (msg == WM_NCCREATE) {
CREATESTRUCT *cs = (CREATESTRUCT*)(void*)lparam;
ALFWindowInstanceParams *params = (ALFWindowInstanceParams*)cs->lpCreateParams;
ALFWindowPriv *priv = (ALFWindowPriv*)HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY|HEAP_GENERATE_EXCEPTIONS, sizeof(ALFWindowPriv));
SetWindowLongPtr(hwnd, 0, (LONG_PTR)priv);
ALF_InitializeWindowPriv(hwnd, priv, params);
}
ALFWindowPriv *priv = (ALFWindowPriv*)(void*)GetWindowLongPtr(hwnd, 0);
if (priv != NULL) {
if (priv->vtbl->message) {
return priv->vtbl->message(priv->closure, hwnd, msg, wparam, lparam);
} else {
return ALF_DefWindowProc(hwnd, msg, wparam, lparam);
}
} else {
return DefWindowProc(hwnd, msg, wparam, lparam);
}
}
ALFAPP
ALF_CreateApplication(HINSTANCE hInstance)
{
ALFAPP app = (ALFAPP)HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY|HEAP_GENERATE_EXCEPTIONS, sizeof(struct ALFAppPriv));
app->hInstance = hInstance;
INITCOMMONCONTROLSEX icc;
ZeroMemory(&icc, sizeof(icc));
icc.dwSize = sizeof(icc);
icc.dwICC = ICC_WIN95_CLASSES;
InitCommonControlsEx(&icc);
ALFCompatFunctions *compatfn = (ALFCompatFunctions*)HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY|HEAP_GENERATE_EXCEPTIONS, sizeof(ALFCompatFunctions));
#define COMPAT(dll, entrypoint, ordinal) \
do { \
FARPROC p = GetProcAddress(GetModuleHandleA(#dll), #entrypoint); \
if (!p && ordinal) \
p = GetProcAddress(GetModuleHandleA(#dll), (char*)ordinal); \
CopyMemory(&compatfn->entrypoint, &p, sizeof(void*)); \
} while (0)
COMPAT(comctl32.dll, SetWindowSubclass, 410);
COMPAT(comctl32.dll, DefSubclassProc, 413);
COMPAT(comctl32.dll, RemoveWindowSubclass, 412);
#undef COMPAT
app->compatFn = compatfn;
return app;
}
LPTSTR
ALF_RegisterWindowClass(ALFAPP app, const ALFWindowClassParams *params)
{
WNDCLASS cls;
ZeroMemory(&cls, sizeof(cls));
// TODO: autogenerate class name
cls.style = params->classStyle;
cls.hInstance = app->hInstance;
cls.hCursor = LoadCursor(NULL, (LPTSTR)IDC_ARROW);
cls.hbrBackground = (HBRUSH)(COLOR_BTNFACE+1);
cls.lpszClassName = params->className;
cls.cbWndExtra = sizeof(void*);
cls.cbClsExtra = sizeof(void*)*2;
cls.lpfnWndProc = DefWindowProc;
ATOM classatom = RegisterClass(&cls);
if (!classatom)
return NULL;
ALFWindowVTable *pvtbl = (ALFWindowVTable*)HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY|HEAP_GENERATE_EXCEPTIONS, sizeof(ALFWindowVTable));
*pvtbl = params->vtbl;
HWND tmp = CreateWindowEx(0, MAKEINTATOM(classatom), TEXT("dummy"), 0, 0, 0, 0, 0, HWND_MESSAGE, 0, app->hInstance, 0);
SetClassLongPtr(tmp, 0, (LONG_PTR)pvtbl);
SetClassLongPtr(tmp, sizeof(void*), (LONG_PTR)app);
SetClassLongPtr(tmp, GCLP_WNDPROC, (LONG_PTR)ALF_WindowProc);
DestroyWindow(tmp);
return MAKEINTATOM(classatom);
}
HWND ALF_InstantiateWindow(ALFAPP app, LPCTSTR className, const ALFWindowInstanceParams* params)
{
return CreateWindowEx(params->windowExStyle,
className,
L"Window",
params->windowStyle,
CW_USEDEFAULT, CW_USEDEFAULT,
300, 100, //FIXME
params->hwndParent,
NULL,
app->hInstance,
(void*)params);
}
ALFAPP
ALF_ApplicationFromWindow(HWND hwnd)
{
return (ALFAPP)SendMessage(hwnd, ALF_WM_GETAPPLICATION, 0, 0);
}
int
ALF_ShowModal(HWND win)
{
MSG msg;
ALF_SetModalResult(win, 0);
// TODO: disable parent window
ShowWindow(win, SW_SHOW);
while (GetMessage(&msg, NULL, 0, 0) > 0) {
// TODO: call application message hooks
// TODO: call preprocess message hook
if (!IsDialogMessage(win, &msg)) {
TranslateMessage(&msg);
DispatchMessage(&msg);
}
int mr = ALF_GetModalResult(win);
if (mr)
return mr;
}
return 0;
}
void
ALF_SetModalResult(HWND win, int result)
{
SendMessage(win, ALF_WM_SETMODALRESULT, (WPARAM)result, 0);
}
int
ALF_GetModalResult(HWND win)
{
return (int)SendMessage(win, ALF_WM_GETMODALRESULT, 0, 0);
}
int
ALF_CentipointsToPixels(HWND win, int cptValue)
{
return (int)SendMessage(win, ALF_WM_CENTIPOINTTOPX, (WPARAM)cptValue, 0);
}
void
ALF_ResizeWindow(HWND win, UINT cptWidth, UINT cptHeight)
{
int pxwidth = ALF_CentipointsToPixels(win, cptWidth);
int pxheight = ALF_CentipointsToPixels(win, cptHeight);
MINMAXINFO tmp = {
{ 0, 0 },
{ pxwidth, pxheight },
{ 0, 0 },
{ pxwidth, pxheight },
{ pxwidth, pxheight }
};
SendMessage(win, WM_GETMINMAXINFO, 0, (LPARAM)&tmp);
if (tmp.ptMinTrackSize.x > pxwidth)
pxwidth = tmp.ptMinTrackSize.x;
if (tmp.ptMinTrackSize.y > pxheight)
pxheight = tmp.ptMinTrackSize.y;
SetWindowPos(win, NULL, 0, 0, pxwidth, pxheight, SWP_NOACTIVATE|SWP_NOMOVE|SWP_NOZORDER);
}
struct ALF_WidgetHwndById_Closure {
HWND result;
WORD needle;
};
static BOOL CALLBACK
ALF_WidgetHwndById_EnumChildProc(HWND hwnd, LPARAM lParam)
{
struct ALF_WidgetHwndById_Closure *closure = (struct ALF_WidgetHwndById_Closure*)lParam;
if ((WORD)GetWindowLongPtr(hwnd, GWLP_ID) == closure->needle) {
closure->result = hwnd;
return FALSE;
}
return TRUE;
}
HWND
ALF_WidgetHwndById(HWND win, WORD id)
{
struct ALF_WidgetHwndById_Closure closure = { 0, id };
EnumChildWindows(win, ALF_WidgetHwndById_EnumChildProc, (LPARAM)&closure);
return closure.result;
}
/* LABEL */
static LRESULT CALLBACK
ALF__LabelSubclassProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam, UINT_PTR uIdSubclass, DWORD_PTR dwRefData)
{
(void)uIdSubclass;
(void)dwRefData;
ALFAPP app = (ALFAPP)dwRefData;
if (uMsg == ALF_WM_QUERYSIZE) {
HDC hdcLabel = GetDC(hwnd);
HFONT font = (HFONT)SendMessage(hwnd, WM_GETFONT, 0, 0);
HFONT oldFont = 0;
if (font)
oldFont = SelectFont(hdcLabel, font);
// calc drawtext style
DWORD style = GetWindowLong(hwnd, GWL_STYLE);
UINT format = DT_LEFT | DT_EXPANDTABS | DT_CALCRECT;
if (style & SS_NOPREFIX)
format |= DT_NOPREFIX;
if (style & SS_EDITCONTROL)
format |= DT_EDITCONTROL;
if (style & SS_ENDELLIPSIS || style & SS_PATHELLIPSIS || style & SS_WORDELLIPSIS)
format |= DT_SINGLELINE;
RECT r = { 0, 0, 100, 100 };
int textlen = GetWindowTextLength(hwnd);
TCHAR *textbuf = (TCHAR*)HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY|HEAP_GENERATE_EXCEPTIONS, (textlen + 1)*sizeof(TCHAR));
GetWindowText(hwnd, textbuf, textlen+1);
DrawText(hdcLabel, textbuf, -1, &r, format);
HeapFree(GetProcessHeap(), 0, textbuf);
SIZE *pSize = (SIZE*)(void*)lParam;
if (pSize->cx == 0)
pSize->cx = r.right - r.left;
if (pSize->cy == 0)
pSize->cy = r.bottom - r.top;
if (font)
SelectFont(hdcLabel, oldFont);
ReleaseDC(hwnd, hdcLabel);
}
return app->compatFn->DefSubclassProc(hwnd, uMsg, wParam, lParam);
}
HWND
ALF_AddLabel(HWND win, WORD id, UINT x, UINT y, const WCHAR *text)
{
HWND hwndLabel = CreateWindow(L"STATIC",
text,
WS_CHILD | WS_VISIBLE | SS_LEFTNOWORDWRAP,
0, 0, 100, 100,
win,
(HMENU)(int)id,
(HINSTANCE)GetWindowLongPtr(win, GWLP_HINSTANCE),
NULL);
ALFAPP app = ALF_ApplicationFromWindow(win);
app->compatFn->SetWindowSubclass(hwndLabel, ALF__LabelSubclassProc, 0, (DWORD_PTR)app);
ALFAddWidgetParams p;
ZeroMemory(&p, sizeof(p));
p.hwnd = hwndLabel;
p.x = x;
p.y = y;
p.width = 0;
p.height = 0;
p.flags = ALF_QUERYSIZE | ALF_MESSAGEFONT;
p.margins[0] = 300; // TODO: pixel perfect margins from system metrics
ALF_AddWidgetEx(win, &p);
return hwndLabel;
}
/* EDIT */
static LRESULT CALLBACK
ALF__EditSubclassProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam, UINT_PTR uIdSubclass, DWORD_PTR dwRefData)
{
(void)uIdSubclass;
(void)dwRefData;
ALFAPP app = (ALFAPP)dwRefData;
if (uMsg == ALF_WM_QUERYSIZE) {
HDC hDc = GetDC(hwnd);
HFONT font = (HFONT)SendMessage(hwnd, WM_GETFONT, 0, 0);
if (font) {
HFONT oldfont = SelectFont(hDc, font);
TEXTMETRIC tm;
ZeroMemory(&tm, sizeof(tm));
if (GetTextMetrics(hDc, &tm)) {
SIZE *ps = (SIZE*)lParam;
if (!ps->cx) {
ps->cx = ALF_CentipointsToPixels(GetParent(hwnd), 12000);
}
if (!ps->cy) {
ps->cy = tm.tmHeight + 6; // FIXME! use system metrics
}
}
SelectFont(hDc, oldfont);
}
ReleaseDC(hwnd, hDc);
return 0;
}
return app->compatFn->DefSubclassProc(hwnd, uMsg, wParam, lParam);
}
HWND
ALF_AddEdit(HWND win, WORD id, UINT x, UINT y, const WCHAR *text)
{
HWND hwndEdit = CreateWindowEx(WS_EX_CLIENTEDGE,
L"EDIT",
text,
WS_CHILD | WS_VISIBLE | WS_TABSTOP,
0, 0, 100, 100,
win,
(HMENU)(int)id,
(HINSTANCE)GetWindowLongPtr(win, GWLP_HINSTANCE),
NULL);
ALFAPP app = ALF_ApplicationFromWindow(win);
app->compatFn->SetWindowSubclass(hwndEdit, ALF__EditSubclassProc, 0, (DWORD_PTR)app);
SetWindowPos(hwndEdit, NULL, 0, 0, 0, 0, SWP_NOZORDER | SWP_NOSIZE | SWP_NOMOVE | SWP_FRAMECHANGED);
ALFAddWidgetParams p;
ZeroMemory(&p, sizeof(p));
p.hwnd = hwndEdit;
p.x = x;
p.y = y;
p.width = 0;
p.height = 0;
p.flags = ALF_QUERYSIZE | ALF_MESSAGEFONT;
p.margins[0] = 75; // TODO: pixel-perfect margin from system metrics
p.margins[2] = 75;
ALF_AddWidgetEx(win, &p);
return hwndEdit;
}
/* BUTTON */
static LRESULT CALLBACK
ALF__ButtonSubclassProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam, UINT_PTR uIdSubclass, DWORD_PTR dwRefData)
{
(void)uIdSubclass;
(void)dwRefData;
ALFAPP app = (ALFAPP)dwRefData;
if (uMsg == ALF_WM_QUERYSIZE) {
HDC hdc = GetDC(hwnd);
HFONT font = (HFONT)SendMessage(hwnd, WM_GETFONT, 0, 0);
HFONT oldFont = 0;
if (font)
oldFont = SelectFont(hdc, font);
// calc drawtext style
DWORD style = GetWindowLong(hwnd, GWL_STYLE);
UINT format = DT_LEFT | DT_EXPANDTABS | DT_CALCRECT;
if ((style & BS_MULTILINE) == 0)
format |= DT_SINGLELINE;
RECT r = { 0, 0, 100, 100 };
int textlen = GetWindowTextLength(hwnd);
TCHAR *textbuf = (TCHAR*)HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY|HEAP_GENERATE_EXCEPTIONS, (textlen + 1)*sizeof(TCHAR));
GetWindowText(hwnd, textbuf, textlen+1);
DrawText(hdc, textbuf, -1, &r, format);
HeapFree(GetProcessHeap(), 0, textbuf);
// TODO: calculate from system metrics
int padding = ALF_CentipointsToPixels(GetParent(hwnd), 525);
SIZE *pSize = (SIZE*)(void*)lParam;
if (pSize->cx < r.right - r.left + padding) {
pSize->cx = r.right - r.left + padding;
}
if (pSize->cy < r.bottom - r.top + padding) {
pSize->cy = r.bottom - r.top + padding;
}
if (pSize->cx < pSize->cy) {
pSize->cx = pSize->cy;
}
if (font)
SelectFont(hdc, oldFont);
ReleaseDC(hwnd, hdc);
}
return app->compatFn->DefSubclassProc(hwnd, uMsg, wParam, lParam);
}
HWND
ALF_AddButton(HWND win, WORD id, UINT x, UINT y, const WCHAR *text)
{
HWND hwndButton = CreateWindowEx(0,
L"BUTTON",
text,
WS_CHILD | WS_TABSTOP | WS_VISIBLE | BS_PUSHBUTTON | BS_MULTILINE,
0, 0, 100, 100,
win,
(HMENU)(int)id,
(HINSTANCE)GetWindowLongPtr(win, GWLP_HINSTANCE),
NULL);
ALFAPP app = ALF_ApplicationFromWindow(win);
app->compatFn->SetWindowSubclass(hwndButton, ALF__ButtonSubclassProc, 0, (DWORD_PTR)app);
ALFAddWidgetParams p;
ZeroMemory(&p, sizeof(p));
p.hwnd = hwndButton;
p.x = x;
p.y = y;
p.width = 5625;
p.height = 0;
p.flags = ALF_QUERYSIZE | ALF_MESSAGEFONT;
ALF_AddWidgetEx(win, &p);
return hwndButton;
}
void
ALF_SetDefaultButton(HWND win, WORD id)
{
SendMessage(win, DM_SETDEFID, (WPARAM)id, 0);
}
|