TextOut(hdc, 10, 180, vs, strlen(vs));


/**Ouvi a correção, não a rejeiteis e sede sábios. Provérbios 8:33*/

#include <windows.h>
#include "resource.h"

LRESULT CALLBACK WndProc (HWND, UINT, WPARAM, LPARAM);

static char font[50] = "Verdana";

char vs[] = "e livrou o justo Ló, enfadado da vida dissoluta dos \
homens abomináveis - 2 Pedro 2:7";

static HFONT tamanhoDaFonte;

int WINAPI WinMain(HINSTANCE hI, HINSTANCE hPI, PSTR szCL, int iCS) {
    static TCHAR szAppName[] = TEXT("Background");
    HWND         hwnd;
    MSG          msg;
    WNDCLASS     wndclass;

    wndclass.style         = CS_HREDRAW | CS_VREDRAW;
    wndclass.lpfnWndProc   = WndProc;
    wndclass.cbClsExtra    = 0;
    wndclass.cbWndExtra    = 0;
    wndclass.hInstance     = hI;
    wndclass.hIcon         = LoadIcon(hI, IDI_ICON);
    wndclass.hCursor       = LoadCursor(NULL, IDC_ARROW);
    wndclass.hbrBackground = GetSysColorBrush(WHITE_BRUSH);
    wndclass.lpszMenuName  = NULL;
    wndclass.lpszClassName = szAppName;

    if(!RegisterClass(&wndclass)) {
        MessageBox(NULL, TEXT("Error!"), szAppName, MB_ICONERROR);
        return 0;
    }
    hwnd = CreateWindow(
        szAppName, TEXT("Background"), WS_OVERLAPPEDWINDOW,
        CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT,
        NULL, NULL, hI, NULL
    );

    ShowWindow(hwnd, iCS);
    UpdateWindow(hwnd);

    while(GetMessage(&msg, NULL, 0, 0)) {
        TranslateMessage(&msg);
        DispatchMessage (&msg);
        FreeConsole();
    }
    return msg.wParam;
}

LRESULT CALLBACK WndProc(HWND hwnd, UINT msg,WPARAM wP, LPARAM lParam) {
    static int  cxClient, cyClient;
    HBRUSH      hBrush;
    HDC         hdc, contexto;
    int         i;
    PAINTSTRUCT ps, ps2;
    RECT        rect;
    switch(msg) {
        case WM_SIZE:
            cxClient = LOWORD(lParam);
            cyClient = HIWORD(lParam);
            return 0;
        case WM_PAINT:
            hdc = BeginPaint(hwnd, &ps);
            for(i = 0; i<65; i++) {
                rect.left   = i * cxClient / 65;
                rect.top    = 0;
                rect.right  = (i + 1) * cxClient / 65;
                rect.bottom = cyClient;
                hBrush = CreateSolidBrush(
                    RGB(
                        min(255, 4 * i),
                        min(210, 4 * i),
                        min(0, 4 * i)
                    )
                );
                FillRect(hdc, &rect, hBrush);
                DeleteObject(hBrush);
            }

            tamanhoDaFonte = CreateFontA(
                25, 0, 0, 0, FW_EXTRABOLD,
                1, 0, 0, 0, 0,
                0, 0, 0, font
            );

            SelectObject(hdc, tamanhoDaFonte);
            SetTextColor(hdc, RGB(20, 20, 0));
            TextOut(hdc, 10, 180, vs, strlen(vs));

            EndPaint(hwnd, &ps);
            return 0;
        case WM_DESTROY:
            PostQuitMessage(0);
            return 0;
    }
    return DefWindowProc(hwnd, msg, wP, lParam);
}


/********************Arquivo: resource.h********************/

#define IDI_ICON   1


/********************Arquivo: resource.rc********************/

#include "afxres.h"
#include "resource.h"

IDI_ICON ICON "project1.ico"

Comentários