1
0
mirror of https://github.com/azure-rtos/guix.git synced 2025-01-28 07:03:11 +08:00
guix/guix_studio/splash_screen.h

32 lines
661 B
C++

#ifndef _SPLASH_SCREEN_
#define _SPLASH_SCREEN_
#include <afxcview.h>
#define DATE_STRING_SIZE 128
class splash_screen : public CDialog
{
public:
splash_screen(BOOL AutoClose);
virtual BOOL PreCreateWindow(CREATESTRUCT &cs);
// Generated message map functions
protected:
char date_built[DATE_STRING_SIZE];
CButton CloseButton;
void ScreenReaderMessage();
afx_msg void OnPaint();
afx_msg void OnTimer(UINT_PTR nIdEvent);
afx_msg void OnDoneClicked();
afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
DECLARE_MESSAGE_MAP()
BOOL mAutoClose;
};
#endif