aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/3rdparty/winpty/misc/MoveConsoleWindow.cc
blob: 7d9684fe94ebc90bd8adc086fb6a93f458842270 (plain)
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
#include <windows.h>

#include "TestUtil.cc"

int main(int argc, char *argv[]) {
    if (argc != 3 && argc != 5) {
        printf("Usage: %s x y\n", argv[0]);
        printf("Usage: %s x y width height\n", argv[0]);
        return 1;
    }

    HWND hwnd = GetConsoleWindow();

    const int x = atoi(argv[1]);
    const int y = atoi(argv[2]);

    int w = 0, h = 0;
    if (argc == 3) {
        RECT r = {};
        BOOL ret = GetWindowRect(hwnd, &r);
        ASSERT(ret && "GetWindowRect failed on console window");
        w = r.right - r.left;
        h = r.bottom - r.top;
    } else {
        w = atoi(argv[3]);
        h = atoi(argv[4]);
    }

    BOOL ret = MoveWindow(hwnd, x, y, w, h, TRUE);
    trace("MoveWindow: ret=%d", ret);
    printf("MoveWindow: ret=%d\n", ret);

    return 0;
}