mirror of
https://github.com/fadden/ciderpress.git
synced 2024-11-23 11:33:58 +00:00
759f0d820f
This updates the various dialogs to use the new functions. The help system should be fully functional now.
61 lines
1.4 KiB
C++
61 lines
1.4 KiB
C++
/*
|
|
* CiderPress
|
|
* Copyright (C) 2007 by faddenSoft, LLC. All Rights Reserved.
|
|
* See the file LICENSE for distribution terms.
|
|
*/
|
|
#include "stdafx.h"
|
|
#include "UseSelectionDialog.h"
|
|
|
|
BEGIN_MESSAGE_MAP(UseSelectionDialog, CDialog)
|
|
ON_WM_HELPINFO()
|
|
//ON_COMMAND(IDHELP, OnHelp)
|
|
END_MESSAGE_MAP()
|
|
|
|
|
|
BOOL UseSelectionDialog::OnInitDialog(void)
|
|
{
|
|
CString str;
|
|
CString selStr;
|
|
CWnd* pWnd;
|
|
|
|
CDialog::OnInitDialog();
|
|
|
|
/* grab the radio button with the selection count */
|
|
pWnd = GetDlgItem(IDC_USE_SELECTED);
|
|
ASSERT(pWnd != NULL);
|
|
|
|
/* set the string using a string table entry */
|
|
if (fSelectedCount == 1) {
|
|
str.LoadString(fSelCountID);
|
|
pWnd->SetWindowText(str);
|
|
} else {
|
|
str.LoadString(fSelCountsID);
|
|
selStr.Format((LPCWSTR) str, fSelectedCount);
|
|
pWnd->SetWindowText(selStr);
|
|
|
|
if (fSelectedCount == 0)
|
|
pWnd->EnableWindow(FALSE);
|
|
}
|
|
|
|
/* set the other strings */
|
|
str.LoadString(fTitleID);
|
|
SetWindowText(str);
|
|
|
|
pWnd = GetDlgItem(IDC_USE_ALL);
|
|
ASSERT(pWnd != NULL);
|
|
str.LoadString(fAllID);
|
|
pWnd->SetWindowText(str);
|
|
|
|
pWnd = GetDlgItem(IDOK);
|
|
ASSERT(pWnd != NULL);
|
|
str.LoadString(fOkLabelID);
|
|
pWnd->SetWindowText(str);
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
void UseSelectionDialog::DoDataExchange(CDataExchange* pDX)
|
|
{
|
|
DDX_Radio(pDX, IDC_USE_SELECTED, fFilesToAction);
|
|
}
|