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

📄 mainfrm.cpp

📁 OPC Client 源代码
💻 CPP
字号:
// MainFrm.cpp : implementation of the CMainFrame class
//

#include "stdafx.h"
#include "TYOPCClient.h"

#include "MainFrm.h"
#include "TYOPCClientDoc.h"


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

/////////////////////////////////////////////////////////////////////////////
// CMainFrame

IMPLEMENT_DYNCREATE(CMainFrame, CFrameWnd)

BEGIN_MESSAGE_MAP(CMainFrame, CFrameWnd)
	//{{AFX_MSG_MAP(CMainFrame)
	ON_WM_CREATE()
	ON_COMMAND(ID_TOOL_MGT, OnToolMgt)
	ON_UPDATE_COMMAND_UI(ID_TOOL_MGT, OnUpdateToolMgt)
	ON_COMMAND(ID_TOOL_EVENT, OnToolEvent)
	ON_UPDATE_COMMAND_UI(ID_TOOL_EVENT, OnUpdateToolEvent)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

static UINT indicators[] =
{
	ID_SEPARATOR,           // status line indicator
	ID_INDICATOR_CAPS,
	ID_INDICATOR_NUM,
	ID_INDICATOR_SCRL,
};

/////////////////////////////////////////////////////////////////////////////
// CMainFrame construction/destruction

CMainFrame::CMainFrame()
{
	// TODO: add member initialization code here
	m_pViewOPCMgt=NULL;
	m_pViewOPCEvent=NULL;
	m_pCurDoc=NULL;

}

CMainFrame::~CMainFrame()
{
}

int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
	if (CFrameWnd::OnCreate(lpCreateStruct) == -1)
		return -1;
/*	
	if (!m_wndToolBar.CreateEx(this, TBSTYLE_FLAT, WS_CHILD | WS_VISIBLE | CBRS_TOP
		| CBRS_GRIPPER | CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC) ||
		!m_wndToolBar.LoadToolBar(IDR_MAINFRAME))
	{
		TRACE0("Failed to create toolbar\n");
		return -1;      // fail to create
	}
//*/
	m_wndToolBar.CreateHotToolBar( this,MAKEINTRESOURCE(IDR_MAINFRAME),MAKEINTRESOURCE(IDB_HOTTOOLBAR));

	if (!m_wndStatusBar.Create(this) ||
		!m_wndStatusBar.SetIndicators(indicators,
		  sizeof(indicators)/sizeof(UINT)))
	{
		TRACE0("Failed to create status bar\n");
		return -1;      // fail to create
	}

	// TODO: Delete these three lines if you don't want the toolbar to
	//  be dockable
	m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
	EnableDocking(CBRS_ALIGN_ANY);
	DockControlBar(&m_wndToolBar);
	//---------------------------------------------------------------------------------------------------
//*	//
//	COPCEventView* pEventView=new COPCEventView;
//	COPCEventView* pEventView=(COPCEventView*)RUNTIME_CLASS(COPCEventView)->CreateObject();
	m_pViewOPCMgt=(CViewOPCMgt*)RUNTIME_CLASS(CViewOPCMgt)->CreateObject();

	//--------------------------------------------------------------------------------------------------------
	//OPC Sever 管理
	//--------------------------------------------------------------------------------------------------------
	if (!m_wndOPCMgt.Create(_T("OPC管理"), this, CSize(230,260),TRUE,123))
	{
		TRACE0("Failed to create OPC管理 Bar\n");
			return -1;
	}
	//
	//
	if(!m_pViewOPCMgt->CreateEx(WS_EX_CLIENTEDGE,NULL,NULL, 
		WS_CHILD|WS_VISIBLE|WS_DLGFRAME,
		CRect(0,0,0,0),
		&m_wndOPCMgt,
		101)
		)
	{
		TRACE0("Failed to create COPCMgtView\n");
			return -1;
	}
	if(!m_pCurDoc)
	{
		TRACE0("Failed m_pCurDoc=NULL\n");
			return -1;
	}

	m_pCurDoc->AddView (m_pViewOPCMgt);
	//--------------------------------------------------------------------------------------------------------
	//停靠设定
	m_wndOPCMgt.SetBarStyle(m_wndOPCEvent.GetBarStyle() |
		CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC);
	m_wndOPCMgt.EnableDocking(CBRS_ALIGN_ANY);
	DockControlBar(&m_wndOPCMgt, AFX_IDW_DOCKBAR_LEFT);//AFX_IDW_DOCKBAR_LEFT
