MsgSearchDlg.cpp
上传用户:zslianheng
上传日期:2013-04-03
资源大小:946k
文件大小:4k
源码类别:

Linux/Unix编程

开发平台:

Visual C++

  1. /***************************************************************************
  2.  *                                                                         *
  3.  *   This program is free software; you can redistribute it and/or modify  *
  4.  *   it under the terms of the GNU General Public License as published by  *
  5.  *   the Free Software Foundation; either version 2 of the License, or     *
  6.  *   (at your option) any later version.                                   *
  7.  *                                                                         *
  8.  *   copyright            : (C) 2002 by Zhang Yong                         *
  9.  *   email                : z-yong163@163.com                              *
  10.  ***************************************************************************/
  11. // MsgSearchDlg.cpp : implementation file
  12. //
  13. #include "stdafx.h"
  14. #include "myicq.h"
  15. #include "MsgSearchDlg.h"
  16. #include "icqdb.h"
  17. #include "icqlink.h"
  18. #ifdef _DEBUG
  19. #define new DEBUG_NEW
  20. #undef THIS_FILE
  21. static char THIS_FILE[] = __FILE__;
  22. #endif
  23. /////////////////////////////////////////////////////////////////////////////
  24. // CMsgSearchDlg dialog
  25. CMsgSearchDlg::CMsgSearchDlg(CWnd* pParent /*=NULL*/)
  26. : CDialog(CMsgSearchDlg::IDD, pParent)
  27. {
  28. //{{AFX_DATA_INIT(CMsgSearchDlg)
  29. m_searchMode = 0;
  30. m_searchText = _T("");
  31. //}}AFX_DATA_INIT
  32. }
  33. void CMsgSearchDlg::searchMsg(DWORD uin, CString &nick)
  34. {
  35. PtrList l;
  36. IcqDB::loadMsg(uin, l);
  37. CString str;
  38. while (!l.empty()) {
  39. IcqMsg *msg = (IcqMsg *) l.front();
  40. l.pop_front();
  41. int n = m_searchResult.GetItemCount();
  42. CString text(msg->text.c_str());
  43. if (text.Find(m_searchText) >= 0) {
  44. m_searchResult.InsertItem(n, nick);
  45. m_searchResult.SetItemText(n, 1, text);
  46. }
  47. delete msg;
  48. }
  49. }
  50. void CMsgSearchDlg::onSearchMsg(DWORD uin, CString &nick)
  51. {
  52. if (uin)
  53. searchMsg(uin, nick);
  54. else {
  55. int n = m_contactCombo.GetCount();
  56. for (int i = 1; i < n; ++i) {
  57. uint32 uin = m_contactCombo.GetItemData(i);
  58. m_contactCombo.GetLBText(i, nick);
  59. searchMsg(uin, nick);
  60. }
  61. }
  62. }
  63. void CMsgSearchDlg::DoDataExchange(CDataExchange* pDX)
  64. {
  65. CDialog::DoDataExchange(pDX);
  66. //{{AFX_DATA_MAP(CMsgSearchDlg)
  67. DDX_Control(pDX, IDC_RESULT, m_searchResult);
  68. DDX_Control(pDX, IDC_CONTACT_COMBO, m_contactCombo);
  69. DDX_Radio(pDX, IDC_MODE, m_searchMode);
  70. DDX_Text(pDX, IDC_SEARCH_TEXT, m_searchText);
  71. //}}AFX_DATA_MAP
  72. }
  73. BEGIN_MESSAGE_MAP(CMsgSearchDlg, CDialog)
  74. //{{AFX_MSG_MAP(CMsgSearchDlg)
  75. ON_BN_CLICKED(IDC_SEARCH, OnSearch)
  76. //}}AFX_MSG_MAP
  77. END_MESSAGE_MAP()
  78. /////////////////////////////////////////////////////////////////////////////
  79. // CMsgSearchDlg message handlers
  80. BOOL CMsgSearchDlg::OnInitDialog() 
  81. {
  82. CDialog::OnInitDialog();
  83. UinList l;
  84. IcqDB::getMsgUinList(l);
  85. UinList::iterator it;
  86. CString str;
  87. for (it = l.begin(); it != l.end(); ++it) {
  88. uint32 uin = *it;
  89. IcqContact *c = icqLink->findContact(uin);
  90. if (c)
  91. str.Format("%lu(%s)", c->uin, c->nick.c_str());
  92. else
  93. str.Format("%lu", uin);
  94. int i = m_contactCombo.AddString(str);
  95. m_contactCombo.SetItemData(i, uin);
  96. }
  97. m_contactCombo.SetCurSel(0);
  98. m_searchResult.SetExtendedStyle(
  99. m_searchResult.GetExtendedStyle() | LVS_EX_GRIDLINES | LVS_EX_FULLROWSELECT);
  100. str.LoadString(IDS_LOCATION);
  101. m_searchResult.InsertColumn(0, str, LVCFMT_LEFT, 100);
  102. str.LoadString(IDS_CONTENT);
  103. m_searchResult.InsertColumn(1, str, LVCFMT_LEFT, 300);
  104. return TRUE;  // return TRUE unless you set the focus to a control
  105.               // EXCEPTION: OCX Property Pages should return FALSE
  106. }
  107. void CMsgSearchDlg::OnSearch() 
  108. {
  109. m_searchResult.DeleteAllItems();
  110. UpdateData();
  111. int i = m_contactCombo.GetCurSel();
  112. if (i >= 0) {
  113. uint32 uin = m_contactCombo.GetItemData(i);
  114. CString nick;
  115. m_contactCombo.GetLBText(i, nick);
  116. if (m_searchMode == 0)
  117. onSearchMsg(uin, nick);
  118. }
  119. }
  120. void CMsgSearchDlg::PostNcDestroy() 
  121. {
  122. delete this;
  123. }