SignEdit.cpp
上传用户:yatsl7111
上传日期:2007-01-08
资源大小:1433k
文件大小:2k
- /********************************************************************
- SignEdit.cpp - ISee图像浏览器—图像处理模块类SignEdit实现代码文件
- 版权所有(C) VCHelp-coPathway-ISee workgroup 2000 all member's
- 这一程序是自由软件,你可以遵照自由软件基金会出版的GNU 通用许可证
- 条款来修改和重新发布这一程序。或者用许可证的第二版,或者(根据你
- 的选择)用任何更新的版本。
- 发布这一程序的目的是希望它有用,但没有任何担保。甚至没有适合特定
- 目地的隐含的担保。更详细的情况请参阅GNU通用许可证。
- 你应该已经和程序一起收到一份GNU通用许可证(GPL)的副本。如果还没有,
- 写信给:
- The Free Software Foundation, Inc., 675 Mass Ave, Cambridge,
- MA02139, USA
- 如果你在使用本软件时有什么问题或建议,用以下地址可以与我们取得联
- 系:
- http://isee.126.com
- http://www.vchelp.net
- 或:
- iseesoft@china.com
- 作者:马翔
- e-mail:hugesoft@yeah.net
- 功能实现:可不输入内容的整数编辑框
- 文件版本:
- Build 000123
- Date 2000-12-3
- ********************************************************************/
- // SignEdit.cpp : implementation file
- //
- #include "stdafx.h"
- #include "flt_mass.h"
- #include "SignEdit.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CSignEdit
- CSignEdit::CSignEdit()
- {
- }
- CSignEdit::~CSignEdit()
- {
- }
- BEGIN_MESSAGE_MAP(CSignEdit, CEdit)
- //{{AFX_MSG_MAP(CSignEdit)
- ON_WM_CHAR()
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // CSignEdit message handlers
- void CSignEdit::OnChar(UINT nChar, UINT nRepCnt, UINT nFlags)
- {
- // TODO: Add your message handler code here and/or call default
- if((nChar<0x20) || (nChar>='0') && (nChar<='9'))
- {
- CEdit::OnChar(nChar, nRepCnt, nFlags);
- }
- else
- {
- ::MessageBeep(0xFFFFFFFF);
- }
- }