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
|
#pragma once
#include "alf.h"
#include "alflist.h"
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;
} ALFLayoutRowOrColumn;
#define ALF_LAYOUT_NEED_RECALC ((DWORD)1)
#define ALF_LAYOUT_NEED_REAPPLY ((DWORD)2)
typedef struct {
ALFListHeader widgets;
ALFLayoutRowOrColumn *columns;
ALFLayoutRowOrColumn *rows;
int nColumns;
int nRows;
int totalMinWidth;
int totalMinHeight;
int expandoColumnCount;
int expandoRowCount;
DWORD layoutValididityFlags;
} ALFLayout;
void
ALF_Layout_Init(ALFLayout *layout);
void
ALF_Layout_Clear(ALFLayout *layout);
void
ALF_Layout_GetMinSize(ALFLayout *layout, HWND window, SIZE *size);
void
ALF_Layout_Apply(ALFLayout *layout, HWND window);
void
ALF_Layout_AddWidget(ALFLayout *layout, HWND window, const ALFWidgetLayoutParams *params);
BOOL
ALF_Layout_RemoveWidget(ALFLayout *layout, HWND window, HWND widget, BOOL destroy);
BOOL
ALF_Layout_SetWidgetParams(ALFLayout *layout, HWND window, const ALFWidgetLayoutParams *params, HWND widget);
BOOL
ALF_Layout_GetWidgetParams(ALFLayout *layout, ALFWidgetLayoutParams *params, HWND widget);
BOOL
ALF_Layout_HandleMessage(ALFLayout *layout, HWND window, UINT msg, WPARAM wparam, LPARAM lparam, LRESULT *ret);
HWND
ALF_Layout_WidgetAtPos(ALFLayout *layout, UINT x, UINT y);
void
ALF_Layout_Invalidate(ALFLayout *layout, HWND window);
BOOL
ALF_Layout_Validate(ALFLayout *layout, HWND window);
|