GuiTabbed.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. #include "guitabwnd.h"
  24. #include "GuiDrawLayer.h" 
  25. #include "GuiComboBoxExt.h" 
  26. class GUILIBDLLEXPORT CGuiTabbed : public CGuiTabWnd
  27. {
  28. enum ExtTab{NORMAL_TAB=0,COMBO_TAB=1};
  29. protected:
  30. GuiTabbedButton m_toolBtn[2];
  31. CGuiToolButton m_toolBtnC;
  32. CGuiComboBoxExt  m_comboxBox;
  33. CImageList   m_img;
  34. CSize        m_sizeBtn;
  35. int  m_nDif;
  36. ExtTab  m_ExtTab;
  37. public:
  38. CGuiTabbed(void);
  39. virtual ~CGuiTabbed(void);
  40. public:
  41. void virtual Drawtabs(CDC* dc);
  42. void SetExtileExt(ExtTab= NORMAL_TAB);
  43. CSize   GetSizeButton();
  44. void  OnScrollLeft();
  45. void  OnScrollRight();
  46. void  virtual OnScrollClose();
  47. virtual void StyleDispl(DWORD dwDsp=GUISTYLE_XP)
  48. {
  49.  m_StyleDisplay=dwDsp;
  50.   SendMessage(WM_NCPAINT);
  51.  Invalidate(); UpdateWindow();
  52. }
  53. public:
  54. DECLARE_MESSAGE_MAP()
  55. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  56. virtual afx_msg void OnSysColorChange( );
  57. afx_msg void OnSelchangeCombo1();
  58. };