SaveThumbnailsDialog.cpp
上传用户:tangyu_668
上传日期:2014-02-27
资源大小:678k
文件大小:3k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. /* 
  2.  * Copyright (C) 2003-2006 Gabest
  3.  * http://www.gabest.org
  4.  *
  5.  *  This Program is free software; you can redistribute it and/or modify
  6.  *  it under the terms of the GNU General Public License as published by
  7.  *  the Free Software Foundation; either version 2, or (at your option)
  8.  *  any later version.
  9.  *   
  10.  *  This Program is distributed in the hope that it will be useful,
  11.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13.  *  GNU General Public License for more details.
  14.  *   
  15.  *  You should have received a copy of the GNU General Public License
  16.  *  along with GNU Make; see the file COPYING.  If not, write to
  17.  *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. 
  18.  *  http://www.gnu.org/copyleft/gpl.html
  19.  *
  20.  */
  21. // SaveThumbnailsDialog.cpp : implementation file
  22. //
  23. #include "stdafx.h"
  24. #include "mplayerc.h"
  25. #include "SaveThumbnailsDialog.h"
  26. // CSaveThumbnailsDialog
  27. IMPLEMENT_DYNAMIC(CSaveThumbnailsDialog, CFileDialog)
  28. CSaveThumbnailsDialog::CSaveThumbnailsDialog(
  29. int rows, int cols, int width,
  30. LPCTSTR lpszDefExt, LPCTSTR lpszFileName,
  31. LPCTSTR lpszFilter, CWnd* pParentWnd) :
  32. CFileDialog(FALSE, lpszDefExt, lpszFileName, 
  33. OFN_EXPLORER|OFN_ENABLESIZING|OFN_HIDEREADONLY|OFN_OVERWRITEPROMPT|OFN_PATHMUSTEXIST, 
  34. lpszFilter, pParentWnd, 0),
  35. m_rows(rows), m_cols(cols), m_width(width)
  36. {
  37. if(m_ofn.lStructSize == sizeof(OPENFILENAME))
  38. {
  39. SetTemplate(0, IDD_SAVETHUMBSDIALOGTEMPL);
  40. }
  41. else /*if(m_ofn.lStructSize == OPENFILENAME_SIZE_VERSION_400)*/
  42. {
  43. SetTemplate(0, IDD_SAVETHUMBSDIALOGTEMPL_400);
  44. }
  45. }
  46. CSaveThumbnailsDialog::~CSaveThumbnailsDialog()
  47. {
  48. }
  49. void CSaveThumbnailsDialog::DoDataExchange(CDataExchange* pDX)
  50. {
  51. DDX_Control(pDX, IDC_SPIN1, m_rowsctrl);
  52. DDX_Control(pDX, IDC_SPIN2, m_colsctrl);
  53. DDX_Control(pDX, IDC_SPIN3, m_widthctrl);
  54. __super::DoDataExchange(pDX);
  55. }
  56. BOOL CSaveThumbnailsDialog::OnInitDialog()
  57. {
  58. __super::OnInitDialog();
  59. m_rowsctrl.SetRange(0, 8);
  60. m_colsctrl.SetRange(0, 8);
  61. m_widthctrl.SetRange(256, 2048);
  62. m_rowsctrl.SetPos(m_rows);
  63. m_colsctrl.SetPos(m_cols);
  64. m_widthctrl.SetPos(m_width);
  65. return TRUE;  // return TRUE unless you set the focus to a control
  66. // EXCEPTION: OCX Property Pages should return FALSE
  67. }
  68. BEGIN_MESSAGE_MAP(CSaveThumbnailsDialog, CFileDialog)
  69. END_MESSAGE_MAP()
  70. // CSaveThumbnailsDialog message handlers
  71. BOOL CSaveThumbnailsDialog::OnFileNameOK()
  72. {
  73. m_rows = m_rowsctrl.GetPos();
  74. m_cols = m_colsctrl.GetPos();
  75. m_width = m_widthctrl.GetPos();
  76. return __super::OnFileNameOK();
  77. }