⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 platformsdialog.cpp

📁 eCos1.31版
💻 CPP
字号:
//####COPYRIGHTBEGIN####//                                                                          // ----------------------------------------------------------------------------// Copyright (C) 1998, 1999, 2000 Red Hat, Inc.//// This program is part of the eCos host tools.//// This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free // Software Foundation; either version 2 of the License, or (at your option) // any later version.// // This program is distributed in the hope that it will be useful, but WITHOUT // ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or // FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for // more details.// // You should have received a copy of the GNU General Public License along with// this program; if not, write to the Free Software Foundation, Inc., // 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.//// ----------------------------------------------------------------------------//                                                                          //####COPYRIGHTEND####// PlatformsDialog.cpp : implementation file//#include "stdafx.h"#include "testtool.h"#include "PLatformsDialog.h"#include "PlatformDialog.h"#ifdef _DEBUG#define new DEBUG_NEW#undef THIS_FILEstatic char THIS_FILE[] = __FILE__;#endif/////////////////////////////////////////////////////////////////////////////// CPlatformsDialog dialogCPlatformsDialog::CPlatformsDialog(CWnd* pParent /*=NULL*/)	: CeCosDialog(CPlatformsDialog::IDD, pParent){	//{{AFX_DATA_INIT(CPlatformsDialog)		// NOTE: the ClassWizard will add member initialization here	//}}AFX_DATA_INIT}void CPlatformsDialog::DoDataExchange(CDataExchange* pDX){	CeCosDialog::DoDataExchange(pDX);	//{{AFX_DATA_MAP(CPlatformsDialog)	DDX_Control(pDX, IDC_TT_PLATFORM_LIST, m_List);	//}}AFX_DATA_MAP}BEGIN_MESSAGE_MAP(CPlatformsDialog, CeCosDialog)	//{{AFX_MSG_MAP(CPlatformsDialog)	ON_BN_CLICKED(IDC_TT_ADD_PLATFORM, OnAddPlatform)	ON_BN_CLICKED(IDC_TT_DELETE_PLATFORM, OnDeletePlatform)	ON_NOTIFY(NM_DBLCLK, IDC_TT_PLATFORM_LIST, OnDblclkPlatformList)	ON_BN_CLICKED(IDC_TT_MODIFY_PLATFORM, OnModifyPlatform)	ON_NOTIFY(LVN_KEYDOWN, IDC_TT_PLATFORM_LIST, OnKeydownPlatformList)	ON_NOTIFY(LVN_ITEMCHANGED, IDC_TT_PLATFORM_LIST, OnItemchangedPlatformList)	//}}AFX_MSG_MAPEND_MESSAGE_MAP()/////////////////////////////////////////////////////////////////////////////// CPlatformsDialog message handlersconst LPCTSTR CPlatformsDialog::arpszTypes[]={  _T("Hardware with breakpoint support"),  _T("Simulator"),  _T("Synthetic target"),  _T("Hardware without breakpoint support"),  _T("Remote simulator")};BOOL CPlatformsDialog::OnInitDialog() {	CeCosDialog::OnInitDialog();	ListView_SetExtendedListViewStyle(m_List.GetSafeHwnd(),LVS_EX_FULLROWSELECT);	m_List.InsertColumn(0,_T("Target"));  m_List.InsertColumn(1,_T("Prefix"));  m_List.InsertColumn(2,_T("GDB commands"));  m_List.InsertColumn(3,_T("Type"));  for(unsigned int i=0;i<CeCosTest::TargetTypeMax();i++){    Add(CeCosTest::Target(i));  }  CRect rect;  m_List.GetClientRect(rect);  m_List.SetColumnWidth(0,rect.Width()/4);  m_List.SetColumnWidth(1,rect.Width()/4);  m_List.SetColumnWidth(2,rect.Width()/4);  m_List.SetColumnWidth(3,rect.Width()/4);		bool bSel=(NULL!=m_List.GetFirstSelectedItemPosition());	GetDlgItem(IDC_TT_MODIFY_PLATFORM)->EnableWindow(bSel);	GetDlgItem(IDC_TT_DELETE_PLATFORM)->EnableWindow(bSel);  return TRUE;  // return TRUE unless you set the focus to a control	              // EXCEPTION: OCX Property Pages should return FALSE}void CPlatformsDialog::OnAddPlatform() {  CPlatformDialog dlg;  if(IDOK==dlg.DoModal()){    LVFINDINFO fi;    fi.flags=LVFI_STRING;    fi.psz=dlg.m_strPlatform;    if(-1==m_List.FindItem(&fi)){      Add(CeCosTest::TargetInfo(dlg.m_strPlatform,dlg.m_strPrefix,dlg.m_nType,dlg.m_strGDB));    } else {      MessageBox(_T("That platform name is already in use."));    }  }}void CPlatformsDialog::OnDeletePlatform() {  POSITION pos = m_List.GetFirstSelectedItemPosition();  if(pos){    int nIndex= m_List.GetNextSelectedItem(pos);        if(IDYES==MessageBox(_T("Are you sure you wish to delete this platform?"),_T("Delete"),MB_YESNO)){      delete Platform(nIndex);      m_List.DeleteItem(nIndex);      m_arTargetInfo.RemoveAt(nIndex);    }  }}void CPlatformsDialog::Add(const CeCosTest::TargetInfo &ti){  int i=m_List.GetItemCount();  CeCosTest::TargetInfo *pti=new CeCosTest::TargetInfo(ti);  m_List.InsertItem(i,CeCosTest::Image(i));  m_List.SetItemText(i,1,pti->Prefix());  m_List.SetItemText(i,2,pti->GdbCmd());  m_List.SetItemText(i,3,arpszTypes[pti->Type()]);  m_arTargetInfo.Add(pti);}void CPlatformsDialog::OnDblclkPlatformList(NMHDR*, LRESULT* pResult) {  OnModifyPlatform();	*pResult = 0;}void CPlatformsDialog::OnModifyPlatform() {  POSITION pos = m_List.GetFirstSelectedItemPosition();  if(pos){    int nIndex= m_List.GetNextSelectedItem(pos);    CeCosTest::TargetInfo *pti=Platform(nIndex);    CPlatformDialog dlg;    dlg.m_strPlatform=pti->Image();    dlg.m_strPrefix=pti->Prefix();    dlg.m_strGDB=pti->GdbCmd();    dlg.m_nType=pti->Type();    dlg.m_strCaption=_T("Modify");    if(IDCANCEL!=dlg.DoModal()){      *pti=CeCosTest::TargetInfo(dlg.m_strPlatform,dlg.m_strPrefix,dlg.m_nType,dlg.m_strGDB);      m_List.SetItemText(nIndex,1,pti->Prefix());      m_List.SetItemText(nIndex,2,pti->GdbCmd());      m_List.SetItemText(nIndex,3,arpszTypes[pti->Type()]);    }  }}void CPlatformsDialog::OnKeydownPlatformList(NMHDR* pNMHDR, LRESULT* pResult) {	LV_KEYDOWN* pLVKeyDow = (LV_KEYDOWN*)pNMHDR;  if(VK_DELETE==pLVKeyDow->wVKey){    OnDeletePlatform();  }	*pResult = 0;}void CPlatformsDialog::OnItemchangedPlatformList(NMHDR* pNMHDR, LRESULT* pResult) {	//NM_LISTVIEW* pNMListView = (NM_LISTVIEW*)pNMHDR;	bool bSel=(NULL!=m_List.GetFirstSelectedItemPosition());	GetDlgItem(IDC_TT_MODIFY_PLATFORM)->EnableWindow(bSel);	GetDlgItem(IDC_TT_DELETE_PLATFORM)->EnableWindow(bSel);	*pResult = 0;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -