Starshatter_Open
Open source Starshatter engine
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
CmpLoadDlg.h
Go to the documentation of this file.
1 /* Project Starshatter 4.5
2  Destroyer Studios LLC
3  Copyright © 1997-2004. All Rights Reserved.
4 
5  SUBSYSTEM: Stars.exe
6  FILE: CmpLoadDlg.h
7  AUTHOR: John DiCamillo
8 
9 
10  OVERVIEW
11  ========
12  Campaign title card and load progress dialog
13 */
14 
15 #ifndef CmpLoadDlg_h
16 #define CmpLoadDlg_h
17 
18 #include "Types.h"
19 #include "FormWindow.h"
20 
21 // +--------------------------------------------------------------------+
22 
23 class CmpLoadDlg : public FormWindow
24 {
25 public:
26  CmpLoadDlg(Screen* s, FormDef& def);
27  virtual ~CmpLoadDlg();
28 
29  // Operations:
30  virtual void ExecFrame();
31  virtual void MoveTo(const Rect& r);
32  virtual void RegisterControls();
33  virtual void Show();
34 
35  virtual bool IsDone();
36 
37 protected:
42  DWORD show_time;
43 };
44 
45 #endif CmpLoadDlg_h
46