123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- //===========================================================================//
- // Copyright (C) Microsoft Corporation. All rights reserved. //
- //===========================================================================//
- // ResourceStringSelectionDlg.cpp : implementation file
- //
- #include "stdafx.h"
- #include "resource.h"
- #include "ResourceStringSelectionDlg.h"
- #include "assert.h"
- #include "../MCLib/Utilities.h" /*for cLoadString*/
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // ResourceStringSelectionDlg dialog
- ResourceStringSelectionDlg::ResourceStringSelectionDlg(CWnd* pParent /*=NULL*/)
- : CDialog(ResourceStringSelectionDlg::IDD, pParent)
- {
- m_BottomOfIDRange = 0;
- m_TopOfIDRange = 65535;
- m_SelectedResourceStringID = -1;
- //{{AFX_DATA_INIT(ResourceStringSelectionDlg)
- // NOTE: the ClassWizard will add member initialization here
- //}}AFX_DATA_INIT
- }
- void ResourceStringSelectionDlg::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(ResourceStringSelectionDlg)
- DDX_Control(pDX, IDC_RESOURCE_STRING_SELECTION_COMBO, m_Combo);
- //}}AFX_DATA_MAP
- }
- BEGIN_MESSAGE_MAP(ResourceStringSelectionDlg, CDialog)
- //{{AFX_MSG_MAP(ResourceStringSelectionDlg)
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // ResourceStringSelectionDlg message handlers
- static BOOL CSLoadString(int resourceID, CString &targetStr) {
- char szTmp[16384/*max string length*/];
- cLoadString( resourceID, szTmp, 16384/*max string length*/ );
- targetStr = szTmp;
- CString tmpStr;
- tmpStr.Format("mc2res.dll:%d Not defined", resourceID);
- if (0 == strcmp(tmpStr.GetBuffer(0), szTmp)) {
- return (0);
- }
- return (!0);
- }
- BOOL ResourceStringSelectionDlg::OnInitDialog()
- {
- CDialog::OnInitDialog();
-
- m_ResourceStringIDs.Clear();
- m_Combo.ResetContent();
- unsigned long i;
- for (i = m_BottomOfIDRange; i <= (unsigned long)m_TopOfIDRange; i += 1) {
- CString tmpStr;
- //BOOL result = tmpStr.LoadString(i);
- BOOL result = CSLoadString(i, tmpStr);
- if (0 != result) {
- CString tmpStr2;
- tmpStr2.Format("%d: ", i);
- tmpStr2 += tmpStr;
- m_Combo.AddString(tmpStr2);
- m_ResourceStringIDs.Append(i);
- }
- }
- for (i = 0; i < m_ResourceStringIDs.Count(); i += 1) {
- if (m_SelectedResourceStringID == m_ResourceStringIDs[i]) {
- m_Combo.SetCurSel(i);
- break;
- }
- }
- if (m_ResourceStringIDs.Count() == i) {
- m_SelectedResourceStringID = -1;
- m_Combo.SetCurSel(-1);
- }
-
- return TRUE; // return TRUE unless you set the focus to a control
- // EXCEPTION: OCX Property Pages should return FALSE
- }
- void ResourceStringSelectionDlg::OnOK()
- {
- unsigned long selectionIndex = m_Combo.GetCurSel();
- if (CB_ERR != selectionIndex) {
- assert(m_ResourceStringIDs.Count() > selectionIndex);
- m_SelectedResourceStringID = m_ResourceStringIDs[selectionIndex];
- }
-
- CDialog::OnOK();
- }
|