mirror of
https://github.com/fadden/ciderpress.git
synced 2024-10-31 16:04:54 +00:00
d8223dbcfd
This moves method comments from the .cpp file to the .h file, where users of the methods can find them. This also makes it possible for the IDE to show the comments when you mouse-hover over the method name, though Visual Studio is a bit weak in this regard. Also, added "override" keywords on overridden methods. Reasonably current versions of popular compilers seem to support this. Also, don't have the return type on a separate line in the .cpp file. The motivation for the practice -- quickly finding a method definition with "^name" -- is less useful in C++ than C, and modern IDEs provide more convenient ways to do the same thing. Also, do some more conversion from unsigned types to uintXX_t. This commit is primarily for the "app" directory.
55 lines
1.3 KiB
C++
55 lines
1.3 KiB
C++
/*
|
|
* CiderPress
|
|
* Copyright (C) 2007 by faddenSoft, LLC. All Rights Reserved.
|
|
* See the file LICENSE for distribution terms.
|
|
*/
|
|
/*
|
|
* Support for PasteSpecialDialog.
|
|
*/
|
|
#include "StdAfx.h"
|
|
#include "PasteSpecialDialog.h"
|
|
|
|
#if 0
|
|
BEGIN_MESSAGE_MAP(PasteSpecialDialog, CDialog)
|
|
END_MESSAGE_MAP()
|
|
|
|
BOOL
|
|
PasteSpecialDialog::OnInitDialog(void)
|
|
{
|
|
CString countStr;
|
|
CWnd* pWnd;
|
|
|
|
countStr.Format(IDS_PASTE_SPECIAL_COUNT, 3);
|
|
pWnd = GetDlgItem(IDC_PASTE_SPECIAL_COUNT);
|
|
pWnd->SetWindowText(countStr);
|
|
|
|
return CDialog::OnInitDialog();
|
|
}
|
|
#endif
|
|
|
|
void PasteSpecialDialog::DoDataExchange(CDataExchange* pDX)
|
|
{
|
|
/*
|
|
* Initialize radio control with value from fPasteHow.
|
|
*/
|
|
|
|
if (!pDX->m_bSaveAndValidate) {
|
|
UINT ctrlId;
|
|
|
|
if (fPasteHow == kPastePaths)
|
|
ctrlId = IDC_PASTE_SPECIAL_PATHS;
|
|
else
|
|
ctrlId = IDC_PASTE_SPECIAL_NOPATHS;
|
|
|
|
CButton* pButton = (CButton*) GetDlgItem(ctrlId);
|
|
pButton->SetCheck(BST_CHECKED);
|
|
} else {
|
|
CButton* pButton = (CButton*) GetDlgItem(IDC_PASTE_SPECIAL_PATHS);
|
|
|
|
if (pButton->GetCheck() == BST_CHECKED)
|
|
fPasteHow = kPastePaths;
|
|
else
|
|
fPasteHow = kPasteNoPaths;
|
|
}
|
|
}
|