EstimateDoneDlg.h 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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: EstimateDoneDlg.h
  12. |*
  13. |* PURPOSE: A dialog box that holds controls showing data after
  14. |* transcoding disk and time estimation.
  15. ******************************************************************************/
  16. #ifndef _NVAPIEXAMPLE_ESTIMATE_DONE_DLG_H_
  17. #define _NVAPIEXAMPLE_ESTIMATE_DONE_DLG_H_
  18. #if _MSC_VER > 1000
  19. #pragma once
  20. #endif // _MSC_VER > 1000
  21. class CEstimateDoneDlg : public CDialog
  22. {
  23. // Construction
  24. public:
  25. CEstimateDoneDlg(CWnd* pParent = NULL); // standard constructor
  26. // Dialog Data
  27. //{{AFX_DATA(CEstimateDoneDlg)
  28. enum { IDD = IDD_TIME_AND_SIZE_ESTIMATE };
  29. CStatic c_EstimatedSize;
  30. CStatic c_EstimatedTime;
  31. CString m_sEstimatedSize;
  32. CString m_sEstimatedTime;
  33. //}}AFX_DATA
  34. // Overrides
  35. // ClassWizard generated virtual function overrides
  36. //{{AFX_VIRTUAL(CEstimateDoneDlg)
  37. protected:
  38. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  39. //}}AFX_VIRTUAL
  40. // Implementation
  41. protected:
  42. // Generated message map functions
  43. //{{AFX_MSG(CEstimateDoneDlg)
  44. // NOTE: the ClassWizard will add member functions here
  45. //}}AFX_MSG
  46. DECLARE_MESSAGE_MAP()
  47. };
  48. //{{AFX_INSERT_LOCATION}}
  49. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  50. #endif