mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-04 20:57:49 +00:00
27 lines
423 B
C++
27 lines
423 B
C++
#pragma once
|
|
|
|
#include "ProgressDialog.h"
|
|
|
|
class Bootstrapper;
|
|
|
|
class CClientProgressDialog : public CProgressDialog
|
|
{
|
|
Bootstrapper* bs;
|
|
|
|
HWND hInstallSuccess;
|
|
HWND hWndBntOk;
|
|
|
|
HBITMAP bmpOk;
|
|
HBITMAP bmpOkOn;
|
|
|
|
public:
|
|
CClientProgressDialog(HINSTANCE hInstance, Bootstrapper* bootstrapper);
|
|
virtual ~CClientProgressDialog(void);
|
|
|
|
void InitDialog();
|
|
void ShowSuccessPrompt();
|
|
|
|
HBITMAP getOkBitmap(bool hover);
|
|
|
|
};
|