PrintStatus.cpp
上传用户:ledldq
上传日期:2007-01-04
资源大小:95k
文件大小:1k
源码类别:

打印编程

开发平台:

Visual C++

  1. // PrintStatus.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "PrintManager.h"
  5. #include "PrintStatus.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. extern bool bGfxUserAbort;
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CPrintStatus dialog
  14. CPrintStatus::CPrintStatus(CWnd* pParent /*=NULL*/)
  15. : CDialog(CPrintStatus::IDD, pParent)
  16. {
  17. //{{AFX_DATA_INIT(CPrintStatus)
  18. // NOTE: the ClassWizard will add member initialization here
  19. //}}AFX_DATA_INIT
  20. Create(CPrintStatus::IDD, pParent);      // modeless !
  21. bGfxUserAbort = false;
  22. }
  23. void CPrintStatus::DoDataExchange(CDataExchange* pDX)
  24. {
  25. CDialog::DoDataExchange(pDX);
  26. //{{AFX_DATA_MAP(CPrintStatus)
  27. DDX_Control(pDX, IDC_PROGRESS1, wndProg);
  28. DDX_Control(pDX, IDC_ANIMATE1, wndAnima);
  29. //}}AFX_DATA_MAP
  30. }
  31. BEGIN_MESSAGE_MAP(CPrintStatus, CDialog)
  32. //{{AFX_MSG_MAP(CPrintStatus)
  33. //}}AFX_MSG_MAP
  34. END_MESSAGE_MAP()
  35. /////////////////////////////////////////////////////////////////////////////
  36. // CPrintStatus message handlers
  37. BOOL CPrintStatus::OnInitDialog() 
  38. {
  39. CDialog::OnInitDialog();
  40. CenterWindow();
  41. wndAnima.Open(IDR_PRINT);
  42. wndAnima.Play(0,(UINT)-1,(UINT)-1);
  43. return TRUE;  // return TRUE unless you set the focus to a control
  44.               // EXCEPTION: OCX Property Pages should return FALSE
  45. }
  46. void CPrintStatus::OnCancel() 
  47. {
  48. bGfxUserAbort = true;
  49. CDialog::OnCancel();
  50. }