Click here to Skip to main content
15,895,656 members
Articles / Desktop Programming / MFC

Remote Control PCs

Rate me:
Please Sign up or sign in to vote.
4.60/5 (150 votes)
20 Sep 2013GPL3 902.1K   63.9K   489  
Two projects that work together to remote control PCs across a LAN.
// Remote Desktop System - remote controlling of multiple PC's
// Copyright (C) 2000-2009 GravyLabs LLC

// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; version 2 of the License.

// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.

// You should have received a copy of the GNU General Public License along
// with this program; if not, write to the Free Software Foundation, Inc.,
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.

#include "stdafx.h"
#include "RDV.h"
#include "RDVDoc.h"
#include "RDVView.h"
#include "NewConnectionDlg.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#endif

// CRDVDoc

IMPLEMENT_DYNCREATE(CRDVDoc, CDocument)

BEGIN_MESSAGE_MAP(CRDVDoc, CDocument)
END_MESSAGE_MAP()


// CRDVDoc construction/destruction

CRDVDoc::CRDVDoc()
{
}

CRDVDoc::~CRDVDoc()
{
}

// Return the view
CRDVView * CRDVDoc::GetView()
{
	CRDVView * pView = NULL;
	POSITION Pos = GetFirstViewPosition();
	if (Pos)
		pView = (CRDVView *)GetNextView(Pos);
	return pView;
}

BOOL CRDVDoc::OnNewDocument()
{
	if (!CDocument::OnNewDocument())
		return FALSE;

	// Display the connection dialog
	CNewConnectionDlg NewConnection;
	if (NewConnection.DoModal() != IDOK)
		return FALSE;

	// Set the connection specifics for a successful connection
	m_csIp = NewConnection.m_csIp;
	m_csPort = NewConnection.m_csPort;
	m_csPassword = NewConnection.m_csPassword;

	// Connect to the server
	GetView()->ConnectServer();

	return TRUE;
}

void CRDVDoc::OnCloseDocument()
{
	// Close all active connections
	CRDVView * pView = GetView();
	if (pView)
		pView->DisconnectServer();

	// Close the document
	CDocument::OnCloseDocument();
}

// CRDVDoc serialization

void CRDVDoc::Serialize(CArchive & ar)
{
	if (ar.IsStoring())
	{
		// Save the connection information
		ar << m_csIp;
		ar << m_csPort;
		ar << m_csPassword;
	}
	else
	{
		// Load the connection information
		ar >> m_csIp;
		ar >> m_csPort;
		ar >> m_csPassword;

		// Connect to the server
		GetView()->ConnectServer();
	}
}

// CRDVDoc diagnostics

#ifdef _DEBUG
void CRDVDoc::AssertValid() const
{
	CDocument::AssertValid();
}

void CRDVDoc::Dump(CDumpContext& dc) const
{
	CDocument::Dump(dc);
}
#endif //_DEBUG

// CRDVDoc commands

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPLv3)


Written By
Founder
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions