FileFormatDialog.cpp
上传用户:hmc_gdtv
上传日期:2013-08-04
资源大小:798k
文件大小:3k
源码类别:

Windows Mobile

开发平台:

Visual C++

  1. /*
  2.  * Copyright (c) 2001,2002,2003 Mike Matsnev.  All Rights Reserved.
  3.  *
  4.  * Redistribution and use in source and binary forms, with or without
  5.  * modification, are permitted provided that the following conditions
  6.  * are met:
  7.  *
  8.  * 1. Redistributions of source code must retain the above copyright
  9.  *    notice immediately at the beginning of the file, without modification,
  10.  *    this list of conditions, and the following disclaimer.
  11.  * 2. Redistributions in binary form must reproduce the above copyright
  12.  *    notice, this list of conditions and the following disclaimer in the
  13.  *    documentation and/or other materials provided with the distribution.
  14.  * 3. Absolutely no warranty of function or purpose is made by the author
  15.  *    Mike Matsnev.
  16.  *
  17.  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
  18.  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  19.  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
  20.  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
  21.  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  22.  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  23.  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  24.  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  25.  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  26.  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  27.  * 
  28.  * $Id: FileFormatDialog.cpp,v 1.9.2.3 2004/10/21 15:35:24 mike Exp $
  29.  * 
  30.  */
  31. #include <afxext.h>
  32. #include <afxtempl.h>
  33. #include "resource.h"
  34. #include "config.h"
  35. #include "ptr.h"
  36. #include "FileFormatDialog.h"
  37. #include "TextFile.h"
  38. #include "Unicode.h"
  39. #ifdef _DEBUG
  40. #define new DEBUG_NEW
  41. #undef THIS_FILE
  42. static char THIS_FILE[] = __FILE__;
  43. #endif
  44. /////////////////////////////////////////////////////////////////////////////
  45. // CFileFormatDialog dialog
  46. CFileFormatDialog::CFileFormatDialog(CWnd* pParent /*=NULL*/)
  47.   : CDialog(CFileFormatDialog::IDD, pParent)
  48. {
  49.   //{{AFX_DATA_INIT(CFileFormatDialog)
  50.   m_encoding = 0;
  51.   m_format = 0;
  52.   m_defencoding = 0;
  53.   //}}AFX_DATA_INIT
  54. }
  55. void CFileFormatDialog::DoDataExchange(CDataExchange* pDX)
  56. {
  57.   CDialog::DoDataExchange(pDX);
  58.   //{{AFX_DATA_MAP(CFileFormatDialog)
  59.   DDX_CBIndex(pDX, IDC_ENCODING, m_encoding);
  60.   DDX_CBIndex(pDX, IDC_FILEFORMAT, m_format);
  61.   DDX_CBIndex(pDX, IDC_DEF_ENCODING, m_defencoding);
  62.   //}}AFX_DATA_MAP
  63. }
  64. BEGIN_MESSAGE_MAP(CFileFormatDialog, CDialog)
  65. //{{AFX_MSG_MAP(CFileFormatDialog)
  66. //}}AFX_MSG_MAP
  67. END_MESSAGE_MAP()
  68. /////////////////////////////////////////////////////////////////////////////
  69. // CFileFormatDialog message handlers
  70. BOOL CFileFormatDialog::OnInitDialog()
  71. {
  72. #if POCKETPC
  73.   ((CCeCommandBar *)m_pWndEmptyCB)->LoadToolBar(cIDR_DIALOG);
  74. #endif
  75.   // initialize combo boxes
  76.   CComboBox   *cb=(CComboBox*)GetDlgItem(IDC_FILEFORMAT);
  77.   if (cb) {
  78.     for (int i=-1;i<TextParser::GetNumFormats();++i)
  79.       cb->AddString(TextFile::GetFormatName(i));
  80.   }
  81.   cb=(CComboBox*)GetDlgItem(IDC_ENCODING);
  82.   CComboBox   *cb2=(CComboBox*)GetDlgItem(IDC_DEF_ENCODING);
  83.   if (cb) {
  84.     cb->AddString(_T("Auto"));
  85.     cb2->AddString(_T("Auto"));
  86.     for (int i=0;i<Unicode::GetNumCodePages();++i) {
  87.       cb->AddString(Unicode::GetCodePageName(i));
  88.       cb2->AddString(Unicode::GetCodePageName(i));
  89.     }
  90.   }
  91.   CDialog::OnInitDialog();
  92.   return TRUE;
  93. }