Files
easy7zip/CPP/7zip/UI/Far/ProgressBox.h
Igor Pavlov fd8b1d78b4 4.48 beta
2016-05-28 00:15:52 +01:00

36 lines
753 B
C++
Executable File

// ProgressBox.h
#ifndef __PROGRESSBOX_H
#define __PROGRESSBOX_H
#include "Common/MyString.h"
#include "Common/Types.h"
class CMessageBox
{
CSysString m_Title;
CSysString m_Message;
int m_NumStrings;
int m_Width;
public:
void Init(const CSysString &title,
const CSysString &message, int numStrings, int width);
void ShowProcessMessages(const char *messages[]);
};
class CProgressBox: public CMessageBox
{
UInt64 m_Total;
UInt64 m_CompletedPrev;
UInt64 m_Step;
public:
void Init(const CSysString &title,
const CSysString &message, UInt64 step);
void ShowProcessMessage(const char *message);
void PrintPercent(UInt64 percent);
void PrintCompeteValue(UInt64 completed);
void SetTotal(UInt64 total);
};
#endif