home *** CD-ROM | disk | FTP | other *** search
/ PC World 2003 June / PCWorld_2003-06_cd.bin / KOMUNIK / MIRRORIT / SRC / SESSIONPROPERTIESADVANCEDPA.CPP < prev    next >
C/C++ Source or Header  |  1998-01-05  |  3KB  |  107 lines

  1. // SessionPropertiesAdvancedPage.cpp : implementation file
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "MirrorIt.h"
  6. #include "SessionPropertiesAdvancedPage.h"
  7.  
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13.  
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CSessionPropertiesAdvancedPage property page
  16.  
  17. IMPLEMENT_DYNCREATE(CSessionPropertiesAdvancedPage, CPropertyPage)
  18.  
  19. CSessionPropertiesAdvancedPage::CSessionPropertiesAdvancedPage() : CPropertyPage(CSessionPropertiesAdvancedPage::IDD)
  20. {
  21.     //{{AFX_DATA_INIT(CSessionPropertiesAdvancedPage)
  22.     m_BDate = FALSE;
  23.     m_Exclude = _T("");
  24.     m_Multiple = FALSE;
  25.     m_Permanent = FALSE;
  26.     m_Temporary = FALSE;
  27.     //}}AFX_DATA_INIT
  28. }
  29.  
  30. CSessionPropertiesAdvancedPage::~CSessionPropertiesAdvancedPage()
  31. {
  32. }
  33.  
  34. void CSessionPropertiesAdvancedPage::DoDataExchange(CDataExchange* pDX)
  35. {
  36.     CPropertyPage::DoDataExchange(pDX);
  37.     //{{AFX_DATA_MAP(CSessionPropertiesAdvancedPage)
  38.     DDX_Check(pDX, IDC_BDATE, m_BDate);
  39.     DDX_Text(pDX, IDC_EXCLUDE, m_Exclude);
  40.     DDX_Check(pDX, IDC_MULTIPLE, m_Multiple);
  41.     DDX_Check(pDX, IDC_PERMANENT, m_Permanent);
  42.     DDX_Check(pDX, IDC_TEMPORARY, m_Temporary);
  43.     //}}AFX_DATA_MAP
  44. }
  45.  
  46.  
  47. BEGIN_MESSAGE_MAP(CSessionPropertiesAdvancedPage, CPropertyPage)
  48.     //{{AFX_MSG_MAP(CSessionPropertiesAdvancedPage)
  49.     ON_BN_CLICKED(IDC_BDATE, OnBdate)
  50.     ON_WM_DESTROY()
  51.     //}}AFX_MSG_MAP
  52. END_MESSAGE_MAP()
  53.  
  54. /////////////////////////////////////////////////////////////////////////////
  55. // CSessionPropertiesAdvancedPage message handlers
  56.  
  57. BOOL CSessionPropertiesAdvancedPage::OnInitDialog() 
  58. {
  59.     CPropertyPage::OnInitDialog();
  60.     
  61.     // TODO: Add extra initialization here
  62.     RECT rc;
  63.     CWnd *pFrame = GetDlgItem(IDC_FRAME);
  64.     pFrame -> GetClientRect(&rc);
  65.     m_Date.Create(WS_CHILD | WS_VISIBLE | WS_TABSTOP | DTS_LONGDATEFORMAT, 
  66.                   rc, pFrame, IDC_DATE);
  67.  
  68.     pFrame = GetDlgItem(IDC_FRAME2);
  69.     pFrame -> GetClientRect(&rc);
  70.     m_Time.Create(WS_CHILD | WS_VISIBLE | WS_TABSTOP | DTS_TIMEFORMAT, 
  71.                   rc, pFrame, IDC_TIME);
  72.  
  73.     SetDate(m_BDate);
  74.     m_Date.SetDateTime(m_DateTime);
  75.     m_Time.SetDateTime(m_DateTime);
  76.     
  77.     return TRUE;  // return TRUE unless you set the focus to a control
  78.                   // EXCEPTION: OCX Property Pages should return FALSE
  79. }
  80.  
  81. void CSessionPropertiesAdvancedPage::SetDate(BOOL b)
  82. {
  83.     m_Date.EnableWindow(b);
  84.     m_Time.EnableWindow(b);
  85. }
  86.  
  87. void CSessionPropertiesAdvancedPage::OnBdate() 
  88. {
  89.     SetDate(((CButton *)GetDlgItem(IDC_BDATE)) -> GetCheck() ? TRUE : FALSE);
  90. }
  91.  
  92. void CSessionPropertiesAdvancedPage::OnDestroy() 
  93. {
  94.     CPropertyPage::OnDestroy();
  95.  
  96.     SYSTEMTIME t1, t2;
  97.     m_Date.GetDateTime(t1);
  98.     m_Time.GetDateTime(t2);
  99.  
  100.     m_DateTime.wYear = t1.wYear;
  101.     m_DateTime.wMonth = t1.wMonth;
  102.     m_DateTime.wDay = t1.wDay;
  103.     m_DateTime.wHour = t2.wHour;
  104.     m_DateTime.wMinute = t2.wMinute;
  105.     m_DateTime.wSecond = t2.wSecond;
  106. }
  107.