//*/
//*
	//--------------------------------------------------------------------------------------------------------
	//OPC事件
	//--------------------------------------------------------------------------------------------------------
	if (!m_wndOPCEvent.Create(_T("事件"), this, CSize(230,200),TRUE,123))
	{
		TRACE0("Failed to create 事件 Bar\n");
			return -1;
	}
	m_pViewOPCEvent=(CViewOPCEvent*)RUNTIME_CLASS(CViewOPCEvent)->CreateObject();
	if(!m_pViewOPCEvent->CreateEx(WS_EX_CLIENTEDGE,NULL,NULL, 
		WS_VSCROLL|WS_CHILD|WS_VISIBLE|ES_AUTOVSCROLL,	//|WS_THICKFRAME //改变大小功能具有
		CRect(0,0,0,0),
		&m_wndOPCEvent,
		102)
		)
	{
		TRACE0("Failed to create COPCEventView\n");
			return -1;
	}
	if(!m_pCurDoc)
	{
		TRACE0("Failed m_pCurDoc=NULL\n");
			return -1;
	}
	m_pCurDoc->AddView (m_pViewOPCEvent);
	//--------------------------------------------------------------------------------------------------------
	//停靠设定
	m_wndOPCEvent.SetBarStyle(m_wndOPCEvent.GetBarStyle() |
		CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC);

	m_wndOPCEvent.EnableDocking(CBRS_ALIGN_ANY);
	DockControlBar(&m_wndOPCEvent, AFX_IDW_DOCKBAR_BOTTOM);//AFX_IDW_DOCKBAR_LEFT
//*/
	return 0;
}

BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
{
	if( !CFrameWnd::PreCreateWindow(cs) )
		return FALSE;
	// TODO: Modify the Window class or styles here by modifying
	//  the CREATESTRUCT cs

	return TRUE;
}

/////////////////////////////////////////////////////////////////////////////
// CMainFrame diagnostics

#ifdef _DEBUG
void CMainFrame::AssertValid() const
{
	CFrameWnd::AssertValid();
}

void CMainFrame::Dump(CDumpContext& dc) const
{
	CFrameWnd::Dump(dc);
}

#endif //_DEBUG

/////////////////////////////////////////////////////////////////////////////
// CMainFrame message handlers


BOOL CMainFrame::OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext) 
{
	// TODO: Add your specialized code here and/or call the base class
	
	m_pCurDoc=pContext->m_pCurrentDoc;

	BOOL bResult= CFrameWnd::OnCreateClient(lpcs, pContext);

//	GetActiveDocument()->AddView (&m_cViewOPCMgt);
	return bResult;
}

void CMainFrame::OnToolMgt() 
{
	// TODO: Add your command handler code here
	ShowControlBar(&m_wndOPCMgt, !m_wndOPCMgt.IsVisible(), FALSE);
}

void CMainFrame::OnUpdateToolMgt(CCmdUI* pCmdUI) 
{
	// TODO: Add your command update UI handler code here
	pCmdUI->Enable();
	pCmdUI->SetCheck(m_wndOPCMgt.IsVisible());		
	
}

void CMainFrame::OnToolEvent() 
{
	// TODO: Add your command handler code here
	ShowControlBar(&m_wndOPCEvent, !m_wndOPCEvent.IsVisible(), FALSE);
	
}

void CMainFrame::OnUpdateToolEvent(CCmdUI* pCmdUI) 
{
	// TODO: Add your command update UI handler code here
	pCmdUI->Enable();
	pCmdUI->SetCheck(m_wndOPCEvent.IsVisible());		
}

⌨️ 快捷键说明

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