GuiDocBarExtenEx.h
上传用户:wlkj888
上传日期:2022-08-01
资源大小:806k
文件大小:2k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. /****************************************************************************
  2.  * *  
  3.  * GuiToolKit   *
  4.  * (MFC extension) *  
  5.  * Created by Francisco Campos G. www.beyondata.com fcampos@beyondata.com *
  6.  *--------------------------------------------------------------------------*    
  7.  * *
  8.  * This program is free software; so you are free to use it any of your *
  9.  * applications(Freeware, Shareware, Commercial), but leave this header *
  10.  * intact. *
  11.  * *
  12.  * These files are provided "as is" without warranty of any kind. *
  13.  * *
  14.  *        GuiToolKit is forever FREE CODE !!!!! *
  15.  * *
  16.  *--------------------------------------------------------------------------*
  17.  * Created by: Francisco Campos G. *
  18.  * Bug Fixes and improvements :(Add your name) *
  19.  * -Francisco Campos *
  20.  * *
  21.  ****************************************************************************/
  22. #if !defined(AFX_GUIDOCBAREXTENEX_H__2B746533_9AEB_11D5_A8C3_0008C7B2934C__INCLUDED_)
  23. #define AFX_GUIDOCBAREXTENEX_H__2B746533_9AEB_11D5_A8C3_0008C7B2934C__INCLUDED_
  24. #if _MSC_VER > 1000
  25. #pragma once
  26. #endif // _MSC_VER > 1000
  27. class GUILIBDLLEXPORT CGuiDocBarExtenEx : public CDockBar  
  28. {
  29. DECLARE_DYNCREATE(CGuiDocBarExtenEx)
  30. public:
  31. CGuiDocBarExtenEx();
  32. ~CGuiDocBarExtenEx();
  33. public:
  34. void BarsDocking(CFrameWnd* pFrame, DWORD dwDockStyle);
  35. virtual void DoPaint(CDC* pDC);
  36. BOOL _IsMenuBar(int nPos, CPtrArray& arrBars);
  37. virtual void StyleDispl(DWORD dwDsp=GUISTYLE_XP)
  38. {
  39. m_StyleDisplay=dwDsp;
  40. SendMessage(WM_NCPAINT);
  41. Invalidate(); 
  42. UpdateWindow();
  43. }
  44. DWORD m_StyleDisplay;
  45. public:
  46. // ClassWizard generated virtual function overrides
  47. //{{AFX_VIRTUAL(CDockBarEx)
  48. virtual CSize CalcFixedLayout(BOOL bStretch, BOOL bHorz);
  49. //}}AFX_VIRTUAL
  50. DECLARE_MESSAGE_MAP()
  51. };
  52. #endif // !defined(AFX_GUIDOCBAREXTEN_H__2B746533_9AEB_11D5_A8C3_0008C7B2934C__INCLUDED_)