NMiniDockFrameWnd.cpp
上传用户:whjcdz88
上传日期:2007-01-02
资源大小:350k
文件大小:2k
源码类别:

工具条

开发平台:

Visual C++

  1. // NMiniDockFrameWnd.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "NMiniDockFrameWnd.h"
  5. #include "NGenericToolBar.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CNMiniDockFrameWnd
  13. IMPLEMENT_DYNCREATE(CNMiniDockFrameWnd, CMiniDockFrameWnd)
  14. CNMiniDockFrameWnd::CNMiniDockFrameWnd()
  15. {
  16. }
  17. CNMiniDockFrameWnd::~CNMiniDockFrameWnd()
  18. {
  19. }
  20. BEGIN_MESSAGE_MAP(CNMiniDockFrameWnd, CMiniDockFrameWnd)
  21. //{{AFX_MSG_MAP(CNMiniDockFrameWnd)
  22. // NOTE - the ClassWizard will add and remove mapping macros here.
  23. //}}AFX_MSG_MAP
  24. END_MESSAGE_MAP()
  25. /////////////////////////////////////////////////////////////////////////////
  26. // CNMiniDockFrameWnd message handlers
  27. void CNMiniDockFrameWnd::RecalcLayout(BOOL bNotify) 
  28. {
  29. // TODO: Add your specialized code here and/or call the base class
  30. CMiniDockFrameWnd::RecalcLayout(bNotify);
  31. int nPos = 1;
  32. CControlBar* pBar = NULL;
  33. while(pBar == NULL && nPos < m_wndDockBar.m_arrBars.GetSize())
  34. {
  35. pBar = (CControlBar*)m_wndDockBar.m_arrBars[nPos];
  36. if (HIWORD(pBar) == 0)
  37. pBar =  NULL;
  38. }
  39. if(pBar)
  40. {
  41. ASSERT_KINDOF(CNGenericToolBar, pBar);
  42. if(pBar->IsKindOf(RUNTIME_CLASS(CNGenericToolBar)))
  43. {
  44. DWORD dwStyle = ((CNGenericToolBar*)pBar)->GetGenericToolBarStyle();
  45. DWORD dwTestStyle = dwStyle&NGTB_NO_SYSMENU;
  46. if(dwTestStyle == NGTB_NO_SYSMENU)
  47. ModifyStyle(WS_SYSMENU,0 );
  48. }
  49. }
  50. }