[idd] helper: add mode edit controls

This commit is contained in:
Quantum
2025-10-04 03:33:53 -04:00
committed by Geoffrey McRae
parent 569619384c
commit 124b4742e0
5 changed files with 70 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
#pragma once
#include "CWidget.h"
#include <string>
class CEditWidget : public CWidget
{
public:
CEditWidget(DWORD style, HWND parent);
std::wstring getValue();
int getNumericValue();
void setValue(const std::wstring &value);
void setNumericValue(int value);
};