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
|
// 16 may 2015
#include "uipriv_windows.hpp"
// You don't add controls directly to a tab control on Windows; instead you make them siblings and swap between them on a TCN_SELCHANGING/TCN_SELCHANGE notification pair.
// In addition, you use dialogs because they can be textured properly; other controls cannot. (Things will look wrong if the tab background in the current theme is fancy if you just use the tab background by itself; see http://stackoverflow.com/questions/30087540/why-are-my-programss-tab-controls-rendering-their-background-in-a-blocky-way-b.)
struct uiTab {
uiWindowsControl c;
HWND hwnd; // of the outer container
HWND tabHWND; // of the tab control itself
std::vector<struct tabPage *> *pages;
HWND parent;
};
// utility functions
static LRESULT curpage(uiTab *t)
{
return SendMessageW(t->tabHWND, TCM_GETCURSEL, 0, 0);
}
static struct tabPage *tabPage(uiTab *t, int i)
{
return (*(t->pages))[i];
}
static void tabPageRect(uiTab *t, RECT *r)
{
// this rect needs to be in parent window coordinates, but TCM_ADJUSTRECT wants a window rect, which is screen coordinates
// because we have each page as a sibling of the tab, use the tab's own rect as the input rect
uiWindowsEnsureGetWindowRect(t->tabHWND, r);
SendMessageW(t->tabHWND, TCM_ADJUSTRECT, (WPARAM) FALSE, (LPARAM) r);
// and get it in terms of the container instead of the screen
mapWindowRect(NULL, t->hwnd, r);
}
static void tabRelayout(uiTab *t)
{
struct tabPage *page;
RECT r;
// first move the tab control itself
uiWindowsEnsureGetClientRect(t->hwnd, &r);
uiWindowsEnsureMoveWindowDuringResize(t->tabHWND, r.left, r.top, r.right - r.left, r.bottom - r.top);
// then the current page
if (t->pages->size() == 0)
return;
page = tabPage(t, curpage(t));
tabPageRect(t, &r);
uiWindowsEnsureMoveWindowDuringResize(page->hwnd, r.left, r.top, r.right - r.left, r.bottom - r.top);
}
static void showHidePage(uiTab *t, LRESULT which, int hide)
{
struct tabPage *page;
if (which == (LRESULT) (-1))
return;
page = tabPage(t, which);
if (hide)
ShowWindow(page->hwnd, SW_HIDE);
else {
ShowWindow(page->hwnd, SW_SHOW);
// we only resize the current page, so we have to resize it; before we can do that, we need to make sure we are of the right size
uiWindowsControlMinimumSizeChanged(uiWindowsControl(t));
}
}
// control implementation
static BOOL onWM_NOTIFY(uiControl *c, HWND hwnd, NMHDR *nm, LRESULT *lResult)
{
uiTab *t = uiTab(c);
if (nm->code != TCN_SELCHANGING && nm->code != TCN_SELCHANGE)
return FALSE;
showHidePage(t, curpage(t), nm->code == TCN_SELCHANGING);
*lResult = 0;
if (nm->code == TCN_SELCHANGING)
*lResult = FALSE;
return TRUE;
}
static void uiTabDestroy(uiControl *c)
{
uiTab *t = uiTab(c);
uiControl *child;
for (struct tabPage *&page : *(t->pages)) {
child = page->child;
tabPageDestroy(page);
if (child != NULL) {
uiControlSetParent(child, NULL);
uiControlDestroy(child);
}
}
delete t->pages;
uiWindowsUnregisterWM_NOTIFYHandler(t->tabHWND);
uiWindowsEnsureDestroyWindow(t->tabHWND);
uiWindowsEnsureDestroyWindow(t->hwnd);
uiFreeControl(uiControl(t));
}
uiWindowsControlDefaultHandle(uiTab)
uiWindowsControlDefaultParent(uiTab)
uiWindowsControlDefaultSetParent(uiTab)
uiWindowsControlDefaultToplevel(uiTab)
uiWindowsControlDefaultVisible(uiTab)
uiWindowsControlDefaultShow(uiTab)
uiWindowsControlDefaultHide(uiTab)
uiWindowsControlDefaultEnabled(uiTab)
uiWindowsControlDefaultEnable(uiTab)
uiWindowsControlDefaultDisable(uiTab)
uiWindowsControlDefaultSetFocus(uiTab)
static void uiTabSyncEnableState(uiWindowsControl *c, int enabled)
{
uiTab *t = uiTab(c);
if (uiWindowsShouldStopSyncEnableState(uiWindowsControl(t), enabled))
return;
EnableWindow(t->tabHWND, enabled);
for (struct tabPage *&page : *(t->pages))
if (page->child != NULL)
uiWindowsControlSyncEnableState(uiWindowsControl(page->child), enabled);
}
uiWindowsControlDefaultSetParentHWND(uiTab)
static void uiTabMinimumSize(uiWindowsControl *c, int *width, int *height)
{
uiTab *t = uiTab(c);
int pagewid, pageht;
struct tabPage *page;
RECT r;
// only consider the current page
pagewid = 0;
pageht = 0;
if (t->pages->size() != 0) {
page = tabPage(t, curpage(t));
tabPageMinimumSize(page, &pagewid, &pageht);
}
r.left = 0;
r.top = 0;
r.right = pagewid;
r.bottom = pageht;
// this also includes the tabs themselves
SendMessageW(t->tabHWND, TCM_ADJUSTRECT, (WPARAM) TRUE, (LPARAM) (&r));
*width = r.right - r.left;
*height = r.bottom - r.top;
}
static void uiTabMinimumSizeChanged(uiWindowsControl *c)
{
uiTab *t = uiTab(c);
if (uiWindowsControlTooSmall(uiWindowsControl(t))) {
uiWindowsControlContinueMinimumSizeChanged(uiWindowsControl(t));
return;
}
tabRelayout(t);
}
static void uiTabSetMinSize(uiControl *c, int w, int h)
{
// checkme
uiTabMinimumSizeChanged(uiWindowsControl(c));
}
uiWindowsControlDefaultLayoutRect(uiTab)
uiWindowsControlDefaultAssignControlIDZOrder(uiTab)
static void uiTabChildVisibilityChanged(uiWindowsControl *c)
{
// TODO eliminate the redundancy
uiWindowsControlMinimumSizeChanged(c);
}
static void tabArrangePages(uiTab *t)
{
LONG_PTR controlID = 100;
HWND insertAfter = NULL;
// TODO is this first or last?
uiWindowsEnsureAssignControlIDZOrder(t->tabHWND, &controlID, &insertAfter);
for (struct tabPage *&page : *(t->pages))
uiWindowsEnsureAssignControlIDZOrder(page->hwnd, &controlID, &insertAfter);
}
void uiTabAppend(uiTab *t, const char *name, uiControl *child)
{
uiTabInsertAt(t, name, t->pages->size(), child);
}
void uiTabInsertAt(uiTab *t, const char *name, int n, uiControl *child)
{
struct tabPage *page;
LRESULT hide, show;
TCITEMW item;
WCHAR *wname;
// see below
hide = curpage(t);
if (child != NULL)
uiControlSetParent(child, uiControl(t));
page = newTabPage(child);
uiWindowsEnsureSetParentHWND(page->hwnd, t->hwnd);
t->pages->insert(t->pages->begin() + n, page);
tabArrangePages(t);
ZeroMemory(&item, sizeof (TCITEMW));
item.mask = TCIF_TEXT;
wname = toUTF16(name);
item.pszText = wname;
if (SendMessageW(t->tabHWND, TCM_INSERTITEM, (WPARAM) n, (LPARAM) (&item)) == (LRESULT) -1)
logLastError(L"error adding tab to uiTab");
uiFree(wname);
// we need to do this because adding the first tab doesn't send a TCN_SELCHANGE; it just shows the page
show = curpage(t);
if (show != hide) {
showHidePage(t, hide, 1);
showHidePage(t, show, 0);
}
}
void uiTabDelete(uiTab *t, int n)
{
struct tabPage *page;
// first delete the tab from the tab control
// if this is the current tab, no tab will be selected, which is good
if (SendMessageW(t->tabHWND, TCM_DELETEITEM, (WPARAM) n, 0) == FALSE)
logLastError(L"error deleting uiTab tab");
// now delete the page itself
page = tabPage(t, n);
if (page->child != NULL)
uiControlSetParent(page->child, NULL);
tabPageDestroy(page);
t->pages->erase(t->pages->begin() + n);
}
int uiTabNumPages(uiTab *t)
{
return t->pages->size();
}
int uiTabMargined(uiTab *t, int n)
{
return tabPage(t, n)->margined;
}
void uiTabSetMargined(uiTab *t, int n, int margined)
{
struct tabPage *page;
page = tabPage(t, n);
page->margined = margined;
// even if the page doesn't have a child it might still have a new minimum size with margins; this is the easiest way to verify it
uiWindowsControlMinimumSizeChanged(uiWindowsControl(t));
}
static void onResize(uiWindowsControl *c)
{
tabRelayout(uiTab(c));
}
uiTab *uiNewTab(void)
{
uiTab *t;
uiWindowsNewControl(uiTab, t);
t->hwnd = uiWindowsMakeContainer(uiWindowsControl(t), onResize);
t->tabHWND = uiWindowsEnsureCreateControlHWND(0,
WC_TABCONTROLW, L"",
TCS_TOOLTIPS | WS_TABSTOP,
hInstance, NULL,
TRUE);
uiWindowsEnsureSetParentHWND(t->tabHWND, t->hwnd);
uiWindowsRegisterWM_NOTIFYHandler(t->tabHWND, onWM_NOTIFY, uiControl(t));
t->pages = new std::vector<struct tabPage *>;
return t;
}
|