mirror of
https://github.com/fadden/ciderpress.git
synced 2024-11-27 08:49:20 +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.
52 lines
1.3 KiB
C++
52 lines
1.3 KiB
C++
/*
|
|
* CiderPress
|
|
* Copyright (C) 2007 by faddenSoft, LLC. All Rights Reserved.
|
|
* See the file LICENSE for distribution terms.
|
|
*/
|
|
/*
|
|
* Allow the user to create a new folder.
|
|
*/
|
|
#ifndef APP_NEWFOLDERDIALOG_H
|
|
#define APP_NEWFOLDERDIALOG_H
|
|
|
|
#include "resource.h"
|
|
|
|
/*
|
|
* Create a new folder in an existing location.
|
|
*
|
|
* Expects, but does not verify, that "fCurrentFolder" is set to a valid
|
|
* path before DoModal is called.
|
|
*/
|
|
class NewFolderDialog : public CDialog {
|
|
public:
|
|
NewFolderDialog(CWnd* pParent = NULL) : CDialog(IDD_NEWFOLDER, pParent) {
|
|
fCurrentFolder = L"";
|
|
fNewFolder = L"";
|
|
fFolderCreated = false;
|
|
}
|
|
virtual ~NewFolderDialog(void) {}
|
|
|
|
bool GetFolderCreated(void) const { return fFolderCreated; }
|
|
|
|
// set to CWD before calling DoModal
|
|
CString fCurrentFolder;
|
|
|
|
// filename (NOT pathname) of new folder (DDXed in edit ctrl)
|
|
CString fNewFolder;
|
|
|
|
// full pathname of new folder, valid if fFolderCreated is true
|
|
CString fNewFullPath;
|
|
|
|
protected:
|
|
void DoDataExchange(CDataExchange* pDX) override;
|
|
|
|
afx_msg BOOL OnHelpInfo(HELPINFO* lpHelpInfo);
|
|
|
|
// on exit, set to "true" if we created the folder in "fNewFolder"
|
|
bool fFolderCreated;
|
|
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
#endif /*APP_NEWFOLDERDIALOG_H*/
|