home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2004 March / PCWELT_3_2004.ISO / pcwsoft / flaskmpeg_078_39_src.z.exe / flaskmpeg / ProgressDlg.h < prev    next >
Encoding:
C/C++ Source or Header  |  2002-10-28  |  3.0 KB  |  115 lines

  1. /* 
  2.  *  ProgressDlg.h
  3.  *
  4.  *    Copyright (C) Alberto Vigata - January 2000
  5.  *
  6.  *  This file is part of FlasKMPEG, a free MPEG to MPEG/AVI converter
  7.  *    
  8.  *  FlasKMPEG is free software; you can redistribute it and/or modify
  9.  *  it under the terms of the GNU General Public License as published by
  10.  *  the Free Software Foundation; either version 2, or (at your option)
  11.  *  any later version.
  12.  *   
  13.  *  FlasKMPEG is distributed in the hope that it will be useful,
  14.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.  *  GNU General Public License for more details.
  17.  *   
  18.  *  You should have received a copy of the GNU General Public License
  19.  *  along with GNU Make; see the file COPYING.  If not, write to
  20.  *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. 
  21.  *
  22.  */
  23.  
  24. #if !defined(AFX_PROGRESSDLG_H__F55B2A0F_D696_4C8F_91FE_BBB67B2E5A59__INCLUDED_)
  25. #define AFX_PROGRESSDLG_H__F55B2A0F_D696_4C8F_91FE_BBB67B2E5A59__INCLUDED_
  26.  
  27. #if _MSC_VER > 1000
  28. #pragma once
  29. #endif // _MSC_VER > 1000
  30.  
  31. #include "flasktypes.h"
  32.  
  33. // Priorities
  34. #define IDLE_PRIO     0
  35. #define NORMAL_PRIO  1
  36. #define HIGH_PRIO    2
  37. #define HIGHEST_PRIO 3
  38.  
  39.  
  40. #ifndef PURE
  41. #define PURE =0
  42. #endif 
  43.  
  44. // Class that supports progress tracking.
  45. class CProgressTracking
  46. {
  47. public:
  48.   virtual ui32 GetPresentFrame() PURE;
  49.   virtual void Cancel() PURE;
  50.   virtual void Pause() PURE;
  51.   virtual void Resume() PURE;
  52.   virtual bool Terminated() PURE;
  53.   virtual bool IsPaused() PURE;
  54.   virtual void DualPassInfo( bool &isDualPass, bool &IsFirstPass) PURE;
  55.   virtual char *GetOutputFileName() PURE;
  56.   virtual ui64 GetProcessed() PURE;
  57.   virtual ui64 GetSize() PURE;
  58.   virtual ui32 GetJobCount() PURE;
  59.   virtual ui32 GetJobInProcess() PURE;
  60.   virtual void SetProgressPriority(ui32 nPriority) PURE;
  61. };
  62.  
  63. // Class that supports progress report
  64. class CProgressReport
  65. {
  66. public:
  67.   virtual ui32 NewFrameInfo(ui32 size, bool keyframe) PURE;
  68.   virtual ui32 StreamInfo(ui64 sizewritten) PURE;
  69. };
  70.  
  71.  
  72.  
  73. // Define an the report class for our dialog
  74. // The class will send the WM_NEWFRAMEINFO message
  75. // to the dialog every time there is new info about
  76. // a frame
  77. #define WM_NEWFRAMEINFO  WM_USER + 1
  78. #define WM_STREAMINFO  WM_USER + 2
  79.  
  80.  
  81. class CProgressReportDlg: public CProgressReport
  82. {
  83.   public:
  84.     CProgressReportDlg()
  85.     {
  86.       m_hDlg = NULL;
  87.     }
  88.  
  89.     ui32 NewFrameInfo(ui32 size, bool keyframe)
  90.     {
  91.       if(m_hDlg)
  92.         PostMessage(m_hDlg, WM_NEWFRAMEINFO, (WPARAM)size, (LPARAM)keyframe);
  93.  
  94.       return 0;
  95.     }
  96.     ui32 StreamInfo(ui64 sizewritten)
  97.     {
  98.       if(m_hDlg)
  99.         PostMessage(m_hDlg, WM_STREAMINFO, (WPARAM)sizewritten, (LPARAM)(sizewritten>>32) );
  100.       return 0;
  101.     }
  102.     void SetDlg(HWND hDlg)
  103.     {
  104.       m_hDlg = hDlg;
  105.     }
  106.  
  107.   private:
  108.     HWND m_hDlg;
  109.  
  110. };
  111.  
  112. LRESULT CALLBACK ProgressDlg(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
  113.  
  114. #endif // !defined(AFX_PROGRESSDLG_H__F55B2A0F_D696_4C8F_91FE_BBB67B2E5A59__INCLUDED_)
  115.