ConvertChapDlg.cpp
上传用户:tangyu_668
上传日期:2014-02-27
资源大小:678k
文件大小:2k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. /* 
  2.  * Copyright (C) 2003-2006 Gabest
  3.  * http://www.gabest.org
  4.  *
  5.  *  This Program is free software; you can redistribute it and/or modify
  6.  *  it under the terms of the GNU General Public License as published by
  7.  *  the Free Software Foundation; either version 2, or (at your option)
  8.  *  any later version.
  9.  *   
  10.  *  This Program is distributed in the hope that it will be useful,
  11.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13.  *  GNU General Public License for more details.
  14.  *   
  15.  *  You should have received a copy of the GNU General Public License
  16.  *  along with GNU Make; see the file COPYING.  If not, write to
  17.  *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. 
  18.  *  http://www.gnu.org/copyleft/gpl.html
  19.  *
  20.  */
  21. // ConvertChapDlg.cpp : implementation file
  22. //
  23. #include "stdafx.h"
  24. #include "mplayerc.h"
  25. #include "ConvertChapDlg.h"
  26. // CConvertChapDlg dialog
  27. CConvertChapDlg::CConvertChapDlg(CWnd* pParent /*=NULL*/)
  28. : CResizableDialog(CConvertChapDlg::IDD, pParent)
  29. , m_time(_T(""))
  30. , m_name(_T(""))
  31. {
  32. }
  33. CConvertChapDlg::~CConvertChapDlg()
  34. {
  35. }
  36. void CConvertChapDlg::DoDataExchange(CDataExchange* pDX)
  37. {
  38. __super::DoDataExchange(pDX);
  39. DDX_Text(pDX, IDC_EDIT1, m_time);
  40. DDX_Text(pDX, IDC_EDIT2, m_name);
  41. }
  42. BEGIN_MESSAGE_MAP(CConvertChapDlg, CResizableDialog)
  43. ON_UPDATE_COMMAND_UI(IDOK, OnUpdateOK)
  44. END_MESSAGE_MAP()
  45. // CConvertChapDlg message handlers
  46. BOOL CConvertChapDlg::OnInitDialog()
  47. {
  48. __super::OnInitDialog();
  49. AddAnchor(IDC_EDIT1, TOP_LEFT);
  50. AddAnchor(IDC_EDIT2, TOP_LEFT, TOP_RIGHT);
  51. AddAnchor(IDOK, BOTTOM_CENTER);
  52. AddAnchor(IDCANCEL, BOTTOM_CENTER);
  53. CRect r;
  54. GetWindowRect(r);
  55. CSize s = r.Size();
  56. SetMinTrackSize(s);
  57. s.cx = 1000;
  58. SetMaxTrackSize(s);
  59. UpdateData(FALSE);
  60. return TRUE;  // return TRUE unless you set the focus to a control
  61. // EXCEPTION: OCX Property Pages should return FALSE
  62. }
  63. void CConvertChapDlg::OnOK()
  64. {
  65. UpdateData();
  66. __super::OnOK();
  67. }
  68. void CConvertChapDlg::OnUpdateOK(CCmdUI* pCmdUI)
  69. {
  70. CString str;
  71. GetDlgItem(IDC_EDIT1)->GetWindowText(str);
  72. int i;
  73. pCmdUI->Enable(3 == _stscanf(str, _T("%d:%d:%d"), &i, &i, &i)
  74. && GetDlgItem(IDC_EDIT2)->GetWindowTextLength() > 0);
  75. }