Nuklear/demo/gdi_native_nuklear/window.h

360 lines
11 KiB
C
Raw Normal View History

#ifndef NK_GDI_WINDOW
#define NK_GDI_WINDOW
2022-02-25 13:13:01 +03:00
#define NK_GDI_WINDOW_CLS L"WNDCLS_NkGdi"
2022-02-25 13:13:01 +03:00
#include <Windows.h>
2022-02-25 13:13:01 +03:00
/* Functin pointer types for window callbacks */
typedef void(*nkgdi_window_func_update)(void);
typedef int(*nkgdi_window_func_close)(void);
typedef int(*nkgdi_window_func_draw)(struct nk_context*);
2022-02-25 13:13:01 +03:00
/* Window container / context */
struct nkgdi_window
{
/* Properties */
int allow_sizing;
int allow_maximize;
int allow_move;
int has_titlebar;
/* Callbacks */
nkgdi_window_func_update cb_on_update;
nkgdi_window_func_close cb_on_close;
nkgdi_window_func_draw cb_on_draw;
/* Internal Data */
struct
2022-02-25 13:13:01 +03:00
{
// Window handle
HWND window_handle;
// Nuklear context
nk_gdi_ctx nk_gdi_ctx;
struct nk_context* nk_ctx;
// Nuklear objects
GdiFont* gdi_font;
HDC window_dc;
// Window runtime features
int is_open;
int is_draggin;
int ws_override;
int is_maximized;
POINT drag_offset;
int width;
int height;
}_internal;
};
/* API */
void nkgdi_window_init(void);
void nkgdi_window_shutdown(void);
void nkgdi_window_create(struct nkgdi_window* wnd, unsigned int width, unsigned int height, const char* name, int posX, int posY);
int nkgdi_window_update(struct nkgdi_window* wnd);
void nkgdi_window_destroy(struct nkgdi_window* wnd);
2022-02-25 13:13:01 +03:00
#ifdef NKGDI_IMPLEMENT_WINDOW
LRESULT nkgdi_window_proc_setup(HWND wnd, UINT msg, WPARAM wParam, LPARAM lParam);
LRESULT nkgdi_window_proc_run(HWND wnd, UINT msg, WPARAM wParam, LPARAM lParam);
2022-02-25 13:13:01 +03:00
void nkgdi_window_init(void)
2022-02-25 13:13:01 +03:00
{
// Describe class
WNDCLASSEXW cls;
cls.cbSize = sizeof(WNDCLASSEXW);
cls.style = CS_OWNDC | CS_DBLCLKS;
cls.lpfnWndProc = &nkgdi_window_proc_setup;
2022-02-25 13:13:01 +03:00
cls.cbClsExtra = 0;
cls.cbWndExtra = 0;
cls.hInstance = GetModuleHandle(NULL);
cls.hIcon = LoadIcon(NULL, IDI_APPLICATION);
cls.hCursor = LoadCursor(NULL, IDC_ARROW);
cls.hbrBackground = NULL;
cls.lpszMenuName = NULL;
cls.lpszClassName = NK_GDI_WINDOW_CLS;
2022-02-25 13:13:01 +03:00
cls.hIconSm = NULL;
// Register class
RegisterClassExW(&cls);
}
void nkgdi_window_shutdown(void)
{
UnregisterClassW(NK_GDI_WINDOW_CLS, GetModuleHandle(NULL));
}
void nkgdi_window_create(struct nkgdi_window* wnd, unsigned int width, unsigned int height, const char* name, int posX, int posY)
2022-02-25 13:13:01 +03:00
{
DWORD styleEx = WS_EX_WINDOWEDGE;
DWORD style = WS_POPUP;
// Compute window size
RECT cr;
cr.left = 0;
cr.top = 0;
cr.right = width;
cr.bottom = height;
AdjustWindowRectEx(&cr, style, FALSE, styleEx);
// Create the window
wnd->_internal.window_handle = CreateWindowExW(
2022-02-25 13:13:01 +03:00
styleEx,
NK_GDI_WINDOW_CLS,
2022-02-25 13:13:01 +03:00
L"NkGdi",
style | WS_VISIBLE,
posX, posY,
cr.right - cr.left, cr.bottom - cr.top,
NULL, NULL,
GetModuleHandleW(NULL),
wnd
2022-02-25 13:13:01 +03:00
);
// Rename window to user picked name
SetWindowTextA(wnd->_internal.window_handle, name);
2022-02-25 13:13:01 +03:00
// Get DC
wnd->_internal.window_dc = GetWindowDC(wnd->_internal.window_handle);
2022-02-25 13:13:01 +03:00
// Create font
wnd->_internal.gdi_font = nk_gdifont_create("Arial", 16);
wnd->_internal.nk_ctx = nk_gdi_init(&wnd->_internal.nk_gdi_ctx, wnd->_internal.gdi_font, wnd->_internal.window_dc, width, height);
// Setup internal data
wnd->_internal.is_open = 1;
wnd->_internal.is_draggin = 0;
wnd->_internal.ws_override = 0;
wnd->_internal.is_maximized = 0;
wnd->_internal.drag_offset.x = 0;
wnd->_internal.drag_offset.y = 0;
wnd->_internal.width = width;
wnd->_internal.height = height;
2022-02-25 13:13:01 +03:00
}
void nkgdi_window_destroy(struct nkgdi_window* wnd)
2022-02-25 13:13:01 +03:00
{
// Destroy GDI context
if (wnd->_internal.nk_gdi_ctx)
2022-02-25 13:13:01 +03:00
{
nk_gdi_shutdown(wnd->_internal.nk_gdi_ctx);
2022-02-25 13:13:01 +03:00
}
// Destroy font
if (wnd->_internal.gdi_font)
2022-02-25 13:13:01 +03:00
{
nk_gdifont_del(wnd->_internal.gdi_font);
2022-02-25 13:13:01 +03:00
}
// Close DC
if (wnd->_internal.window_dc)
2022-02-25 13:13:01 +03:00
{
ReleaseDC(wnd->_internal.window_handle, wnd->_internal.window_dc);
2022-02-25 13:13:01 +03:00
}
// Destroy window
if (wnd->_internal.window_handle)
2022-02-25 13:13:01 +03:00
{
CloseWindow(wnd->_internal.window_handle);
DestroyWindow(wnd->_internal.window_handle);
2022-02-25 13:13:01 +03:00
}
}
int nkgdi_window_update(struct nkgdi_window* wnd)
2022-02-25 13:13:01 +03:00
{
// Only process events while window is open
if (wnd->_internal.is_open)
2022-02-25 13:13:01 +03:00
{
// Windows event loop
MSG msg;
nk_input_begin(wnd->_internal.nk_ctx);
while (PeekMessage(&msg, wnd->_internal.window_handle, 0, 0, PM_REMOVE))
2022-02-25 13:13:01 +03:00
{
TranslateMessage(&msg);
DispatchMessageW(&msg);
}
nk_input_end(wnd->_internal.nk_ctx);
2022-02-25 13:13:01 +03:00
// Get title
char title[1024];
GetWindowTextA(wnd->_internal.window_handle, title, 1024);
// Window flags
nk_flags window_flags = NK_WINDOW_BORDER;
if(wnd->has_titlebar)
window_flags |= NK_WINDOW_CLOSABLE | NK_WINDOW_TITLE;
if(!wnd->_internal.is_maximized && wnd->allow_sizing)
window_flags |= NK_WINDOW_SCALABLE;
2022-02-25 13:13:01 +03:00
// Window body
if (wnd->_internal.ws_override)
nk_window_set_bounds(wnd->_internal.nk_ctx, title, nk_rect(0, 0, wnd->_internal.width, wnd->_internal.height));
if (nk_begin(wnd->_internal.nk_ctx, title, nk_rect(0, 0, wnd->_internal.width, wnd->_internal.height), window_flags))
2022-02-25 13:13:01 +03:00
{
if(wnd->cb_on_draw && !wnd->cb_on_draw(wnd->_internal.nk_ctx))
wnd->_internal.is_open = 0;
2022-02-25 13:13:01 +03:00
// Update window size
struct nk_rect bounds = nk_window_get_bounds(wnd->_internal.nk_ctx);
if(bounds.w != wnd->_internal.width || bounds.h != wnd->_internal.height)
SetWindowPos(wnd->_internal.window_handle, NULL, 0, 0, bounds.w, bounds.h, SWP_NOMOVE | SWP_NOOWNERZORDER);
2022-02-25 13:13:01 +03:00
}
else
{
// Handle window closing
if(!wnd->cb_on_close || wnd->cb_on_close())
wnd->_internal.is_open = 0;
2022-02-25 13:13:01 +03:00
}
nk_end(wnd->_internal.nk_ctx);
wnd->_internal.ws_override = 0;
2022-02-25 13:13:01 +03:00
// Final render pass
nk_gdi_render(wnd->_internal.nk_gdi_ctx, nk_rgb(30, 30, 30));
2022-02-25 13:13:01 +03:00
}
return wnd->_internal.is_open;
2022-02-25 13:13:01 +03:00
}
LRESULT nkgdi_window_proc_setup(HWND wnd, UINT msg, WPARAM wParam, LPARAM lParam)
2022-02-25 13:13:01 +03:00
{
// Wait for setup message
if (msg == WM_NCCREATE)
{
// Get creation parameters & window pointer
CREATESTRUCT* ptrCr = (CREATESTRUCT*)lParam;
struct nkgdi_window* nkgdi_wnd = (struct nkgdi_window*)ptrCr->lpCreateParams;
// Store pointer and new proc in window
SetWindowLongPtr(wnd, GWLP_USERDATA, (LONG_PTR)nkgdi_wnd);
SetWindowLongPtr(wnd, GWLP_WNDPROC, (LONG_PTR)&nkgdi_window_proc_run);
// Handled by window
return nkgdi_window_proc_run(wnd, msg, wParam, lParam);
}
// Default handler
return DefWindowProc(wnd, msg, wParam, lParam);
}
LRESULT nkgdi_window_proc_run(HWND wnd, UINT msg, WPARAM wParam, LPARAM lParam)
{
// Get window pointer
struct nkgdi_window* nkwnd = (struct nkgdi_window*)GetWindowLongPtrW(wnd, GWLP_USERDATA);
2022-02-25 13:13:01 +03:00
// Switch on supplied message code
switch (msg)
{
// Close event
case WM_CLOSE:
if(!nkwnd->cb_on_close || nkwnd->cb_on_close())
nkwnd->_internal.is_open = 0;
2022-02-25 13:13:01 +03:00
return 0; // Will always be handled internaly
// While sizing
case WM_SIZING:
{
RECT cr;
GetClientRect(wnd, &cr);
nkwnd->_internal.width = cr.right - cr.left;
nkwnd->_internal.height = cr.bottom - cr.top;
2022-02-25 13:13:01 +03:00
}
break;
// When sized
case WM_SIZE:
{
// Adjust maximize properties
if (wParam == SIZE_MAXIMIZED)
{
HMONITOR monitor = MonitorFromWindow(wnd, MONITOR_DEFAULTTOPRIMARY);
MONITORINFO monitorInfo;
monitorInfo.cbSize = sizeof(MONITORINFO);
if (GetMonitorInfoW(monitor, &monitorInfo))
{
nkwnd->_internal.height = monitorInfo.rcWork.bottom - monitorInfo.rcWork.top;
nkwnd->_internal.width = monitorInfo.rcWork.right - monitorInfo.rcWork.left;
nkwnd->_internal.ws_override = 1;
nkwnd->_internal.is_maximized = 1;
SetWindowPos(wnd, NULL, 0, 0, nkwnd->_internal.width, nkwnd->_internal.height, SWP_NOMOVE | SWP_NOZORDER);
2022-02-25 13:13:01 +03:00
}
}
else if (wParam == SIZE_RESTORED)
{
nkwnd->_internal.is_maximized = 0;
2022-02-25 13:13:01 +03:00
}
// Compute new bounds
RECT cr;
GetClientRect(wnd, &cr);
nkwnd->_internal.width = cr.right - cr.left;
nkwnd->_internal.height = cr.bottom - cr.top;
2022-02-25 13:13:01 +03:00
}
break;
// When mouse start l-press (drag window)
case WM_LBUTTONDOWN:
{
if (HIWORD(lParam) <= 30 && nkwnd->allow_move)
2022-02-25 13:13:01 +03:00
{
// Start dragging
nkwnd->_internal.is_draggin = 1;
nkwnd->_internal.drag_offset.x = LOWORD(lParam);
nkwnd->_internal.drag_offset.y = HIWORD(lParam);
2022-02-25 13:13:01 +03:00
}
}
break;
// When mouse stops l-press (drag window)
case WM_LBUTTONUP:
nkwnd->_internal.is_draggin = 0;
2022-02-25 13:13:01 +03:00
break;
// Mouse movement (dragging)
case WM_MOUSEMOVE:
{
if (nkwnd->_internal.is_draggin && !nkwnd->_internal.is_maximized)
2022-02-25 13:13:01 +03:00
{
// Get mouse postion and substract offset
POINT cursorPos;
GetCursorPos(&cursorPos);
cursorPos.x -= nkwnd->_internal.drag_offset.x;
cursorPos.y -= nkwnd->_internal.drag_offset.y;
2022-02-25 13:13:01 +03:00
// Use as new position
ShowWindow(wnd, SW_RESTORE);
2022-02-25 13:13:01 +03:00
SetWindowPos(wnd, NULL, cursorPos.x, cursorPos.y, 0, 0, SWP_NOSIZE | SWP_NOZORDER);
}
}
break;
// On mouse doubble click (maximize)
case WM_LBUTTONDBLCLK:
{
if (HIWORD(lParam) <= 30 && nkwnd->allow_maximize)
2022-02-25 13:13:01 +03:00
{
if (nkwnd->_internal.is_maximized)
2022-02-25 13:13:01 +03:00
{
ShowWindow(wnd, SW_RESTORE);
}
else
{
ShowWindow(wnd, SW_MAXIMIZE);
}
nkwnd->_internal.ws_override = 1;
2022-02-25 13:13:01 +03:00
}
}
break;
}
// Send to nuklear
if (nkwnd->_internal.nk_gdi_ctx && nk_gdi_handle_event(nkwnd->_internal.nk_gdi_ctx, wnd, msg, wParam, lParam))
2022-02-25 13:13:01 +03:00
return 0;
// In case this is ever reached: Run default behaviour
return DefWindowProc(wnd, msg, wParam, lParam);
}
#endif
2022-02-25 13:13:01 +03:00
#endif