GuiComboBoxExt.cpp
上传用户:zhanglf88
上传日期:2013-11-19
资源大小:6036k
文件大小:11k
源码类别:

金融证券系统

开发平台:

Visual C++

  1. //-----------------------------------------------------------------------//
  2. // This is a part of the GuiLib MFC Extention.  //
  3. // Autor  :  Francisco Campos  //
  4. // (C) 2002 Francisco Campos <www.beyondata.com> All rights reserved     //
  5. // This code is provided "as is", with absolutely no warranty expressed  //
  6. // or implied. Any use is at your own risk.  //
  7. // You must obtain the author's consent before you can include this code //
  8. // in a software library.  //
  9. // If the source code in  this file is used in any application  //
  10. // then acknowledgement must be made to the author of this program  //
  11. // fcampos@tutopia.com  //
  12. //-----------------------------------------------------------------------//
  13. #include "stdafx.h"
  14. #include "GuiComboBoxExt.h"
  15. #include "resource.h"
  16. #include <atlbase.h>  
  17. #include "..headerguicomboboxext.h"
  18. #ifdef _DEBUG
  19. #define new DEBUG_NEW
  20. #undef THIS_FILE
  21. static char THIS_FILE[] = __FILE__;
  22. #endif
  23. /////////////////////////////////////////////////////////////////////////////
  24. // CGuiComboBoxExt
  25. CGuiComboBoxExt::CGuiComboBoxExt()
  26. {
  27. m_clrBtnFace= ::GetSysColor(COLOR_3DFACE);
  28. m_clrBtnLight=::GetSysColor(COLOR_3DHILIGHT);
  29. m_clrBtnDark=::GetSysColor(COLOR_3DSHADOW);
  30. m_iWidthDrowDown=GetSystemMetrics(SM_CXHTHUMB);
  31. m_bOverCombo=FALSE;
  32. m_Font.CreateStockObject (DEFAULT_GUI_FONT);
  33. m_bPress=FALSE;
  34. m_imgArrow.Create(IDB_DOCKBAR,9,10,RGB(255,0,255));
  35. CBitmap cbmp;
  36. BITMAP bmp;
  37. cbmp.LoadBitmap(IDB_DOCKBAR);
  38. cbmp.GetBitmap(&bmp);
  39. mHeight=CPoint(bmp.bmWidth,bmp.bmHeight);
  40. m_bFondoXp=FALSE;
  41. m_IsCallMiniTool=FALSE;
  42. bColor=TRUE;
  43. bhistory=FALSE;
  44. }
  45. BOOL CGuiComboBoxExt::PreTranslateMessage(MSG* pMsg) 
  46. {
  47. if (pMsg->message == WM_KEYDOWN)
  48. {
  49. int nVirtKey = (int) pMsg->wParam;
  50. if (nVirtKey == VK_RETURN )
  51. {
  52. //if (!(GetStyle( ) & CBS_DROPDOWNLIST))
  53. //{
  54. CString sCad;
  55. GetWindowText(sCad);
  56. AddString(sCad);
  57. //}
  58. GetParentFrame()->SendMessage(WM_COMMAND,GetDlgCtrlID());
  59. return 1;//nonzero so app does not get the esc key and exit
  60. }
  61. }
  62. return CComboBox::PreTranslateMessage(pMsg);
  63. }
  64. void CGuiComboBoxExt::OnSysColorChange( )
  65. {
  66. CComboBox::OnSysColorChange( );
  67. m_clrBtnLight=::GetSysColor(COLOR_3DHILIGHT);
  68. m_clrBtnDark=::GetSysColor(COLOR_3DSHADOW);
  69. if (bColor)
  70. m_clrBtnFace= ::GetSysColor(COLOR_3DFACE);
  71. }
  72. void CGuiComboBoxExt::AutoColor(BOOL bAColor)
  73. {
  74. bColor=bAColor;
  75. }
  76. CGuiComboBoxExt::~CGuiComboBoxExt()
  77. {
  78. }
  79. BEGIN_MESSAGE_MAP(CGuiComboBoxExt, CComboBox)
  80. //{{AFX_MSG_MAP(CGuiComboBoxExt)
  81. ON_WM_LBUTTONDOWN()
  82. ON_WM_LBUTTONUP()
  83. ON_WM_PAINT()
  84. ON_WM_SETCURSOR()
  85. ON_WM_TIMER()
  86. ON_CONTROL_REFLECT(CBN_KILLFOCUS, OnCbnKillfocus)
  87.     //ON_CONTROL_REFLECT(CBN_KILLFOCUS, OnKillFocus)
  88. ON_WM_SETFOCUS()
  89. ON_WM_CREATE()
  90. ON_WM_SYSCOLORCHANGE()
  91. ON_CONTROL_REFLECT(CBN_CLOSEUP, OnCloseup)
  92. //}}AFX_MSG_MAP
  93. ON_CONTROL_REFLECT(CBN_EDITUPDATE, OnCbnEditupdate)
  94. END_MESSAGE_MAP()
  95. /////////////////////////////////////////////////////////////////////////////
  96. // CGuiComboBoxExt message handlers
  97. void CGuiComboBoxExt::OnLButtonDown(UINT nFlags, CPoint point) 
  98. {
  99. // TODO: Add your message handler code here and/or call default
  100. m_bOverCombo=TRUE;
  101. m_bPress=TRUE;
  102. CClientDC dc(this);
  103. DrawCombo(CM_SELECCIONADO,&dc);
  104. CComboBox::OnLButtonDown(nFlags, point);
  105. }
  106. void CGuiComboBoxExt::ActiveHistory(BOOL bHistory)
  107. {
  108. bhistory=bHistory;
  109. }
  110. void CGuiComboBoxExt::SaveHistory(CString szHistory,BOOL bSaveCurrent)
  111. {
  112. int nSize=GetCount();
  113. if (szHistory.IsEmpty()) return;
  114. if (nSize == 0) return;
  115. DeleteHistory(szHistory);
  116. int nCurs=GetCurSel();
  117. CString sKey=szHistory;
  118. CString sCad;
  119. CWinApp* pAppWin = AfxGetApp();
  120. if(bSaveCurrent)
  121. {
  122. if(nCurs < 0) return;
  123. GetLBText(nCurs,sCad);
  124. CString nKeyHist=szHistory+"SaveCurrent";
  125. pAppWin->WriteProfileString("ComboHistory",nKeyHist,sCad);
  126. }
  127. for(int i=0; i< nSize; i++)
  128. {
  129. GetLBText(i,sCad);
  130. sKey.Format("%s%d",szHistory,i);
  131. pAppWin->WriteProfileString("ComboHistory",sKey,sCad);
  132. }
  133. }
  134. void CGuiComboBoxExt::LoadHistory(CString szHistory,BOOL bLoadCurrent)
  135. {
  136. if (szHistory.IsEmpty()) return;
  137. CString sKey=szHistory;
  138. CString sCad;
  139. CWinApp* pAppWin = AfxGetApp();
  140. int i=0;
  141. while(1){
  142. sKey.Format("%s%d",szHistory,i++);
  143. sCad=pAppWin->GetProfileString("ComboHistory",sKey);
  144. if (sCad.IsEmpty())
  145. break;
  146. AddString(sCad);
  147. }
  148. if (bLoadCurrent)
  149. {
  150. CString sKeyHist=szHistory+"SaveCurrent";
  151. sCad=pAppWin->GetProfileString("ComboHistory",sKeyHist);
  152. if (sCad.IsEmpty())
  153. return;
  154. AddString(sCad);
  155. }
  156. }
  157. int  CGuiComboBoxExt::AddString(LPCTSTR lpszString)
  158. {
  159. CString szCadAdd;
  160. szCadAdd=lpszString;
  161. if (szCadAdd.IsEmpty()) return -1;
  162. if(bhistory!=TRUE)
  163. return CComboBox::AddString(lpszString);
  164. szCadAdd.TrimLeft(" ");
  165. szCadAdd.TrimRight(" ");
  166. int nret=CComboBox::InsertString(0,szCadAdd);
  167. int nFindCad=FindStringExact(0, szCadAdd);
  168. if (nFindCad != -1 && nFindCad != 0)
  169. DeleteString(nFindCad );
  170. SetCurSel(nret);
  171. return nret;
  172. }
  173. void CGuiComboBoxExt::DeleteHistory(CString szHistory)
  174. {
  175. //m_pszRegistryKey=_tcsdup(_T("HKEY_CURRENT_USER\Software\mycompany\myapp\thissection\thisvalue"));
  176. CWinApp* pAppWin = AfxGetApp();
  177. CString sKey ;
  178. CRegKey rk;
  179.     if (pAppWin->m_pszRegistryKey == NULL || pAppWin->m_pszAppName == NULL)
  180.       return;
  181.     CString sPath = "SOFTWARE\";
  182. sPath+= pAppWin->m_pszRegistryKey + CString("\");
  183.     sPath+= pAppWin->m_pszAppName + CString("\");
  184.     sPath+= szHistory;
  185.     if (rk.Open(HKEY_CURRENT_USER, sPath) != ERROR_SUCCESS)
  186.       return;
  187. int nCount = GetCount();
  188.     for (int i = 0; i < nCount; i++)
  189.     {
  190.   sKey.Format("%s%d", szHistory,i);
  191.       rk.DeleteValue(sKey);
  192.     }
  193.   CString nKeyHist=szHistory+"SaveCurrent";
  194.   pAppWin->WriteProfileString("ComboHistory",nKeyHist,"");
  195.   ResetContent();
  196. }
  197. void CGuiComboBoxExt::PreSubclassWindow() 
  198. {
  199. CComboBox::PreSubclassWindow();
  200. }
  201. void CGuiComboBoxExt::OnLButtonUp(UINT nFlags, CPoint point) 
  202. {
  203. // TODO: Add your message handler code here and/or call default
  204. if (m_IsCallMiniTool==TRUE)
  205. m_bPress=FALSE;
  206. CComboBox::OnLButtonUp(nFlags, point);
  207. }
  208. void CGuiComboBoxExt::OnPaint() 
  209. {
  210. CPaintDC dc(this); // device context for painting
  211. /*
  212.  * Se hace un llamamdo a la funci髇 definida por defecto
  213.  * para el procesamiento de mensajes que la aplicaci髇 definitivamente
  214.  * no esta interesado en manejar
  215.  **/ 
  216. CComboBox::DefWindowProc(WM_PAINT,(WPARAM)dc.m_hDC,0);
  217. if (m_bPress != TRUE)
  218. DrawCombo(CM_NORMAL,&dc);
  219. else
  220. DrawCombo(CM_SELECCIONADO,&dc);
  221. // Do not call CComboBox::OnPaint() for painting messages
  222. }
  223. void CGuiComboBoxExt::OnSetFocus(CWnd* pOldWnd) 
  224. {
  225. CComboBox::OnSetFocus(pOldWnd);
  226. CClientDC dc(this);
  227. DrawCombo(CM_SELECCIONADO,&dc);
  228. }
  229. BOOL CGuiComboBoxExt::OnSetCursor(CWnd* pWnd, UINT nHitTest, UINT message) 
  230. {
  231. // TODO: Add your message handler code here and/or call default
  232. CPoint ptCurPos;
  233. CRect m_rcCli;
  234. GetCursorPos (&ptCurPos);
  235. ScreenToClient (&ptCurPos);
  236. GetClientRect(&m_rcCli);
  237. if (m_rcCli.PtInRect (ptCurPos) && m_bOverCombo==FALSE && m_bPress==FALSE)
  238. {
  239. m_bOverCombo=TRUE;
  240. CClientDC dc(this);
  241. DrawCombo(CM_ONFOCUS,&dc);
  242. SetTimer(1,10,NULL);
  243. OnTimer(1);
  244. return TRUE;
  245. }
  246. return CComboBox::OnSetCursor(pWnd, nHitTest, message);
  247. }
  248. void CGuiComboBoxExt::SetColor(COLORREF clrFace)
  249. {
  250. m_clrBtnFace=clrFace;
  251. Invalidate();
  252. UpdateWindow();
  253. }
  254. void CGuiComboBoxExt::DrawCombo(enTypeShow enShow,CDC* pDC)
  255. {
  256.     CRect m_rcClient;
  257. CRect m_rcDropDown;
  258. GetClientRect(&m_rcClient);
  259. //primero eliminamos los bordes 3D del combobox
  260. pDC->Draw3dRect(&m_rcClient,m_clrBtnFace,m_clrBtnFace);
  261. m_rcClient.DeflateRect(1,1);
  262. if (IsWindowEnabled())
  263. {
  264. if (enShow==CM_NORMAL)
  265. pDC->Draw3dRect(&m_rcClient,GuiDrawLayer::GetRGBPressBXP(),GuiDrawLayer::GetRGBPressBXP());
  266. }
  267.     else
  268. pDC->Draw3dRect(&m_rcClient,m_clrBtnLight,m_clrBtnLight);
  269. if (enShow==CM_NORMAL)
  270. pDC->Draw3dRect(&m_rcClient,m_clrBtnFace,m_clrBtnFace);
  271. else // && !XP
  272. pDC->Draw3dRect(&m_rcClient,GuiDrawLayer::GetRGBCaptionXP(),GuiDrawLayer::GetRGBCaptionXP());
  273. //debemos pintar el borde del boton drawDwon
  274. m_rcClient.DeflateRect(1,1);
  275. m_rcClient.left=m_rcClient.right-m_iWidthDrowDown;
  276. pDC->Draw3dRect(&m_rcClient,m_clrBtnFace,m_clrBtnFace);
  277. m_rcClient.DeflateRect(1,1);
  278. pDC->Draw3dRect(&m_rcClient,GuiDrawLayer::GetRGBCaptionXP(),GuiDrawLayer::GetRGBCaptionXP());
  279. m_rcClient.InflateRect(0,1);
  280. if (enShow==CM_NORMAL)
  281. {
  282. //el boton no esta seleccionado
  283. m_rcClient.right += 1;
  284. m_rcClient.left  -= 1;
  285. pDC->Draw3dRect(&m_rcClient,m_clrBtnLight,m_clrBtnLight);
  286. m_rcClient.DeflateRect(1,1);
  287. CBrush cblu;
  288. cblu.CreateSolidBrush( m_clrBtnFace);
  289. pDC->FillRect(&m_rcClient,&cblu);
  290. m_rcClient.left += 2;
  291. m_rcClient.right+= 2;
  292. DrawArrow(pDC,m_rcClient);
  293. }
  294. else
  295. {
  296. m_rcClient.InflateRect(1,1);
  297. CBrush cblu;
  298. cblu.CreateSolidBrush(enShow == CM_ONFOCUS? GuiDrawLayer::GetRGBFondoXP():GuiDrawLayer::GetRGBPressBXP());
  299. pDC->FillRect(&m_rcClient,&cblu);
  300. m_rcClient.right += 1;
  301. pDC->Draw3dRect(&m_rcClient,GuiDrawLayer::GetRGBCaptionXP(),GuiDrawLayer::GetRGBCaptionXP());
  302. DrawArrow(pDC,m_rcClient);
  303. }
  304. }
  305. void CGuiComboBoxExt::DrawArrow(CDC* pDC,CRect m_rc)
  306. {
  307. int difh =m_rc.Height()-mHeight.y;
  308. difh/=2;
  309. m_rc.left=m_rc.right-m_iWidthDrowDown;
  310. m_imgArrow.Draw(pDC,0,CPoint(m_rc.left+2,m_rc.top+difh),ILD_TRANSPARENT);
  311. }
  312. void CGuiComboBoxExt::OnTimer(UINT nIDEvent) 
  313. {
  314. // TODO: Add your message handler code here and/or call default
  315. if (nIDEvent== 1)
  316. {
  317. CPoint pt(GetMessagePos());
  318. CRect m_rc;
  319. ScreenToClient(&pt);
  320. GetClientRect(m_rc);
  321. if (!m_rc.PtInRect(pt) && m_bPress!=TRUE)
  322. {
  323.   KillTimer(1);
  324. m_bOverCombo=FALSE;
  325. CClientDC dc(this);
  326. if (m_bPress==FALSE)
  327.   DrawCombo(CM_NORMAL,&dc);
  328. else
  329. DrawCombo(CM_ONFOCUS,&dc);
  330. m_bPress=FALSE;
  331. }
  332. }
  333. CComboBox::OnTimer(nIDEvent);
  334. }
  335. void  CGuiComboBoxExt::OnCloseup() 
  336. {
  337. // TODO: Add your control notification handler code here
  338. CClientDC dc(this);
  339. m_bPress=FALSE;
  340. OnTimer(1);
  341. }
  342. //void CGuiComboBoxExt::OnKillFocus(CWnd* pNewWnd) //version 6
  343. void CGuiComboBoxExt::OnCbnKillfocus() //version 7.0
  344. {
  345.     CClientDC dc(this);
  346. DrawCombo(CM_NORMAL,&dc);
  347. if (!(GetStyle( ) & CBS_DROPDOWNLIST))
  348. {
  349. CString sCad;
  350. GetWindowText(sCad);
  351. AddString(sCad);
  352. }
  353. m_bPress=FALSE;
  354. m_bOverCombo=FALSE;
  355. // TODO: Add your message handler code here
  356. }
  357. int CGuiComboBoxExt::OnCreate(LPCREATESTRUCT lpCreateStruct) 
  358. {
  359. if (CComboBox::OnCreate(lpCreateStruct) == -1)
  360. return -1;
  361. SetFont (&m_Font);
  362. return 0;
  363. }
  364. void CGuiComboBoxExt::OnCbnEditupdate()
  365. {
  366.   CString m_szCad;
  367.   GetWindowText(m_szCad);
  368.   
  369.   DWORD m_dwCurRange=GetEditSel();
  370.   DWORD m_dwStart=LOWORD(m_dwCurRange);
  371.   DWORD m_dwEnd = HIWORD(m_dwCurRange);
  372.   //se busca la cadena aprox, si no existe se debe insertar
  373.  
  374. if (SelectString(-1,m_szCad) == CB_ERR)
  375. {
  376. SetWindowText(m_szCad);
  377. SetEditSel(m_dwStart,m_dwEnd);
  378. }
  379. else
  380. {
  381. if (m_dwCurRange != CB_ERR)
  382. {
  383. if (m_dwEnd <(DWORD) m_szCad.GetLength())
  384. SetEditSel(m_dwStart,m_dwEnd);
  385. else
  386. SetEditSel(m_szCad.GetLength(),-1);
  387. }
  388. }
  389. }
  390. void CGuiComboBoxExt::DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct)
  391. {
  392. }
  393. void CGuiComboBoxExt::MeasureItem(LPMEASUREITEMSTRUCT lpMeasureItemStruct)
  394. {
  395. }