mirror of
https://github.com/kevinbentley/Descent3.git
synced 2026-04-04 20:00:04 -04:00
57 lines
1.0 KiB
C++
57 lines
1.0 KiB
C++
// D3Splash.h : header file
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CD3Splash dialog
|
|
|
|
class CD3Splash : public CDialog
|
|
{
|
|
// Construction
|
|
public:
|
|
CD3Splash(CWnd* pParent = NULL); // standard constructor
|
|
|
|
BOOL Create();
|
|
|
|
// Dialog Data
|
|
//{{AFX_DATA(CD3Splash)
|
|
enum { IDD = IDD_D3SPLASH };
|
|
// NOTE: the ClassWizard will add data members here
|
|
//}}AFX_DATA
|
|
|
|
|
|
// Overrides
|
|
// ClassWizard generated virtual function overrides
|
|
//{{AFX_VIRTUAL(CD3Splash)
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
|
virtual void PostNcDestroy();
|
|
//}}AFX_VIRTUAL
|
|
|
|
// Operations
|
|
public:
|
|
void PutText(char *buf);
|
|
|
|
private:
|
|
char m_TextLines[3][40];
|
|
int m_CurLine;
|
|
|
|
// Implementation
|
|
protected:
|
|
virtual void OnCancel();
|
|
virtual void OnOK();
|
|
|
|
// Generated message map functions
|
|
//{{AFX_MSG(CD3Splash)
|
|
afx_msg void OnPaint();
|
|
afx_msg void OnDestroy();
|
|
//}}AFX_MSG
|
|
DECLARE_MESSAGE_MAP()
|
|
|
|
private:
|
|
CWnd *m_ParentWnd;
|
|
CBitmap m_SplashBmp;
|
|
};
|
|
|
|
|
|
extern CD3Splash *D3_splash_screen;
|