Added theme element analysis feature to smpackage

This commit is contained in:
Chris Danford
2003-03-28 17:46:32 +00:00
parent 415f2b30da
commit 541b5fe9c2
11 changed files with 194 additions and 49 deletions
+8 -8
View File
@@ -38,22 +38,15 @@ void MainMenuDlg::DoDataExchange(CDataExchange* pDX)
BEGIN_MESSAGE_MAP(MainMenuDlg, CDialog)
//{{AFX_MSG_MAP(MainMenuDlg)
ON_BN_CLICKED(IDC_CONVERT_THEME, OnConvertTheme)
ON_BN_CLICKED(IDC_EXPORT_PACKAGES, OnExportPackages)
ON_BN_CLICKED(IDC_EDIT_INSTALLATIONS, OnEditInstallations)
ON_BN_CLICKED(IDC_ANALYZE_ELEMENTS, OnAnalyzeElements)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// MainMenuDlg message handlers
void MainMenuDlg::OnConvertTheme()
{
// TODO: Add your control notification handler code here
ConvertThemeDlg dlg;
int nResponse = dlg.DoModal();
}
void MainMenuDlg::OnExportPackages()
{
// TODO: Add your control notification handler code here
@@ -68,3 +61,10 @@ void MainMenuDlg::OnEditInstallations()
EditInsallations dlg;
int nResponse = dlg.DoModal();
}
void MainMenuDlg::OnAnalyzeElements()
{
// TODO: Add your control notification handler code here
ConvertThemeDlg dlg;
int nResponse = dlg.DoModal();
}