mirror of
https://github.com/fadden/ciderpress.git
synced 2024-11-23 11:33:58 +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.
71 lines
2.0 KiB
C++
71 lines
2.0 KiB
C++
/*
|
|
* CiderPress
|
|
* Copyright (C) 2007 by faddenSoft, LLC. All Rights Reserved.
|
|
* See the file LICENSE for distribution terms.
|
|
*/
|
|
/*
|
|
* Rename an archive entry.
|
|
*/
|
|
#ifndef APP_RENAMEENTRYDIALOG_H
|
|
#define APP_RENAMEENTRYDIALOG_H
|
|
|
|
#include "GenericArchive.h"
|
|
#include "resource.h"
|
|
|
|
/*
|
|
* Rename an entry in an archive (as opposed to renaming a file on the local
|
|
* hard drive).
|
|
*
|
|
* We use the GenericArchive to verify that the name is valid before we
|
|
* shut the dialog.
|
|
*
|
|
* We should probably dim the "Skip" button when there aren't any more entries
|
|
* to rename. This requires that the caller tell us when we're on the last
|
|
* one.
|
|
*/
|
|
class RenameEntryDialog : public CDialog {
|
|
public:
|
|
RenameEntryDialog(CWnd* pParentWnd = NULL) :
|
|
CDialog(IDD_RENAME_ENTRY, pParentWnd)
|
|
{
|
|
fFssep = '=';
|
|
//fNewNameLimit = 0;
|
|
fpArchive = NULL;
|
|
fpEntry = NULL;
|
|
fCanRenameFullPath = false;
|
|
fCanChangeFssep = false;
|
|
}
|
|
virtual ~RenameEntryDialog(void) {}
|
|
|
|
void SetCanRenameFullPath(bool val) { fCanRenameFullPath = val; }
|
|
void SetCanChangeFssep(bool val) { fCanChangeFssep = val; }
|
|
|
|
CString fOldName;
|
|
char fFssep;
|
|
CString fNewName;
|
|
//int fNewNameLimit; // max #of chars accepted, or 0
|
|
const GenericArchive* fpArchive;
|
|
const GenericEntry* fpEntry;
|
|
|
|
protected:
|
|
// overrides
|
|
virtual BOOL OnInitDialog(void) override;
|
|
virtual void DoDataExchange(CDataExchange* pDX) override;
|
|
|
|
afx_msg void OnSkip(void);
|
|
afx_msg BOOL OnHelpInfo(HELPINFO* lpHelpInfo);
|
|
afx_msg void OnHelp(void);
|
|
|
|
private:
|
|
//CString fOldPath; // pathname component, or empty if canRenFull
|
|
CString fOldFile; // filename component, or full name if ^^^
|
|
CString fBasePath;
|
|
CString fFssepStr;
|
|
bool fCanRenameFullPath;
|
|
bool fCanChangeFssep;
|
|
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
#endif /*APP_RENAMEENTRYDIALOG_H*/
|