SysOptionDlg.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. // SysOptionDlg.cpp : implementation file
  12. //
  13. #include "stdafx.h"
  14. #include "myicq.h"
  15. #include "SysOptionDlg.h"
  16. #ifdef _DEBUG
  17. #define new DEBUG_NEW
  18. #undef THIS_FILE
  19. static char THIS_FILE[] = __FILE__;
  20. #endif
  21. /////////////////////////////////////////////////////////////////////////////
  22. // CSysOptionDlg
  23. IMPLEMENT_DYNAMIC(CSysOptionDlg, CPropertySheet)
  24. CSysOptionDlg::CSysOptionDlg(CWnd* pParentWnd, UINT iSelectPage)
  25. : CPropertySheet(IDS_SYS_OPTION, pParentWnd, iSelectPage)
  26. {
  27. m_psh.dwFlags |= PSH_USEHICON | PSH_NOAPPLYNOW;
  28. m_psh.hIcon = getApp()->m_hIcon;
  29. AddPage(&generalDlg);
  30. AddPage(&replyDlg);
  31. AddPage(&networkDlg);
  32. AddPage(&soundDlg);
  33. AddPage(&pluginDlg);
  34. }
  35. CSysOptionDlg::~CSysOptionDlg()
  36. {
  37. }
  38. BEGIN_MESSAGE_MAP(CSysOptionDlg, CPropertySheet)
  39. //{{AFX_MSG_MAP(CSysOptionDlg)
  40. // NOTE - the ClassWizard will add and remove mapping macros here.
  41. //}}AFX_MSG_MAP
  42. END_MESSAGE_MAP()
  43. /////////////////////////////////////////////////////////////////////////////
  44. // CSysOptionDlg message handlers