4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
|
}
/*
* Move the window in response to a server-side request.
*/
void move_window(int x, int y)
{
SetWindowPos(hwnd, NULL, x, y, 0, 0, SWP_NOSIZE | SWP_NOZORDER);
}
/*
* Move the window to the top or bottom of the z-order in response
* to a server-side request.
*/
|
>
>
>
>
>
|
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
|
}
/*
* Move the window in response to a server-side request.
*/
void move_window(int x, int y)
{
if (cfg.resize_action == RESIZE_DISABLED ||
cfg.resize_action == RESIZE_FONT ||
IsZoomed(hwnd))
return;
SetWindowPos(hwnd, NULL, x, y, 0, 0, SWP_NOSIZE | SWP_NOZORDER);
}
/*
* Move the window to the top or bottom of the z-order in response
* to a server-side request.
*/
|