[idd] helper: add basic group box around mode config

This commit is contained in:
Quantum
2025-09-23 02:03:41 -04:00
committed by Geoffrey McRae
parent 7a3833782c
commit ab6e2c89d5
6 changed files with 39 additions and 3 deletions

View File

@@ -0,0 +1,10 @@
#include "CGroupBox.h"
#include <commctrl.h>
#include <CDebug.h>
CGroupBox::CGroupBox(LPCWSTR title, DWORD style, HWND parent)
{
m_hwnd = createWindowSimple(WC_BUTTON, title, style | BS_GROUPBOX, parent);
if (!m_hwnd)
DEBUG_ERROR_HR(GetLastError(), "Failed to create static widget");
}