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

📄 testsocketappview.cpp

📁 基于symbian和C#程序进行socket通信的代码
💻 CPP
字号:
/*
 ============================================================================
 Name		: TestSocketAppView.cpp
 Author	  : 
 Copyright   : Your copyright notice
 Description : Application view implementation
 ============================================================================
 */

// INCLUDE FILES
#include <coemain.h>
#include "TestSocketAppView.h"

// ============================ MEMBER FUNCTIONS ===============================

// -----------------------------------------------------------------------------
// CTestSocketAppView::NewL()
// Two-phased constructor.
// -----------------------------------------------------------------------------
//
CTestSocketAppView* CTestSocketAppView::NewL(const TRect& aRect)
	{
	CTestSocketAppView* self = CTestSocketAppView::NewLC(aRect);
	CleanupStack::Pop(self);
	return self;
	}

// -----------------------------------------------------------------------------
// CTestSocketAppView::NewLC()
// Two-phased constructor.
// -----------------------------------------------------------------------------
//
CTestSocketAppView* CTestSocketAppView::NewLC(const TRect& aRect)
	{
	CTestSocketAppView* self = new ( ELeave ) CTestSocketAppView;
	CleanupStack::PushL(self);
	self->ConstructL(aRect);
	return self;
	}

// -----------------------------------------------------------------------------
// CTestSocketAppView::ConstructL()
// Symbian 2nd phase constructor can leave.
// -----------------------------------------------------------------------------
//
void CTestSocketAppView::ConstructL(const TRect& aRect)
	{
	// Create a window for this application view
	CreateWindowL();

	// Set the windows size
	SetRect(aRect);

	// Activate the window, which makes it ready to be drawn
	ActivateL();
	}

// -----------------------------------------------------------------------------
// CTestSocketAppView::CTestSocketAppView()
// C++ default constructor can NOT contain any code, that might leave.
// -----------------------------------------------------------------------------
//
CTestSocketAppView::CTestSocketAppView()
	{
	// No implementation required
	}

// -----------------------------------------------------------------------------
// CTestSocketAppView::~CTestSocketAppView()
// Destructor.
// -----------------------------------------------------------------------------
//
CTestSocketAppView::~CTestSocketAppView()
	{
	// No implementation required
	}

// -----------------------------------------------------------------------------
// CTestSocketAppView::Draw()
// Draws the display.
// -----------------------------------------------------------------------------
//
void CTestSocketAppView::Draw(const TRect& /*aRect*/) const
	{
	// Get the standard graphics context
	CWindowGc& gc = SystemGc();

	// Gets the control's extent
	TRect drawRect(Rect());

	// Clears the screen
	gc.Clear(drawRect);

	}

// -----------------------------------------------------------------------------
// CTestSocketAppView::SizeChanged()
// Called by framework when the view size is changed.
// -----------------------------------------------------------------------------
//
void CTestSocketAppView::SizeChanged()
	{
	DrawNow();
	}

// End of File

⌨️ 快捷键说明

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