GuiStatusBar.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. #pragma once 
  23. // CGuiStatusBar
  24. //****************************************************************
  25. class GUILIBDLLEXPORT  CGuiStatusBar : public CStatusBar
  26. {
  27. DECLARE_DYNAMIC(CGuiStatusBar)
  28. public:
  29. enum Style{
  30.    DEVSTUDIO=0,
  31.            OFFICE=1
  32. };
  33. //**************************************
  34. CGuiStatusBar();
  35. virtual ~CGuiStatusBar();
  36. //**************************************
  37. public:
  38. BOOL SetIndicators (const UINT* lpIDArray, int nIDCount);
  39. void  Drawpanels(CDC *pDC);
  40. virtual void PreSubclassWindow();
  41. void  DrawLB(CRect *rcLb,CDC* pDC);
  42. void  ClearRect(CDC* pDC,CRect rc);
  43. void  SetStyle(Style nStyle=CGuiStatusBar::DEVSTUDIO);
  44. void  SetPanelText(CString szText,UINT uPanel);
  45. virtual void StyleDispl(DWORD dwDsp=GUISTYLE_XP)
  46. {
  47. m_StyleDisplay=dwDsp;
  48. SendMessage(WM_NCPAINT);Invalidate(); UpdateWindow();
  49. }
  50. DWORD m_StyleDisplay;
  51. protected:
  52. Style m_Style;
  53. DECLARE_MESSAGE_MAP()
  54. CFont m_cfont;
  55. public:
  56. afx_msg void OnPaint();
  57. };