vnclogon.cpp

来自「这是一个比较复杂的远程控制工具,分为服务器与客户斋,让你了解socket编程的知」· C++ 代码 · 共 138 行

CPP
138
字号
#include "stdhdrs.h"
#include "resource.h"
#include <omnithread.h>
#include "vncDesktop.h"
#include "vnclogon.h"


extern HINSTANCE	hAppInstance;
extern BOOL WINAPI SSPLogonUser(LPTSTR szDomain, LPTSTR szUser, LPTSTR szPassword);
TCHAR szUsername[64];
TCHAR szPassword[64];
TCHAR szDomain[64];

BOOL vncLogonThread::Init(vncDesktop *desktop)
{
	m_desktop = desktop;
	m_desktop->logon=1;
	logonhwnd=NULL;
	rect.left=0;
	rect.top=0;
	rect.right=32;
	rect.bottom=32;
	start_undetached();
	return TRUE;
}

void *vncLogonThread::run_undetached(void * arg)
{
	int logonstatus;
	logonstatus=CreateLogonWindow(hAppInstance);
	m_desktop->logon=logonstatus;

	return NULL;
}
BOOL CALLBACK  
vncLogonThread::LogonDlgProc(HWND hDlg,
							 UINT Message,
							 WPARAM wParam,
							 LPARAM lParam)
{
 TCHAR TempString[63];
 vncLogonThread *_this = (vncLogonThread *) GetWindowLong(hDlg, GWL_USERDATA);
  switch (Message)
    {
    case WM_INITDIALOG:
		_this = (vncLogonThread *) lParam;
      _this->CenterWindow(hDlg);
	  SetDlgItemText(hDlg, IDD_DOMAIN,TEXT("."));
      SetDlgItemText(hDlg, IDD_USER_NAME,TEXT(""));
      SetDlgItemText(hDlg, IDD_PASSWORD, TEXT(""));
      SetFocus(GetDlgItem(hDlg, IDD_USER_NAME));

      return(TRUE);

    case WM_COMMAND:
      if (LOWORD(wParam) == IDCANCEL)
			{
				EndDialog(hDlg, 0);
			}
      if (LOWORD(wParam) == IDOK)
			{
			GetDlgItemText(hDlg, IDD_USER_NAME, TempString, 63);
			strcpy(szUsername,TempString);
			GetDlgItemText(hDlg, IDD_PASSWORD,TempString, 63);
			strcpy(szPassword,TempString);
			GetDlgItemText(hDlg, IDD_DOMAIN,TempString, 63);
			strcpy(szDomain,TempString);
			EndDialog(hDlg, 1);
			}
      return(TRUE);
    }

  return(FALSE);

}
int vncLogonThread::CreateLogonWindow(HINSTANCE hInstance)
{
	int returnvalue=0;
	returnvalue = DialogBoxParam(hAppInstance,MAKEINTRESOURCE(IDD_LOGON),
				NULL,
				(DLGPROC) LogonDlgProc,
				(LONG) this);

	if (returnvalue==1)
			
				if ((strcmp(szUsername ,TEXT(""))!=0) && (strcmp(szPassword ,TEXT(""))!=0))
					
						
						if (SSPLogonUser(szDomain, szUsername,szPassword)) return 3;
						
						
					
	
		
	return 2;
}
VOID vncLogonThread::CenterWindow(HWND hwnd)
{
  LONG    dx, dy;
  LONG    dxParent, dyParent;
  LONG    Style;
  logonhwnd=hwnd;
  GetWindowRect(hwnd, &rect);
  dx = rect.right - rect.left;
  dy = rect.bottom - rect.top;

  Style = GetWindowLong(hwnd, GWL_STYLE);
  if ((Style & WS_CHILD) == 0) 
    {
      dxParent = GetSystemMetrics(SM_CXSCREEN);
      dyParent = GetSystemMetrics(SM_CYSCREEN);
    } 
  else 
    {
      HWND    hwndParent;
      RECT    rectParent;

      hwndParent = GetParent(hwnd);
      if (hwndParent == NULL) 
	{
	  hwndParent = GetDesktopWindow();
	}

      GetWindowRect(hwndParent, &rectParent);

      dxParent = rectParent.right - rectParent.left;
      dyParent = rectParent.bottom - rectParent.top;
    }

  rect.left = (dxParent - dx) / 2+m_desktop->m_ScreenOffsetx;
  rect.top  = (dyParent - dy) / 3+m_desktop->m_ScreenOffsety;

  SetWindowPos(hwnd, HWND_TOPMOST, rect.left, rect.top, 0, 0, SWP_NOSIZE);

  SetForegroundWindow(hwnd);
}

⌨️ 快捷键说明

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