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

对话框与窗口

开发平台:

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_GUICAPOUTBAR_H__367A6805_A544_11D5_B916_000000000000__INCLUDED_)
  23. #define AFX_GUICAPOUTBAR_H__367A6805_A544_11D5_B916_000000000000__INCLUDED_
  24. #if _MSC_VER > 1000
  25. #pragma once
  26. #endif // _MSC_VER > 1000
  27. #include "GuiMiniSplitter.h" 
  28. #include "GuiMiniTool.h" 
  29. class GUILIBDLLEXPORT GuiCapOutBar : public CControlBar  
  30. {
  31. public:
  32. GuiCapOutBar();
  33. virtual ~GuiCapOutBar();
  34. public:
  35. BOOL Create(DWORD dwStyle, CWnd* pParentWnd, UINT uID, int iMaxi = 32);
  36. virtual void OnUpdateCmdUI(CFrameWnd* pTarget, BOOL bDisableIfNoHndler);
  37. virtual CSize CalcFixedLayout(BOOL bStretch, BOOL bHorz);
  38. void SetStyleFlag(BOOL m_bFlag);
  39. BOOL SetSplitter(CGuiMiniSplitter* m_sppliter);
  40. BOOL SetMiniTool(CGuiMiniTool* m_sppliter);
  41. void RecalLayout();
  42. virtual void StyleDispl(DWORD dwDsp=GUISTYLE_XP)
  43. {
  44. m_StyleDisplay=dwDsp;
  45. SendMessage(WM_NCPAINT);Invalidate(); UpdateWindow();
  46. }
  47. DWORD m_StyleDisplay;
  48. protected:
  49. int         m_iBorder;
  50. BOOL         m_bIsFlag;
  51. int         m_iHigh;
  52. UINT         m_uID;
  53. CGuiMiniSplitter* m_miniSplitter;
  54. CGuiMiniTool* m_MiniTool;
  55. protected:
  56. //{{AFX_MSG(GuiCapOutBar)
  57. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  58. afx_msg void OnPaint();
  59. afx_msg BOOL OnEraseBkgnd(CDC* pDC);
  60. afx_msg void OnSize(UINT nType, int cx, int cy);
  61. afx_msg void OnSysColorChange();
  62. afx_msg void OnNcCalcSize(BOOL bCalcValidRects, NCCALCSIZE_PARAMS FAR* lpncsp);
  63. afx_msg void OnNcPaint();
  64. //}}AFX_MSG
  65. DECLARE_MESSAGE_MAP()
  66. };
  67. #endif // !defined(AFX_GUICAPOUTBAR_H__367A6805_A544_11D5_B916_000000000000__INCLUDED_)