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

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. #if !defined(AFX_MSGSEARCHDLG_H__C388A652_4A3D_4031_B8A9_A1D514610F5F__INCLUDED_)
  12. #define AFX_MSGSEARCHDLG_H__C388A652_4A3D_4031_B8A9_A1D514610F5F__INCLUDED_
  13. #if _MSC_VER > 1000
  14. #pragma once
  15. #endif // _MSC_VER > 1000
  16. // MsgSearchDlg.h : header file
  17. //
  18. /////////////////////////////////////////////////////////////////////////////
  19. // CMsgSearchDlg dialog
  20. class CMsgSearchDlg : public CDialog
  21. {
  22. // Construction
  23. public:
  24. CMsgSearchDlg(CWnd* pParent = NULL);   // standard constructor
  25. void onSearchMsg(DWORD uin, CString &nick);
  26. // Dialog Data
  27. //{{AFX_DATA(CMsgSearchDlg)
  28. enum { IDD = IDD_MSG_SEARCH };
  29. CListCtrl m_searchResult;
  30. CComboBox m_contactCombo;
  31. int m_searchMode;
  32. CString m_searchText;
  33. //}}AFX_DATA
  34. private:
  35. void searchMsg(DWORD uin, CString &nick);
  36. // Overrides
  37. // ClassWizard generated virtual function overrides
  38. //{{AFX_VIRTUAL(CMsgSearchDlg)
  39. protected:
  40. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  41. virtual void PostNcDestroy();
  42. //}}AFX_VIRTUAL
  43. // Implementation
  44. protected:
  45. // Generated message map functions
  46. //{{AFX_MSG(CMsgSearchDlg)
  47. virtual BOOL OnInitDialog();
  48. afx_msg void OnSearch();
  49. //}}AFX_MSG
  50. DECLARE_MESSAGE_MAP()
  51. };
  52. //{{AFX_INSERT_LOCATION}}
  53. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  54. #endif // !defined(AFX_MSGSEARCHDLG_H__C388A652_4A3D_4031_B8A9_A1D514610F5F__INCLUDED_)