You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
623 B
32 lines
623 B
5 years ago
|
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||
|
//
|
||
|
// Purpose:
|
||
|
//
|
||
|
//=============================================================================//
|
||
|
|
||
|
#include <windows.h>
|
||
|
#include <richedit.h>
|
||
|
#include "mxLineEdit2.h"
|
||
|
|
||
|
|
||
|
|
||
|
mxLineEdit2::mxLineEdit2( mxWindow *parent, int x, int y, int w, int h, const char *label, int id, int style )
|
||
|
: mxLineEdit( parent, x, y, w, h, label, id, style )
|
||
|
{
|
||
|
}
|
||
|
|
||
|
|
||
|
void mxLineEdit2::getText( char *pOut, int len )
|
||
|
{
|
||
|
GetWindowText( (HWND) getHandle (), pOut, len );
|
||
|
pOut[len-1] = 0;
|
||
|
}
|
||
|
|
||
|
|
||
|
void mxLineEdit2::setText( const char *pText )
|
||
|
{
|
||
|
setLabel( "%s", pText );
|
||
|
}
|
||
|
|
||
|
|