MainFrm.cpp
上传用户:tenhai
上传日期:2021-02-19
资源大小:492k
文件大小:5k
源码类别:

组合框控件

开发平台:

Visual C++

  1. // MainFrm.cpp : implementation of the CMainFrame class
  2. //
  3. #include "stdafx.h"
  4. #include "prop.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_DYNAMIC(CMainFrame, CMDIFrameWnd)
  14. BEGIN_MESSAGE_MAP(CMainFrame, CMDIFrameWnd)
  15. //{{AFX_MSG_MAP(CMainFrame)
  16. // NOTE - the ClassWizard will add and remove mapping macros here.
  17. //    DO NOT EDIT what you see in these blocks of generated code !
  18. ON_WM_CREATE()
  19. //}}AFX_MSG_MAP
  20. END_MESSAGE_MAP()
  21. static UINT indicators[] =
  22. {
  23. ID_SEPARATOR,           // status line indicator
  24. ID_INDICATOR_CAPS,
  25. ID_INDICATOR_NUM,
  26. ID_INDICATOR_SCRL,
  27. };
  28. /////////////////////////////////////////////////////////////////////////////
  29. // CMainFrame construction/destruction
  30. CMainFrame::CMainFrame()
  31. {
  32. // TODO: add member initialization code here
  33. }
  34. CMainFrame::~CMainFrame()
  35. {
  36. }
  37. int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
  38. {
  39. if (CMDIFrameWnd::OnCreate(lpCreateStruct) == -1)
  40. return -1;
  41. if (!m_wndToolBar.CreateEx(this, TBSTYLE_FLAT, WS_CHILD | WS_VISIBLE | CBRS_TOP
  42. | CBRS_GRIPPER | CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC) ||
  43. !m_wndToolBar.LoadToolBar(IDR_MAINFRAME))
  44. {
  45. TRACE0("Failed to create toolbarn");
  46. return -1;      // fail to create
  47. }
  48. if (!m_wndStatusBar.Create(this) ||
  49. !m_wndStatusBar.SetIndicators(indicators,
  50.   sizeof(indicators)/sizeof(UINT)))
  51. {
  52. TRACE0("Failed to create status barn");
  53. return -1;      // fail to create
  54. }
  55. CreateInputBar();
  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. return 0;
  62. }
  63. BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
  64. {
  65. if( !CMDIFrameWnd::PreCreateWindow(cs) )
  66. return FALSE;
  67. // TODO: Modify the Window class or styles here by modifying
  68. //  the CREATESTRUCT cs
  69. return TRUE;
  70. }
  71. /////////////////////////////////////////////////////////////////////////////
  72. // CMainFrame diagnostics
  73. #ifdef _DEBUG
  74. void CMainFrame::AssertValid() const
  75. {
  76. CMDIFrameWnd::AssertValid();
  77. }
  78. void CMainFrame::Dump(CDumpContext& dc) const
  79. {
  80. CMDIFrameWnd::Dump(dc);
  81. }
  82. #endif //_DEBUG
  83. /////////////////////////////////////////////////////////////////////////////
  84. // CMainFrame message handlers
  85. BOOL CMainFrame::CreateInputBar()
  86. {
  87. const int nDropHeight = 150;
  88. if(!m_wndInputBar.Create(this, WS_CHILD | WS_VISIBLE | CBRS_BOTTOM, IDS_INPUT)   
  89. || !m_wndInputBar.LoadToolBar(IDR_INPUTBAR))
  90. {
  91. TRACE0("Failed to create inputbarn");
  92. return FALSE;
  93. }
  94. CRect rect;
  95. m_wndInputBar.GetItemRect(0,&rect);
  96. rect.top = 0;
  97. rect.bottom = rect.top + nDropHeight;
  98. rect.left=100;
  99. rect.right = rect.left + 300;
  100. if(!m_wndInputBar.m_comboBox.Create(WS_CHILD| WS_VSCROLL |  
  101. CBS_DROPDOWN | WS_VISIBLE | WS_TABSTOP | WS_HSCROLL | CBS_AUTOHSCROLL |
  102. LBS_SORT,
  103. rect, &m_wndInputBar, IDS_INPUT))
  104. {
  105. TRACE0("Failed to create combo-boxn");
  106. return FALSE;
  107. }
  108. m_wndInputBar.m_comboBox.AddString("build [gf]");
  109. m_wndInputBar.m_comboBox.AddString("parse [sf]");
  110. m_wndInputBar.m_comboBox.AddString("quit ");
  111. m_wndInputBar.m_comboBox.SetCurSel(0);
  112. m_wndInputBar.m_comboBox.m_strInput="build [gf]";
  113.     
  114. m_wndInputBar.SetBarStyle(m_wndInputBar.GetBarStyle() |
  115. CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC);
  116. m_wndInputBar.ModifyStyle(0,TBSTYLE_FLAT);
  117. //m_wndInputBar.EnableDocking(CBRS_ALIGN_ANY);
  118. //EnableDocking(CBRS_ALIGN_ANY);
  119. //  Create a font for the combobox
  120. LOGFONT logFont;
  121. memset(&logFont, 0, sizeof(logFont));
  122. if (!::GetSystemMetrics(SM_DBCSENABLED))
  123. {
  124. // Since design guide says toolbars are fixed height so is the font.
  125. logFont.lfHeight = -12;
  126. logFont.lfWeight = FW_BOLD;
  127. logFont.lfPitchAndFamily = VARIABLE_PITCH | FF_SWISS;
  128. CString strDefaultFont;
  129. strDefaultFont.LoadString(IDS_DEFAULT_FONT);
  130. lstrcpy(logFont.lfFaceName, strDefaultFont);
  131. if (!m_wndInputBar.m_font.CreateFontIndirect(&logFont))
  132. TRACE0("Could Not create font for combon");
  133. else
  134. m_wndInputBar.m_comboBox.SetFont(&m_wndInputBar.m_font);
  135. }
  136. else
  137. {
  138. m_wndInputBar.m_font.Attach(::GetStockObject(SYSTEM_FONT));
  139. m_wndInputBar.m_comboBox.SetFont(&m_wndInputBar.m_font);
  140. }
  141. /*
  142. HFONT hFont = (HFONT)GetStockObject(DEFAULT_GUI_FONT);
  143. if (hFont == NULL)
  144. hFont = (HFONT)GetStockObject(ANSI_VAR_FONT);
  145.    m_cmbInput.SendMessage(WM_SETFONT, (WPARAM)hFont);
  146. */
  147. return TRUE;
  148. }