SignEdit.cpp
上传用户:yatsl7111
上传日期:2007-01-08
资源大小:1433k
文件大小:2k
源码类别:

图形图象

开发平台:

Visual C++

  1. /********************************************************************
  2. SignEdit.cpp - ISee图像浏览器—图像处理模块类SignEdit实现代码文件
  3.     版权所有(C) VCHelp-coPathway-ISee workgroup 2000 all member's
  4.     这一程序是自由软件,你可以遵照自由软件基金会出版的GNU 通用许可证
  5. 条款来修改和重新发布这一程序。或者用许可证的第二版,或者(根据你
  6. 的选择)用任何更新的版本。
  7.     发布这一程序的目的是希望它有用,但没有任何担保。甚至没有适合特定
  8. 目地的隐含的担保。更详细的情况请参阅GNU通用许可证。
  9.     你应该已经和程序一起收到一份GNU通用许可证(GPL)的副本。如果还没有,
  10. 写信给:
  11.     The Free Software Foundation, Inc.,  675  Mass Ave,  Cambridge,
  12.     MA02139,  USA
  13. 如果你在使用本软件时有什么问题或建议,用以下地址可以与我们取得联
  14. 系:
  15. http://isee.126.com
  16. http://www.vchelp.net
  17. 或:
  18. iseesoft@china.com
  19. 作者:马翔
  20.    e-mail:hugesoft@yeah.net
  21.    功能实现:可不输入内容的整数编辑框
  22. 文件版本:
  23. Build 000123
  24. Date  2000-12-3
  25. ********************************************************************/
  26. // SignEdit.cpp : implementation file
  27. //
  28. #include "stdafx.h"
  29. #include "flt_mass.h"
  30. #include "SignEdit.h"
  31. #ifdef _DEBUG
  32. #define new DEBUG_NEW
  33. #undef THIS_FILE
  34. static char THIS_FILE[] = __FILE__;
  35. #endif
  36. /////////////////////////////////////////////////////////////////////////////
  37. // CSignEdit
  38. CSignEdit::CSignEdit()
  39. {
  40. }
  41. CSignEdit::~CSignEdit()
  42. {
  43. }
  44. BEGIN_MESSAGE_MAP(CSignEdit, CEdit)
  45. //{{AFX_MSG_MAP(CSignEdit)
  46. ON_WM_CHAR()
  47. //}}AFX_MSG_MAP
  48. END_MESSAGE_MAP()
  49. /////////////////////////////////////////////////////////////////////////////
  50. // CSignEdit message handlers
  51. void CSignEdit::OnChar(UINT nChar, UINT nRepCnt, UINT nFlags) 
  52. {
  53. // TODO: Add your message handler code here and/or call default
  54. if((nChar<0x20) || (nChar>='0') && (nChar<='9'))
  55. {
  56. CEdit::OnChar(nChar, nRepCnt, nFlags);
  57. }
  58. else
  59. {
  60. ::MessageBeep(0xFFFFFFFF);
  61. }
  62. }