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

对话框与窗口

开发平台:

Visual C++

  1. // OutputWindow.h: interface for the COutputWindow class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_OUTPUTWINDOW_H__35C1CE94_D79B_11D4_B90C_000000000000__INCLUDED_)
  5. #define AFX_OUTPUTWINDOW_H__35C1CE94_D79B_11D4_B90C_000000000000__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "GuiControlBar.h"
  10. #include "GuiWorktab.h"
  11. class COutputList : public CListBox
  12. {
  13. // Construction
  14. public:
  15. COutputList();
  16. // Attributes
  17. public:
  18. // Operations
  19. public:
  20. // Overrides
  21. // ClassWizard generated virtual function overrides
  22. //{{AFX_VIRTUAL(COutputList)
  23. //}}AFX_VIRTUAL
  24. // Implementation
  25. public:
  26. virtual ~COutputList();
  27. // Generated message map functions
  28. protected:
  29. //{{AFX_MSG(COutputList)
  30. afx_msg void OnWindowPosChanging(WINDOWPOS FAR* lpwndpos);
  31. //}}AFX_MSG
  32. DECLARE_MESSAGE_MAP()
  33. };
  34. class COutputWindow : public CGuiControlBar  
  35. {
  36. public:
  37. COutputWindow();
  38. virtual ~COutputWindow();
  39. CGuiWorkTab m_wndWorkTab;
  40. COutputList m_wndEdit;
  41. COutputList m_wndDebug;
  42. COutputList m_wndFind1;
  43. COutputList m_wndFind2;
  44. COutputList m_wndResult;
  45. COutputList m_wndSqlDebug;
  46. virtual void StyleDispl(DWORD dwDsp=GUISTYLE_XP)
  47. {
  48. m_StyleDisplay=dwDsp;
  49. m_wndWorkTab.StyleDispl(dwDsp);
  50. CGuiControlBar::StyleDispl(dwDsp);
  51. }
  52. protected:
  53. //{{AFX_MSG(CMyBar)
  54. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  55. afx_msg void OnSize(UINT nType, int cx, int cy);
  56. //}}AFX_MSG
  57. DECLARE_MESSAGE_MAP()
  58. };
  59. #endif // !defined(AFX_OUTPUTWINDOW_H__35C1CE94_D79B_11D4_B90C_000000000000__INCLUDED_)