Wine >> C/C++ >> Dialog >> Common Dialog

ReplaceText


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

main.c

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <windows.h>

UINT uReplaceID = 0;
HWND hReplaceWnd = 0;
char pWhat[255] = {0};
FINDREPLACE stReplaceData = {0};

HWND hWin = 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;
    }

    if (uMsg == uReplaceID) {
        if ((stReplaceData.Flags & FR_FINDNEXT) ||
            (stReplaceData.Flags & FR_REPLACE) ||
            (stReplaceData.Flags & FR_REPLACEALL)) {
            MessageBox(hWnd, pWhat, "main", MB_OK);
        }
        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);
    defWndProc =
        (WNDPROC)SetWindowLongPtr(hWin, GWLP_WNDPROC, (long int)WndProc);
    ShowWindow(hWin, SW_SHOW);

    stReplaceData.lStructSize = sizeof(FINDREPLACE);
    stReplaceData.Flags = FR_DOWN;
    stReplaceData.hwndOwner = hWin;
    stReplaceData.lpstrFindWhat = pWhat;
    stReplaceData.wFindWhatLen = sizeof(pWhat);
    stReplaceData.lpstrReplaceWith = pWhat;
    stReplaceData.wReplaceWithLen = sizeof(pWhat);
    uReplaceID = RegisterWindowMessage("commdlg_FindReplace");
    hReplaceWnd = ReplaceText(&stReplaceData);

    MSG msg = {0};
    while (GetMessage(&msg, NULL, 0, 0)) {
        if (!IsDialogMessage(hReplaceWnd, &msg)) {
            TranslateMessage(&msg);
            DispatchMessage(&msg);
        }
    }
    ExitProcess(0);
    return 0;
}

編譯、執行

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



返回上一頁