⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 clientview.cpp

📁 用MFC 开发的基于UDP协议的网络科学计算中心,比较适用于局域网内
💻 CPP
字号:
// clientView.cpp : implementation of the CClientView class
//

#include "stdafx.h"
#include "client.h"
#include "clientDoc.h"
#include "clientView.h"
#include "LoginDlg.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CClientView

IMPLEMENT_DYNCREATE(CClientView, CView)

BEGIN_MESSAGE_MAP(CClientView, CView)
	//{{AFX_MSG_MAP(CClientView)
	ON_UPDATE_COMMAND_UI(ID_APP_FUN1, OnUpdateAppFun1)
	ON_UPDATE_COMMAND_UI(ID_APP_FUN2, OnUpdateAppFun2)
	//}}AFX_MSG_MAP
	// Standard printing commands
	ON_COMMAND(ID_FILE_PRINT, CView::OnFilePrint)
	ON_COMMAND(ID_FILE_PRINT_DIRECT, CView::OnFilePrint)
	ON_COMMAND(ID_FILE_PRINT_PREVIEW, CView::OnFilePrintPreview)
    END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CClientView construction/destruction
bool CClientView::flag;
bool CClientView::openoff;
CString CClientView::strServer;
CClientView::CClientView()
{
	flag=false;
	openoff=false;
	// TODO: add construction code here

}

CClientView::~CClientView()
{
}

BOOL CClientView::PreCreateWindow(CREATESTRUCT& cs)
{
	// TODO: Modify the Window class or styles here by modifying
	//  the CREATESTRUCT cs

	return CView::PreCreateWindow(cs);
}

/////////////////////////////////////////////////////////////////////////////
// CClientView drawing

void CClientView::OnDraw(CDC* pDC)
{

	CClientDoc* pDoc = GetDocument();
	ASSERT_VALID(pDoc);	 
	if(flag==true&&openoff==true)
	{
	pDC->TextOut(2, 3, "登录成功···");
	}
	else if(flag==false&&openoff==true)
	{
    pDC->TextOut(2, 3, "用户名或密码错误···");
	}
	else if(flag==true&&openoff==false)
	{
	  pDC->TextOut(2, 3, "服务器未开···");
	}
	else
	{
       pDC->TextOut(2, 3, "请先登录···");
	}

	// TODO: add draw code for native data here
}

/////////////////////////////////////////////////////////////////////////////
// CClientView printing

BOOL CClientView::OnPreparePrinting(CPrintInfo* pInfo)
{
	// default preparation
	return DoPreparePrinting(pInfo);
}

void CClientView::OnBeginPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
{
	// TODO: add extra initialization before printing
}

void CClientView::OnEndPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
{
	// TODO: add cleanup after printing
}

/////////////////////////////////////////////////////////////////////////////
// CClientView diagnostics

#ifdef _DEBUG
void CClientView::AssertValid() const
{
	CView::AssertValid();
}

void CClientView::Dump(CDumpContext& dc) const
{
	CView::Dump(dc);
}

CClientDoc* CClientView::GetDocument() // non-debug version is inline
{
	ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CClientDoc)));
	return (CClientDoc*)m_pDocument;
}
#endif //_DEBUG

/////////////////////////////////////////////////////////////////////////////
// CClientView message handlers
void CClientView::SetopenoffTrue()
{
	openoff=true;
}
void CClientView::SetopenoffFalse()
{
	openoff=false;
}

void CClientView::SetflagTrue()
{
	flag=true;	
}
void CClientView::SetflagFalse()
{
	flag=false;
}

void CClientView::OnUpdateAppFun1(CCmdUI* pCmdUI) 
{
    if(flag==true&&openoff==true)
	{
	 pCmdUI->Enable(TRUE);
	}
	else
	{
     pCmdUI->Enable(FALSE);
	}

}

void CClientView::OnUpdateAppFun2(CCmdUI* pCmdUI) 
{
	if(flag==true&&openoff==true)
	{
	 pCmdUI->Enable(TRUE);
	}
	else
	{
     pCmdUI->Enable(FALSE);
	}
	
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -