mirror of
https://github.com/fadden/ciderpress.git
synced 2024-11-26 17:49:21 +00:00
65 lines
1.3 KiB
C++
65 lines
1.3 KiB
C++
/*
|
|
* CiderPress
|
|
* Copyright (C) 2007 by faddenSoft, LLC. All Rights Reserved.
|
|
* See the file LICENSE for distribution terms.
|
|
*/
|
|
/*
|
|
* Support for the sub-volume selection dialog.
|
|
*
|
|
* This just picks a sub-volume. Image format overrides and blocks vs.
|
|
* sectors should be chosen elsewhere.
|
|
*/
|
|
#include "stdafx.h"
|
|
#include "SubVolumeDialog.h"
|
|
#include "resource.h"
|
|
|
|
|
|
BEGIN_MESSAGE_MAP(SubVolumeDialog, CDialog)
|
|
ON_LBN_DBLCLK(IDC_SUBV_LIST, OnItemDoubleClicked)
|
|
END_MESSAGE_MAP()
|
|
|
|
|
|
/*
|
|
* Set up the control.
|
|
*/
|
|
BOOL
|
|
SubVolumeDialog::OnInitDialog(void)
|
|
{
|
|
ASSERT(fpDiskFS != nil);
|
|
|
|
CListBox* pListBox = (CListBox*) GetDlgItem(IDC_SUBV_LIST);
|
|
ASSERT(pListBox != nil);
|
|
|
|
// if (pListBox->SetTabStops(12) != TRUE) {
|
|
// ASSERT(false);
|
|
// }
|
|
|
|
DiskFS::SubVolume* pSubVol = fpDiskFS->GetNextSubVolume(nil);
|
|
ASSERT(pSubVol != nil); // shouldn't be here otherwise
|
|
while (pSubVol != nil) {
|
|
pListBox->AddString(pSubVol->GetDiskFS()->GetVolumeID());
|
|
|
|
pSubVol = fpDiskFS->GetNextSubVolume(pSubVol);
|
|
}
|
|
|
|
return CDialog::OnInitDialog();
|
|
}
|
|
|
|
/*
|
|
* Do the DDX thang.
|
|
*/
|
|
void
|
|
SubVolumeDialog::DoDataExchange(CDataExchange* pDX)
|
|
{
|
|
DDX_LBIndex(pDX, IDC_SUBV_LIST, fListBoxIndex);
|
|
}
|
|
|
|
/*
|
|
* Accept a double-click as an "OK".
|
|
*/
|
|
void
|
|
SubVolumeDialog::OnItemDoubleClicked(void)
|
|
{
|
|
OnOK();
|
|
}
|