- Visual C++源码
- Visual Basic源码
- C++ Builder源码
- Java源码
- Delphi源码
- C/C++源码
- PHP源码
- Perl源码
- Python源码
- Asm源码
- Pascal源码
- Borland C++源码
- Others源码
- SQL源码
- VBScript源码
- JavaScript源码
- ASP/ASPX源码
- C#源码
- Flash/ActionScript源码
- matlab源码
- PowerBuilder源码
- LabView源码
- Flex源码
- MathCAD源码
- VBA源码
- IDL源码
- Lisp/Scheme源码
- VHDL源码
- Objective-C源码
- Fortran源码
- tcl/tk源码
- QT源码
OAMMINIDOCKFRAMEWND.CPP
资源名称:SNMP范例源代码.zip [点击查看]
上传用户:shgx688
上传日期:2009-12-27
资源大小:855k
文件大小:3k
源码类别:
SNMP编程
开发平台:
MultiPlatform
- // OAMMiniDockFrameWnd.cpp : implementation file
- //
- #include "stdafx.h"
- #include "OAMMiniDockFrameWnd.h"
- #include "OAMDockContext.h"
- #include "OAMSizeDockBar.h"
- #include "OAMControlBar.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // COAMMiniDockFrameWnd
- COAMMiniDockFrameWnd::COAMMiniDockFrameWnd()
- {
- // TODO: add construction code here.
- }
- COAMMiniDockFrameWnd::~COAMMiniDockFrameWnd()
- {
- // TODO: add destruction code here.
- }
- IMPLEMENT_DYNCREATE(COAMMiniDockFrameWnd, CMiniDockFrameWnd)
- BEGIN_MESSAGE_MAP(COAMMiniDockFrameWnd, CMiniDockFrameWnd)
- //{{AFX_MSG_MAP(COAMMiniDockFrameWnd)
- ON_WM_NCLBUTTONDOWN()
- ON_WM_NCLBUTTONDBLCLK()
- ON_WM_ERASEBKGND()
- ON_WM_MBUTTONDBLCLK()
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // COAMMiniDockFrameWnd message handlers
- void COAMMiniDockFrameWnd::OnNcLButtonDown(UINT nHitTest, CPoint point)
- {
- COAMSizeDockBar *pSizeBar = (COAMSizeDockBar*)&m_wndDockBar;
- if (nHitTest == HTCAPTION)
- {
- ActivateTopParent();
- if ((m_wndDockBar.m_dwStyle & CBRS_FLOAT_MULTI) == 0)
- {
- int nPos = 1;
- CControlBar* pBar = NULL;
- while(pBar == NULL && nPos < m_wndDockBar.m_arrBars.GetSize())
- pBar = pSizeBar->GetDockedSizeBar(nPos++);
- // ASSERT(pBar != NULL);
- // ASSERT_KINDOF(CControlBar, pBar);
- // ASSERT(pBar->m_pDockContext != NULL);
- if (!pBar->IsKindOf(RUNTIME_CLASS(COAMControlBar))) {
- CMiniDockFrameWnd::OnNcLButtonDown(nHitTest,point);
- return;
- }
- ((COAMDockContext *)pBar->m_pDockContext)->StartDragDockBar(point);
- return;
- }
- }
- else if (nHitTest >= HTSIZEFIRST && nHitTest <= HTSIZELAST)
- {
- ActivateTopParent();
- int nPos = 1;
- CControlBar* pBar = NULL;
- while(pBar == NULL && nPos < m_wndDockBar.m_arrBars.GetSize())
- pBar = pSizeBar->GetDockedSizeBar(nPos++);
- // ASSERT(pBar != NULL);
- ASSERT_KINDOF(CControlBar, pBar);
- // ASSERT(pBar->m_pDockContext != NULL);
- // ASSERT((m_wndDockBar.m_dwStyle & CBRS_FLOAT_MULTI) == 0);
- if (!pBar->IsKindOf(RUNTIME_CLASS(COAMControlBar))) {
- CMiniDockFrameWnd::OnNcLButtonDown(nHitTest,point);
- return;
- }
- pBar->m_pDockContext->StartResize(nHitTest, point);
- return;
- }
- CMiniFrameWnd::OnNcLButtonDown(nHitTest, point);
- }
- void COAMMiniDockFrameWnd::OnNcLButtonDblClk(UINT nHitTest, CPoint point)
- {
- if (nHitTest == HTCAPTION)
- {
- ActivateTopParent();
- COAMSizeDockBar * m_pSizeBar = (COAMSizeDockBar *)&m_wndDockBar;
- if ((m_pSizeBar->m_dwStyle & CBRS_FLOAT_MULTI) == 0)
- {
- int nPos = 1;
- CControlBar* pBar = NULL;
- while(pBar == NULL && nPos < m_pSizeBar->m_arrBars.GetSize())
- pBar = m_pSizeBar->GetDockedSizeBar(nPos++);
- // ASSERT(pBar != NULL);
- ASSERT_KINDOF(CControlBar, pBar);
- // ASSERT(pBar->m_pDockContext != NULL);
- if (pBar->IsKindOf(RUNTIME_CLASS(COAMControlBar)))
- pBar->m_pDockContext->ToggleDocking();
- return;
- }
- }
- }