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.
50 lines
1.3 KiB
C++
50 lines
1.3 KiB
C++
/*
|
|
* CiderPress
|
|
* Copyright (C) 2007 by faddenSoft, LLC. All Rights Reserved.
|
|
* See the file LICENSE for distribution terms.
|
|
*/
|
|
/*
|
|
* Options for recompressing files. This is derived from the "use selection"
|
|
* dialog.
|
|
*/
|
|
#ifndef APP_RECOMPESSOPTIONSDIALOG_H
|
|
#define APP_RECOMPESSOPTIONSDIALOG_H
|
|
|
|
#include "UseSelectionDialog.h"
|
|
#include "../nufxlib/NufxLib.h"
|
|
#include "resource.h"
|
|
|
|
/*
|
|
* Straightforward confirmation plus a drop-list.
|
|
*/
|
|
class RecompressOptionsDialog : public UseSelectionDialog {
|
|
public:
|
|
RecompressOptionsDialog(int selCount, CWnd* pParentWnd = NULL) :
|
|
UseSelectionDialog(selCount, pParentWnd, IDD_RECOMPRESS_OPTS)
|
|
{
|
|
fCompressionType = 0;
|
|
}
|
|
virtual ~RecompressOptionsDialog(void) {}
|
|
|
|
// maps directly to NuThreadFormat enum
|
|
int fCompressionType;
|
|
|
|
private:
|
|
virtual BOOL OnInitDialog(void) override;
|
|
virtual void DoDataExchange(CDataExchange* pDX) override;
|
|
|
|
/*
|
|
* Load strings into the combo box. Only load formats supported by the
|
|
* NufxLib DLL.
|
|
*
|
|
* Returns the combo box index for the format matching "fmt".
|
|
*/
|
|
int LoadComboBox(NuThreadFormat fmt);
|
|
|
|
int fCompressionIdx; // drop list index
|
|
|
|
//DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
#endif /*APP_RECOMPESSOPTIONSDIALOG_H*/
|