Wine >> C/C++ >> Dialog >> Controls

Edit


參考資訊:
1. win32
2. petzold
3. tutorial
4. examples_win32

main.c

#include <stdio.h>
#include <windows.h>
#include <richedit.h>

#define ID_EDIT 1000

HWND hWin = NULL;
HWND hEdit = NULL;
HFONT hFont = NULL;
WNDPROC defWndProc = NULL;

LRESULT CALLBACK WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
    switch (uMsg) {
    case WM_CLOSE:
        DestroyWindow(hWnd);
        return 0;
    case WM_DESTROY:
        PostQuitMessage(0);
        return 0;
    }
    return CallWindowProc(defWndProc, hWnd, uMsg, wParam, lParam);
}

int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
                   LPSTR lpCmdLine, int nCmdShow)
{
    hWin = CreateWindow(WC_DIALOG, "main", WS_OVERLAPPEDWINDOW, 0, 0, 300, 300,
                        NULL, NULL, NULL, NULL);

    hFont = CreateFont(20, 0, 0, 0, FW_BOLD, FALSE, FALSE, FALSE, 0,
                       OUT_OUTLINE_PRECIS, CLIP_DEFAULT_PRECIS,
                       CLEARTYPE_QUALITY, DEFAULT_PITCH | FF_DONTCARE, "Arial");

    hEdit = CreateWindow("EDIT", "Test", WS_CHILD | ES_CENTER | ES_MULTILINE,
                         50, 50, 100, 100, hWin, (HMENU)ID_EDIT, NULL, NULL);
    defWndProc =
        (WNDPROC)SetWindowLongPtr(hWin, GWLP_WNDPROC, (long int)WndProc);

    SendMessage(hEdit, WM_SETFONT, (WPARAM)hFont, TRUE);
    ShowWindow(hEdit, SW_SHOW);
    ShowWindow(hWin, SW_SHOW);

    MSG msg = {0};
    while (GetMessage(&msg, NULL, 0, 0)) {
        if (IsDialogMessage(hEdit, &msg)) {
            if ((msg.message == WM_CHAR) && (msg.wParam == 13)) {
                char buf[255] = {0};
                GetWindowText(hEdit, buf, sizeof(buf));
                MessageBox(hWin, buf, "main", MB_OK);
            }
        }
        else {
            TranslateMessage(&msg);
            DispatchMessage(&msg);
        }
    }
    ExitProcess(0);
    return 0;
}

編譯、執行

$ winegcc main.c -o main -lgdi32
$ wine ./main.exe



按下Enter鍵就會顯示目前Edit的內容


返回上一頁