mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-05 05:07:48 +00:00
36 lines
809 B
C++
36 lines
809 B
C++
#pragma once
|
|
#include "ProgressDialog.h"
|
|
|
|
class Bootstrapper;
|
|
|
|
class CStudioProgressDialog : public CProgressDialog
|
|
{
|
|
HBITMAP bmpLaunchStudio;
|
|
HBITMAP bmpLaunchStudioHover;
|
|
HBITMAP bmpDevLink;
|
|
HBITMAP bmpDevLinkHover;
|
|
|
|
HWND hWndDeveloperPageText;
|
|
HWND hInstallSuccess;
|
|
HWND hWndBtnDevLink;
|
|
HWND hWndBtnLaunchStudio;
|
|
|
|
Bootstrapper* bs;
|
|
|
|
public:
|
|
CStudioProgressDialog(HINSTANCE hInstance, Bootstrapper* bootstrapper);
|
|
virtual ~CStudioProgressDialog(void);
|
|
|
|
HBITMAP getLaunchStudioBitmap(bool hover);
|
|
HBITMAP getDevLinkBitmap(bool hover);
|
|
HWND getHWndDevLink() { return hWndBtnDevLink; }
|
|
HWND getHWndBtnLaunchStudio() { return hWndBtnLaunchStudio; }
|
|
|
|
void LaunchStudio();
|
|
void OpenDevelopPage();
|
|
|
|
// CProgressDialog
|
|
/*implement*/ void ShowSuccessPrompt();
|
|
/*implement*/ void InitDialog();
|
|
};
|