SearchWizard.cpp
上传用户: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. // SearchWizard.cpp : implementation file
  12. //
  13. #include "stdafx.h"
  14. #include "myicq.h"
  15. #include "SearchWizard.h"
  16. #ifdef _DEBUG
  17. #define new DEBUG_NEW
  18. #undef THIS_FILE
  19. static char THIS_FILE[] = __FILE__;
  20. #endif
  21. /////////////////////////////////////////////////////////////////////////////
  22. // CSearchWizard
  23. IMPLEMENT_DYNAMIC(CSearchWizard, CPropertySheet)
  24. CSearchWizard::CSearchWizard() : IcqWindow(WIN_SEARCH_WIZARD)
  25. {
  26. SetWizardMode();
  27. m_psh.dwFlags |= PSH_USEHICON;
  28. m_psh.hIcon = getApp()->m_hIcon;
  29. AddPage(&modeDlg);
  30. AddPage(&customDlg);
  31. AddPage(&resultDlg);
  32. AddPage(&addDlg);
  33. }
  34. CSearchWizard::~CSearchWizard()
  35. {
  36. }
  37. BOOL CSearchWizard::Create(CWnd *pParentWnd)
  38. {
  39. DWORD dwStyle = WS_SYSMENU | WS_POPUP | WS_CAPTION | DS_MODALFRAME | WS_VISIBLE | WS_MINIMIZEBOX;
  40. DWORD dwExStyle = WS_EX_DLGMODALFRAME | WS_EX_APPWINDOW;
  41. return CPropertySheet::Create(pParentWnd, dwStyle, dwExStyle);
  42. }
  43. BEGIN_MESSAGE_MAP(CSearchWizard, CPropertySheet)
  44. //{{AFX_MSG_MAP(CSearchWizard)
  45. //}}AFX_MSG_MAP
  46. END_MESSAGE_MAP()
  47. /////////////////////////////////////////////////////////////////////////////
  48. // CSearchWizard message handlers
  49. void CSearchWizard::PostNcDestroy() 
  50. {
  51. delete this;
  52. }