TIFFDirDLG.cpp
上传用户:lbr_007
上传日期:2019-05-31
资源大小:282k
文件大小:2k
源码类别:

传真(Fax)编程

开发平台:

Visual C++

  1. // TIFFDirDLG.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "TIFFSample.h"
  5. #include "TIFFDirDLG.h"
  6. #include "TIFFDoc.h"
  7. #include "TIFFView.h"
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13. extern TIFFView * g_view;
  14. /////////////////////////////////////////////////////////////////////////////
  15. // TIFFDirDLG dialog
  16. TIFFDirDLG::TIFFDirDLG(CWnd* pParent /*=NULL*/)
  17. : CDialog(TIFFDirDLG::IDD, pParent)
  18. {
  19. //{{AFX_DATA_INIT(TIFFDirDLG)
  20. // NOTE: the ClassWizard will add member initialization here
  21. //}}AFX_DATA_INIT
  22. }
  23. void TIFFDirDLG::DoDataExchange(CDataExchange* pDX)
  24. {
  25. CDialog::DoDataExchange(pDX);
  26. //{{AFX_DATA_MAP(TIFFDirDLG)
  27. DDX_Control(pDX, IDC_TIFFDIR_LIST, m_list);
  28. //}}AFX_DATA_MAP
  29. }
  30. BEGIN_MESSAGE_MAP(TIFFDirDLG, CDialog)
  31. //{{AFX_MSG_MAP(TIFFDirDLG)
  32. ON_NOTIFY(NM_CLICK, IDC_TIFFDIR_LIST, OnClickList)
  33. ON_NOTIFY(NM_DBLCLK, IDC_TIFFDIR_LIST, OnDoubleClickList)
  34. //}}AFX_MSG_MAP
  35. END_MESSAGE_MAP()
  36. /////////////////////////////////////////////////////////////////////////////
  37. // TIFFDirDLG message handlers
  38. void TIFFDirDLG::OnClickList(NMHDR* pNMHDR, LRESULT* pResult) 
  39. {
  40. *pResult = 0;
  41. }
  42. BOOL TIFFDirDLG::OnInitDialog() 
  43. {
  44. CDialog::OnInitDialog();
  45. m_list.InsertColumn(0,_T(""), LVCFMT_LEFT, 70);
  46. return TRUE;  // return TRUE unless you set the focus to a control
  47.               // EXCEPTION: OCX Property Pages should return FALSE
  48. }
  49. void TIFFDirDLG::UpdateList(void)
  50. {
  51. if (m_list.m_hWnd)
  52. {
  53. m_list.DeleteAllItems();
  54. char txt[256];
  55. for (UINT32 i = 0; i < m_imageCount; i++){
  56. sprintf(txt,"image%d",i+1);
  57. m_list.InsertItem(i,txt,0);
  58. }
  59. }
  60. }
  61. void TIFFDirDLG::OnDoubleClickList(NMHDR* pNMHDR, LRESULT* pResult) 
  62. {
  63. int ndx = m_list.GetNextItem( -1, LVNI_SELECTED );
  64. if (ndx >= 0)
  65. {
  66. if (g_view)
  67. {
  68. g_view->SetImage(ndx);
  69. g_view->ShowImage();
  70. }
  71. }
  72. *pResult = 0;
  73. }