Files
Descent3/editor/D3Splash.h
2024-04-19 14:58:24 -06:00

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;