资源简介
VC++6.0+MFC做毕设做的网络聊天具(服务端和客户端),包括:
0.普通聊天(文字、图片)
1.聊天室
2.传输文件(断点续传)
3.共享屏幕
4.白板
5.视频、音频聊天

代码片段和文件信息
// AdvButton.cpp : implementation file
//
#include “stdafx.h“
#include “instantmessaging.h“
#include “AdvButton.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
#define NORMAL 1 /// 处于正常状态
#define HOVER 2 /// 处于焦点状态
#define DOWN 3 /// 处于按下状态
#define DISABLE 4 /// 处于无效状态
#define TRANSPARENTCOLOR RGB( 255 0 255 ) /// 定义透明位图的RGB值
#pragma comment( lib “C:\\Program Files\\Microsoft Visual Studio\\VC98\\Lib\\MSIMG32.LIB“ )
/////////////////////////////////////////////////////////////////////////////
// CAdvButton
static BOOL bTrackLeave = FALSE;
CAdvButton::CAdvButton()
{
m_nState = NORMAL;
}
CAdvButton::~CAdvButton()
{
DeleteBmp();
}
BEGIN_MESSAGE_MAP(CAdvButton CButton)
//{{AFX_MSG_MAP(CAdvButton)
ON_WM_MOUSEMOVE()
ON_WM_LBUTTONDOWN()
ON_WM_LBUTTONUP()
ON_MESSAGE( WM_MOUSELEAVE onmouseleave )
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CAdvButton message handlers
void CAdvButton::PreSubclassWindow()
{
Modifystyle( 0 BS_OWNERDRAW );
CButton::PreSubclassWindow();
m_pToolTipCtrl.Create( this TTS_ALWAYSTIP );
m_pToolTipCtrl.SetDelayTime( 100 );
CString strText;
GetWindowText( strText );
m_pToolTipCtrl.AddTool( this strText );
}
void CAdvButton::onmousemove(UINT nFlags CPoint point)
{
if( !bTrackLeave )
{
TRACKMOUSEEVENT tme;
tme.cbSize = sizeof( TRACKMOUSEEVENT );
tme.hwndTrack = m_hWnd;
tme.dwFlags = TME_LEAVE;
::_TrackMouseEvent( &tme );
bTrackLeave = TRUE;
m_nState = HOVER;
Invalidate();
}
CButton::onmousemove(nFlags point);
}
void CAdvButton::onmouseleave( WPARAM wParam LPARAM lParam )
{
bTrackLeave = FALSE;
m_nState = NORMAL;
Invalidate();
}
void CAdvButton::OnLButtonDown(UINT nFlags CPoint point)
{
m_nState = DOWN;
Invalidate();
CButton::OnLButtonDown(nFlags point);
}
void CAdvButton::OnLButtonUp(UINT nFlags CPoint point)
{
m_nState = HOVER;
Invalidate();
CButton::OnLButtonUp(nFlags point);
}
void CAdvButton::DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct)
{
if( lpDrawItemStruct->itemState & ODS_DISABLED )
{
m_nState = DISABLE;
}
switch( m_nState )
{
case NORMAL:
DrawNORMAL();
break;
case HOVER:
DrawHOVER();
break;
case DOWN:
DrawDOWN();
break;
case DISABLE:
DrawDISABLE();
break;
default:
break;
}
}
void CAdvButton::DrawNORMAL()
{
CDC *pDC = GetDC();
BITMAP bmp;
if( !m_bmpNormal.m_hobject )
{
return;
}
m_bmpNormal.GetBitmap( &bmp );
SetWindowPos( NULL 0 0 bmp.bmWidth bmp.bmHeight SWP_NOMOVE | SWP_NOZORDER);
CDC dcMem;
dcMem.CreateCompatibleDC( pDC );
CBitmap *pOldBmp;
pOldBmp = dcMem.Selectobject( &m_bmpNormal );
pOldBmp->Deleteobject();
TransparentBlt( pDC->m_hDC 0 0 bmp.bmWidth bmp.bmHeight
dcMem.m_hDC 0 0 bmp
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 5799 2011-02-08 00:23 Messaging\AdvButton.cpp
文件 2098 2011-02-08 00:15 Messaging\AdvButton.h
文件 708 2011-01-30 11:51 Messaging\AdvComboBox.cpp
文件 1176 2011-01-30 11:51 Messaging\AdvComboBox.h
文件 10660 2011-02-27 17:57 Messaging\CanvasStatic.cpp
文件 2546 2011-02-20 18:32 Messaging\CanvasStatic.h
文件 5798 2011-02-28 21:39 Messaging\ChatDlg.cpp
文件 1979 2011-02-14 10:17 Messaging\ChatDlg.h
文件 13135 2011-02-27 16:22 Messaging\ChatRoomClientDlg.cpp
文件 2582 2011-02-27 16:20 Messaging\ChatRoomClientDlg.h
文件 1100 2011-02-09 23:46 Messaging\ChatRoomClientSocket.cpp
文件 1477 2011-02-09 23:45 Messaging\ChatRoomClientSocket.h
文件 17636 2011-02-27 15:25 Messaging\ChatRoomServerDlg.cpp
文件 2698 2011-02-27 15:14 Messaging\ChatRoomServerDlg.h
文件 1100 2011-02-09 22:31 Messaging\ChatRoomServerSocket.cpp
文件 1477 2011-02-09 22:29 Messaging\ChatRoomServerSocket.h
文件 7476 2010-11-08 15:32 Messaging\Debug\audio.wav
文件 269 2012-10-25 14:21 Messaging\Debug\conf.ini
文件 2457671 2011-05-13 08:18 Messaging\Debug\InstantMessaging.exe
文件 9220 2010-11-08 15:32 Messaging\Debug\msg.wav
文件 212240 1998-06-24 00:00 Messaging\Debug\RICHTX32.OCX
文件 24637 2010-05-12 10:12 Messaging\Debug\sendfilecomplete.wav
文件 100352 2010-07-19 00:22 Messaging\Debug\zlib1.dll
文件 785 2011-02-25 23:22 Messaging\Debug.cpp
文件 567 2011-02-23 23:32 Messaging\Debug.h
文件 3187 2011-05-12 16:34 Messaging\DialogSetting.cpp
文件 1619 2011-02-15 21:27 Messaging\DialogSetting.h
文件 2098 2011-02-12 19:09 Messaging\font.cpp
文件 1461 2011-02-12 19:09 Messaging\font.h
文件 9886 2011-03-02 15:08 Messaging\FriendsListCtrl.cpp
............此处省略262个文件信息
- 上一篇:VS2015 C++操作WebService
- 下一篇:用C语言实现谱减法
相关资源
- C++多线程网络编程Socket
- VC++ 多线程文件读写操作
- 移木块游戏,可以自编自玩,vc6.0编写
- VC++MFC小游戏实例教程(实例)+MFC类库
- VC++实现CMD命令执行与获得返回信息
- socket客户端.c
- socket服务端.c
- socket tcp应用
- VC++基于OpenGL模拟的一个3维空间模型
- 基于VC++的SolidWorks二次开发SolidWorks
- 派克变换VC++源码(附文档)
- VC++ 串口
- socket通讯c++源码(客户端+服务端)
- VC++ 大富翁4_大富翁游戏源码
- MFC的异步网络通讯应用程序
- VC++ 摄像头视频采集与回放源程序
- 转 VC++ 实现电子邮件(Email)发送
- 基于MFC的VC++仿QQ浏览器源码(雏形)
- VC++ 服务程序编写及安装与卸载
- VC++6.0番茄西红柿VAXvirsual assist X完美破
- 基于改进的fcm算法的图像分割vc++
- VC++6.0 绿色版,免安装,非常好用。
- Microsoft Visual C++ 2005 Redistributable Pack
- VC++MFC课程设计的学生成绩管理系统
- 大智慧365DLL插件设计
- VC++6.0汉化包
- VC++完整商业界面源码(再上传)
- VC++编程技术600个大型项目源码.rar
- VC++实现RSA加密算法
- VC++ 中国象棋经典游戏源代码
评论
共有 条评论