#pragma once #include "SRWnd.h" #include namespace SRFramework{ class SREdit : public SRFramework::SRWnd { public: SREdit(VOID); virtual ~SREdit(VOID); BOOL Create(SRWnd *pParentWnd, RECT bounds, INT nChildID = NULL, DWORD dwStyle = WS_CHILD | ES_AUTOHSCROLL | ES_LEFT | WS_TABSTOP | WS_BORDER); // Does not need to be registered the call to InitCommonControlsEx // does that for us. BOOL Register() { return TRUE; } WCString GetText(); }; }