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

对话框与窗口

开发平台:

Visual C++

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