/win32_direct.d
D | 182 lines | 136 code | 37 blank | 9 comment | 5 complexity | d5c4193944b543121a82988782d4988d MD5 | raw file
- module win32_direct;
- /+
- + Copyright Andrej Mitrovic 2011.
- + Distributed under the Boost Software License, Version 1.0.
- + (See accompanying file LICENSE_1_0.txt or copy at
- + http://www.boost.org/LICENSE_1_0.txt)
- +/
- // note: there's some kind of bug in cairo or in my understanding of drawing directly to GDI,
- // this doesn't draw properly (when using DrawCairoRectangle) when a window is overlayed over our app window.
- import core.runtime;
- import std.stdio;
- import std.random;
- import std.utf;
- pragma(lib, "gdi32.lib");
- import win32.windef;
- import win32.winuser;
- import win32.wingdi;
- string appName = "app";
- string description = "";
- import cairo.cairo;
- import cairo.win32;
- alias cairo.cairo.RGB RGB;
- extern (Windows)
- int WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int iCmdShow)
- {
- int result;
- void exceptionHandler(Throwable e) { throw e; }
- try
- {
- Runtime.initialize(&exceptionHandler);
- result = myWinMain(hInstance, hPrevInstance, lpCmdLine, iCmdShow);
- Runtime.terminate(&exceptionHandler);
- }
- catch (Throwable o)
- {
- MessageBox(null, o.toString().toUTF16z, "Error", MB_OK | MB_ICONEXCLAMATION);
- result = 0;
- }
- return result;
- }
- int myWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int iCmdShow)
- {
- HWND hwnd;
- MSG msg;
- WNDCLASS wndclass;
- wndclass.style = CS_HREDRAW | CS_VREDRAW | WS_CLIPCHILDREN | WS_CLIPSIBLINGS;
- wndclass.lpfnWndProc = &WndProc;
- wndclass.cbClsExtra = 0;
- wndclass.cbWndExtra = 0;
- wndclass.hInstance = hInstance;
- wndclass.hIcon = LoadIcon(NULL, IDI_APPLICATION);
- wndclass.hCursor = LoadCursor(NULL, IDC_ARROW);
- wndclass.hbrBackground = null;
- wndclass.lpszMenuName = appName.toUTF16z;
- wndclass.lpszClassName = appName.toUTF16z;
- if (!RegisterClass(&wndclass))
- {
- MessageBox(NULL, "This program requires Windows NT!", appName.toUTF16z, MB_ICONERROR);
- return 0;
- }
- hwnd = CreateWindow(appName.toUTF16z, // window class name
- description.toUTF16z, // window caption
- WS_OVERLAPPEDWINDOW, // window style
- CW_USEDEFAULT, // initial x position
- CW_USEDEFAULT, // initial y position
- CW_USEDEFAULT, // initial x size
- CW_USEDEFAULT, // initial y size
- NULL, // parent window handle
- NULL, // window menu handle
- hInstance, // program instance handle
- NULL); // creation parameters
- ShowWindow(hwnd, iCmdShow);
- UpdateWindow(hwnd);
- while (GetMessage(&msg, NULL, 0, 0))
- {
- TranslateMessage(&msg);
- DispatchMessage(&msg);
- }
- return msg.wParam;
- }
- extern (Windows)
- LRESULT WndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
- {
- switch (message)
- {
- case WM_CREATE:
- {
- window = new Window();
- return 0;
- }
-
- default:
- }
-
- if (window)
- return window.process(hwnd, message, wParam, lParam);
- else
- return DefWindowProc(hwnd, message, wParam, lParam);
- }
- Window window;
- class Window
- {
- int cxClient, cyClient;
- LRESULT process(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
- {
- switch (message)
- {
- case WM_DESTROY:
- PostQuitMessage(0);
- return 0;
- case WM_PAINT:
- OnPaint(hwnd, message, wParam, lParam);
- return 0;
- case WM_SIZE:
- cxClient = LOWORD(lParam);
- cyClient = HIWORD(lParam);
- return 0;
-
- default:
- }
-
- return DefWindowProc(hwnd, message, wParam, lParam);
- }
-
- void OnPaint(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
- {
- PAINTSTRUCT ps;
- auto hdc = BeginPaint(hwnd, &ps); // ps.rcPaint
-
- //~ DrawGDIRectangle(hdc);
- DrawCairoRectangle(hdc);
- EndPaint(hwnd, &ps);
- }
- void DrawCairoRectangle(HDC hdc)
- {
- auto surf = new Win32Surface(hdc);
- auto ctx = Context(surf);
-
- ctx.setSourceRGB(0, 0, 1);
- ctx.paint();
- }
-
- void DrawGDIRectangle(HDC hdc)
- {
- alias win32.wingdi.RGB RGB;
-
- HBRUSH hBrush;
- RECT rect;
- SetRect(&rect, 0, 0, cxClient, cyClient);
- hBrush = CreateSolidBrush(RGB(0, 0, 255));
- FillRect(hdc, &rect, hBrush);
-
- DeleteObject(hBrush);
- }
- }