UpDownBtn.cpp
资源名称:视频会议系统.rar [点击查看]
上传用户:popouu88
上传日期:2013-02-11
资源大小:2894k
文件大小:1k
源码类别:
IP电话/视频会议
开发平台:
Visual C++
- // UpDownBtn.cpp : implementation file
- //
- #include "stdafx.h"
- #include "UpDownBtn.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CUpDownBtn
- CUpDownBtn::CUpDownBtn()
- {
- this->action = 0;
- }
- CUpDownBtn::~CUpDownBtn()
- {
- }
- BEGIN_MESSAGE_MAP(CUpDownBtn, CButton)
- //{{AFX_MSG_MAP(CUpDownBtn)
- ON_WM_LBUTTONDOWN()
- ON_WM_LBUTTONUP()
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // CUpDownBtn message handlers
- void CUpDownBtn::OnLButtonDown(UINT nFlags, CPoint point)
- {
- CButton::OnLButtonDown( nFlags , point );
- this->GetParent( )->SendMessage( WM_UPDOWNBUTTON , this->action , true );
- }
- void CUpDownBtn::OnLButtonUp(UINT nFlags, CPoint point)
- {
- CButton::OnLButtonUp(nFlags, point);
- this->GetParent( )->SendMessage( WM_UPDOWNBUTTON , this->action , false );
- }