VSRipIndexingDlg.h
上传用户:xjjlds
上传日期:2015-12-05
资源大小:22823k
文件大小:2k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. /* 
  2.  * Copyright (C) 2003-2005 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. #pragma once
  22. #include "VSRipPage.h"
  23. // CVSRipIndexingDlg dialog
  24. class CVSRipIndexingDlg : public CVSRipPage
  25. {
  26. DECLARE_DYNAMIC(CVSRipIndexingDlg)
  27. private:
  28. BOOL m_bBeep, m_bExit;
  29. bool m_fAuto;
  30. protected:
  31. // IVSFRipperCallback
  32. STDMETHODIMP OnMessage(LPCTSTR msg);
  33. STDMETHODIMP OnProgress(double progress /*0->1*/);
  34. STDMETHODIMP OnFinished(bool fSucceeded);
  35. public:
  36. CVSRipIndexingDlg(IVSFRipper* pVSFRipper, CWnd* pParent = NULL);   // standard constructor
  37. virtual ~CVSRipIndexingDlg();
  38. virtual bool CanGoPrev() {return(S_OK != m_pVSFRipper->IsIndexing() && !m_fAuto);}
  39. virtual bool CanGoNext() {return(false);}
  40. virtual bool CanClose() {return(S_OK != m_pVSFRipper->IsIndexing());}
  41. virtual CString GetCloseText() {return(m_fFinished ? _T("&Close") : _T("&Cancel"));}
  42. virtual CString GetHeaderText() {return(_T("Extracting subtitles"));}
  43. virtual CString GetDescText() {return(_T("This may take a while, please sit back and relax... ")
  44. _T("If you wish you can abort the process and go back to ")
  45. _T("adjust the settings again."));}
  46. bool m_fFinished;
  47. // Dialog Data
  48. enum { IDD = IDD_DIALOG_INDEXING };
  49. CEdit m_log;
  50. CProgressCtrl m_progress;
  51. protected:
  52. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  53. DECLARE_MESSAGE_MAP()
  54. public:
  55. afx_msg void OnIndex();
  56. afx_msg void OnUpdateIndex(CCmdUI* pCmdUI);
  57. afx_msg void OnShowWindow(BOOL bShow, UINT nStatus);
  58. afx_msg void OnBnClickedCheck2();
  59. afx_msg void OnBnClickedCheck1();
  60. };