MainFrm.cpp
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:3k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // MainFrm.cpp : implementation of the CMainFrame class
  2. //
  3. #include "stdafx.h"
  4. #include "SQLServerDataProvider.h"
  5. #include "MainFrm.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CMainFrame
  13. IMPLEMENT_DYNCREATE(CMainFrame, CFrameWnd)
  14. BEGIN_MESSAGE_MAP(CMainFrame, CFrameWnd)
  15. //{{AFX_MSG_MAP(CMainFrame)
  16. ON_WM_CREATE()
  17. ON_WM_SIZE()
  18. //}}AFX_MSG_MAP
  19. ON_COMMAND_EX(ID_VIEW_DATEPICKER, OnBarCheck)
  20. ON_UPDATE_COMMAND_UI(ID_VIEW_DATEPICKER, OnUpdateControlBarMenu)
  21. END_MESSAGE_MAP()
  22. static UINT indicators[] =
  23. {
  24. ID_SEPARATOR,           // status line indicator
  25. ID_INDICATOR_CAPS,
  26. ID_INDICATOR_NUM,
  27. ID_INDICATOR_SCRL,
  28. };
  29. /////////////////////////////////////////////////////////////////////////////
  30. // CMainFrame construction/destruction
  31. CMainFrame::CMainFrame()
  32. {
  33. // TODO: add member initialization code here
  34. }
  35. CMainFrame::~CMainFrame()
  36. {
  37. }
  38. int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
  39. {
  40. if (CFrameWnd::OnCreate(lpCreateStruct) == -1)
  41. return -1;
  42. if (!m_wndToolBar.CreateEx(this, TBSTYLE_FLAT, WS_CHILD | WS_VISIBLE | CBRS_TOP
  43. | CBRS_GRIPPER | CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC) ||
  44. !m_wndToolBar.LoadToolBar(IDR_MAINFRAME))
  45. {
  46. TRACE0("Failed to create toolbarn");
  47. return -1;      // fail to create
  48. }
  49. if (!m_wndStatusBar.Create(this) ||
  50. !m_wndStatusBar.SetIndicators(indicators,
  51.   sizeof(indicators)/sizeof(UINT)))
  52. {
  53. TRACE0("Failed to create status barn");
  54. return -1;      // fail to create
  55. }
  56. // TODO: Delete these three lines if you don't want the toolbar to
  57. //  be dockable
  58. m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
  59. EnableDocking(CBRS_ALIGN_ANY);
  60. DockControlBar(&m_wndToolBar);
  61. // Initialize dialog bar
  62. if (!m_dlgDatePicker.Create(this, IDD_DATEPICKER,
  63. //CBRS_ALIGN_RIGHT|
  64. CBRS_GRIPPER | CBRS_SIZE_DYNAMIC |
  65. CBRS_RIGHT | CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_HIDE_INPLACE, ID_VIEW_DATEPICKER))
  66. return -1; // fail to create
  67. //m_dlgOptions.EnableDocking(CBRS_ALIGN_ANY);
  68. // docking for DatePicker
  69. //m_dlgDatePicker.EnableDocking(0);
  70. m_dlgDatePicker.EnableDocking(CBRS_ALIGN_LEFT | CBRS_ALIGN_RIGHT);
  71. m_dlgDatePicker.SetWindowText(_T("Date Picker"));
  72. ShowControlBar(&m_dlgDatePicker, FALSE, FALSE);
  73. DockControlBar(&m_dlgDatePicker);
  74. //FloatControlBar(&m_dlgDatePicker, CPoint(100, GetSystemMetrics(SM_CYSCREEN) / 3));
  75. return 0;
  76. }
  77. BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
  78. {
  79. if( !CFrameWnd::PreCreateWindow(cs) )
  80. return FALSE;
  81. cs.lpszClass = _T("XTPMainFrame");
  82. CXTPDrawHelpers::RegisterWndClass(AfxGetInstanceHandle(), cs.lpszClass, 
  83. CS_DBLCLKS, AfxGetApp()->LoadIcon(IDR_MAINFRAME));
  84. // TODO: Modify the Window class or styles here by modifying
  85. //  the CREATESTRUCT cs
  86. return TRUE;
  87. }
  88. /////////////////////////////////////////////////////////////////////////////
  89. // CMainFrame diagnostics
  90. #ifdef _DEBUG
  91. void CMainFrame::AssertValid() const
  92. {
  93. CFrameWnd::AssertValid();
  94. }
  95. void CMainFrame::Dump(CDumpContext& dc) const
  96. {
  97. CFrameWnd::Dump(dc);
  98. }
  99. #endif //_DEBUG
  100. /////////////////////////////////////////////////////////////////////////////
  101. // CMainFrame message handlers
  102. void CMainFrame::OnSize(UINT nType, int cx, int cy) 
  103. {
  104. CFrameWnd::OnSize(nType, cx, cy);
  105. // TODO: Add your message handler code here
  106. }