EstimatingDlg.h 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /******************************************************************************
  2. |* THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
  3. |* ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
  4. |* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  5. |* PARTICULAR PURPOSE.
  6. |*
  7. |* Copyright 1995-2005 Nero AG. All Rights Reserved.
  8. |*-----------------------------------------------------------------------------
  9. |* NeroSDK / NVAPIExample
  10. |*
  11. |* PROGRAM: EstimatingDlg.h
  12. |*
  13. |* PURPOSE: A dialog box that holds controls that display progress of
  14. |* transcoding disk and time estimation.
  15. ******************************************************************************/
  16. #ifndef _NVAPIEXAMPLE_ESTIMATING_DLG_H_
  17. #define _NVAPIEXAMPLE_ESTIMATING_DLG_H_
  18. #if _MSC_VER > 1000
  19. #pragma once
  20. #endif // _MSC_VER > 1000
  21. class CEstimatingDlg : public CDialog
  22. {
  23. // Construction
  24. public:
  25. CEstimatingDlg(CWnd* pParent = NULL); // standard constructor
  26. // Dialog Data
  27. //{{AFX_DATA(CEstimatingDlg)
  28. enum { IDD = IDD_ESTIMATING_TIME_AND_SIZE };
  29. CProgressCtrl c_Progress;
  30. //}}AFX_DATA
  31. // Overrides
  32. // ClassWizard generated virtual function overrides
  33. //{{AFX_VIRTUAL(CEstimatingDlg)
  34. protected:
  35. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  36. //}}AFX_VIRTUAL
  37. // Implementation
  38. protected:
  39. // Generated message map functions
  40. //{{AFX_MSG(CEstimatingDlg)
  41. // NOTE: the ClassWizard will add member functions here
  42. //}}AFX_MSG
  43. DECLARE_MESSAGE_MAP()
  44. };
  45. //{{AFX_INSERT_LOCATION}}
  46. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  47. #endif