Counter Strike : Global Offensive Source Code
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.

31 lines
685 B

  1. //========= Copyright � 1996-2005, Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. //=============================================================================//
  6. #ifndef MXLINEEDIT2_H
  7. #define MXLINEEDIT2_H
  8. #ifdef _WIN32
  9. #pragma once
  10. #endif
  11. #ifndef INCLUDED_MXWINDOW
  12. #include <mxtk/mxWindow.h>
  13. #endif
  14. #include <mxtk/mxLineEdit.h>
  15. // Extends the (mostly unimplemented) mxLineEdit control.
  16. class mxLineEdit2 : public mxLineEdit
  17. {
  18. public:
  19. mxLineEdit2( mxWindow *parent, int x, int y, int w, int h, const char *label = 0, int id = 0, int style = 0 );
  20. void getText( char *pOut, int len );
  21. void setText( const char *pText );
  22. };
  23. #endif // MXLINEEDIT2_H