UIFrameWnd.h
上传用户:yatsl7111
上传日期:2007-01-08
资源大小:1433k
文件大小:4k
源码类别:

图形图象

开发平台:

Visual C++

  1. //*******************************************************************************
  2. // COPYRIGHT NOTES
  3. // ---------------
  4. // You may use this source code, compile or redistribute it as part of your application 
  5. // for free. You cannot redistribute it as a part of a software development 
  6. // library without the agreement of the author. If the sources are 
  7. // distributed along with the application, you should leave the original 
  8. // copyright notes in the source code without any changes.
  9. // This code can be used WITHOUT ANY WARRANTIES at your own risk.
  10. // 
  11. // For the latest updates to this code, check this site:
  12. // http://www.masmex.com 
  13. // after Sept 2000
  14. // 
  15. // Copyright(C) 2000 Philip Oldaker <email: philip@masmex.com>
  16. //*******************************************************************************
  17. #if !defined(AFX_SPAWNFRAMEWND_H__13CAB7C3_D316_11D1_8693_000000000000__INCLUDED_)
  18. #define AFX_SPAWNFRAMEWND_H__13CAB7C3_D316_11D1_8693_000000000000__INCLUDED_
  19. #if _MSC_VER >= 1000
  20. #pragma once
  21. #endif // _MSC_VER >= 1000
  22. // SpawnFrameWnd.h : header file
  23. //
  24. #include "UIStatusBar.h"
  25. #include "UIFlatBar.h"
  26. #include "UICoolMenu.h"
  27. #include "UICoolBar.h"
  28. #include "UIMenuBar.h"
  29. #include "IEShellComboBox.h"
  30. /////////////////////////////////////////////////////////////////////////////
  31. // CUIFrameWnd frame
  32. class CTRL_EXT_CLASS CToolBarComboBox : public CIEShellComboBox 
  33. {
  34. public:
  35. protected:
  36. DECLARE_MESSAGE_MAP()
  37. private:
  38. };
  39. class CTRL_EXT_CLASS CReallyCoolBar : public CCoolBar 
  40. {
  41. protected:
  42. DECLARE_DYNAMIC(CReallyCoolBar)
  43. CFlatToolBar m_wndToolBar;  // toolbar
  44. CMenuBar m_wndMenuBar;  // menu bar
  45. virtual BOOL   OnCreateBands();  // fn to create the bands
  46. void SetToolBarID(UINT IDToolbar);
  47. protected:
  48. UINT m_IDToolbar;
  49. };
  50. class CTRL_EXT_CLASS CWebBrowserCoolBar : public CReallyCoolBar 
  51. {
  52. protected:
  53. DECLARE_DYNAMIC(CWebBrowserCoolBar)
  54. CFlatToolBar m_wndBrowserBar;  // toolbar
  55. virtual BOOL   OnCreateBands();  // fn to create the bands
  56. CToolBarComboBox &GetComboBox() { return m_wndCombo; }
  57. protected:
  58. CToolBarComboBox m_wndCombo;
  59. CString m_sCBValue;
  60. };
  61. class CTRL_EXT_CLASS CUIFrameWnd : public CFrameWnd
  62. {
  63. DECLARE_DYNAMIC(CUIFrameWnd)
  64. protected:
  65. CUIFrameWnd();           // protected constructor used by dynamic creation
  66. // Attributes
  67. public:
  68. // COOLMENU SUPPORT
  69. // END COOLMENU SUPPORT
  70. CDialogBar m_wndFieldChooser;
  71. // Operations
  72. public:
  73. // Overrides
  74. // ClassWizard generated virtual function overrides
  75. //{{AFX_VIRTUAL(CUIFrameWnd)
  76. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  77. virtual BOOL PreTranslateMessage(MSG* pMsg);
  78. virtual void GetMessageString( UINT nID, CString& rMessage ) const;
  79. //}}AFX_VIRTUAL
  80. virtual CUIStatusBar &GetStatusBar();
  81. virtual CReallyCoolBar &GetCoolBar();
  82. virtual CCoolMenuManager &GetMenuManager();
  83. virtual void RestoreWindow(UINT nCmdShow);
  84. // Implementation
  85. protected:
  86. virtual ~CUIFrameWnd();
  87. virtual void CreateCoolBar();
  88. void SetReportCtrl(bool bSet);
  89. // Generated message map functions
  90. //{{AFX_MSG(CUIFrameWnd)
  91. afx_msg void OnClose();
  92. afx_msg void OnInitMenuPopup(CMenu* pPopupMenu, UINT nIndex, BOOL bSysMenu);
  93. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  94. afx_msg void OnMenuSelect(UINT nItemID, UINT nFlags, HMENU hSysMenu);
  95. afx_msg BOOL OnMouseWheel(UINT nFlags, short zDelta, CPoint pt);
  96. //}}AFX_MSG
  97. afx_msg LRESULT OnRegisteredMouseWheel(WPARAM wParam, LPARAM lParam);
  98. afx_msg LRESULT OnCBIESelChange(WPARAM wParam,LPARAM lParam);
  99. afx_msg LRESULT OnCBIEPopulate(WPARAM wParam,LPARAM lParam);
  100. afx_msg LRESULT OnCBIEHitEnter(WPARAM wParam,LPARAM lParam);
  101. afx_msg LRESULT OnCBIESetEditText(WPARAM wParam,LPARAM lParam);
  102. DECLARE_MESSAGE_MAP()
  103. protected:
  104. UINT m_IDToolbar;
  105. CReallyCoolBar *m_pwndCoolBar;
  106. private:
  107. CUIStatusBar m_wndStatusBar;
  108. CCoolMenuManager m_menuManager;  // cool (bitmap button) menus
  109. bool m_bReportCtrl;
  110. static LPCTSTR szMainFrame;
  111. };
  112. inline void CUIFrameWnd::SetReportCtrl(bool bSet)
  113. {
  114. m_bReportCtrl = bSet;
  115. }
  116. /////////////////////////////////////////////////////////////////////////////
  117. //{{AFX_INSERT_LOCATION}}
  118. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  119. #endif // !defined(AFX_SPAWNFRAMEWND_H__13CAB7C3_D316_11D1_8693_000000000000__INCLUDED_)