mirror of
https://github.com/gnif/LookingGlass.git
synced 2026-01-19 02:02:29 +00:00
[idd] helper: add mode edit controls
This commit is contained in:
14
idd/LGIddHelper/CEditWidget.h
Normal file
14
idd/LGIddHelper/CEditWidget.h
Normal 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);
|
||||
};
|
||||
Reference in New Issue
Block a user