mirror of
https://github.com/fadden/ciderpress.git
synced 2024-11-22 20:31:08 +00:00
adaeb2c6eb
Added explicit casts and class initializers. The problems were identified by the VS2019 compiler.
80 lines
2.0 KiB
C++
80 lines
2.0 KiB
C++
/*
|
|
* CiderPress
|
|
* Copyright (C) 2007 by faddenSoft, LLC. All Rights Reserved.
|
|
* See the file LICENSE for distribution terms.
|
|
*/
|
|
/*
|
|
* Show the progress of an action like "add" or "extract".
|
|
*/
|
|
#ifndef APP_ACTIONPROGRESSDIALOG_H
|
|
#define APP_ACTIONPROGRESSDIALOG_H
|
|
|
|
#include "resource.h"
|
|
|
|
/*
|
|
* Modeless dialog; must be allocated on the heap.
|
|
*/
|
|
class ActionProgressDialog : public ProgressCancelDialog {
|
|
public:
|
|
typedef enum {
|
|
kActionUnknown = 0,
|
|
kActionAdd,
|
|
kActionAddDisk,
|
|
kActionExtract,
|
|
kActionDelete,
|
|
kActionTest,
|
|
kActionRecompress,
|
|
kActionConvDisk,
|
|
kActionConvFile,
|
|
} Action;
|
|
|
|
ActionProgressDialog(void) : fAction(kActionUnknown), fCancel(false) { }
|
|
virtual ~ActionProgressDialog(void) { }
|
|
|
|
BOOL Create(Action action, CWnd* pParentWnd = NULL) {
|
|
fAction = action;
|
|
pParentWnd->EnableWindow(FALSE);
|
|
return ProgressCancelDialog::Create(&fCancel, IDD_ACTION_PROGRESS,
|
|
IDC_PROG_PROGRESS, pParentWnd);
|
|
}
|
|
void Cleanup(CWnd* pParentWnd) {
|
|
pParentWnd->EnableWindow(TRUE);
|
|
DestroyWindow();
|
|
}
|
|
|
|
/*
|
|
* Set the name of the file as it appears in the archive.
|
|
*/
|
|
void SetArcName(const WCHAR* str);
|
|
|
|
/*
|
|
* Set the name of the file as it appears under Windows.
|
|
*/
|
|
void SetFileName(const WCHAR* str);
|
|
|
|
/*
|
|
* Get the name of the file as it appears under Windows.
|
|
*/
|
|
const CString GetFileName(void);
|
|
|
|
/*
|
|
* Update the progress meter.
|
|
*
|
|
* We take a percentage, but the underlying control uses 1000ths.
|
|
*/
|
|
int SetProgress(int perc);
|
|
|
|
private:
|
|
/*
|
|
* Initialize the static text controls to say something reasonable.
|
|
*/
|
|
virtual BOOL OnInitDialog(void) override;
|
|
|
|
Action fAction;
|
|
bool fCancel;
|
|
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
#endif /*APP_ACTIONPROGRESSDIALOG_H*/
|