Starshatter_Open
Open source Starshatter engine
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
CmdIntelDlg.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: CmdIntelDlg.h
7  AUTHOR: John DiCamillo
8 
9 
10  OVERVIEW
11  ========
12  Operational Command Dialog (Intel/Newsfeed Tab)
13 */
14 
15 #ifndef CmdIntelDlg_h
16 #define CmdIntelDlg_h
17 
18 #include "Types.h"
19 #include "FormWindow.h"
20 #include "CmdDlg.h"
21 #include "CameraView.h"
22 #include "DisplayView.h"
23 
24 #include "Bitmap.h"
25 #include "Button.h"
26 #include "ImageBox.h"
27 #include "ListBox.h"
28 #include "RichTextBox.h"
29 #include "Font.h"
30 #include "Text.h"
31 
32 // +--------------------------------------------------------------------+
33 
34 class CmdIntelDlg : public FormWindow,
35 public CmdDlg
36 {
37 public:
38  CmdIntelDlg(Screen* s, FormDef& def, CmpnScreen* mgr);
39  virtual ~CmdIntelDlg();
40 
41  virtual void RegisterControls();
42  virtual void Show();
43  virtual void ExecFrame();
44 
45  // Operations:
46  virtual void OnMode(AWEvent* event);
47  virtual void OnSave(AWEvent* event);
48  virtual void OnExit(AWEvent* event);
49  virtual void OnNews(AWEvent* event);
50  virtual void OnPlay(AWEvent* event);
51 
52 protected:
53  virtual void ShowMovie();
54  virtual void HideMovie();
55 
57 
65 
67 
70  double update_time;
73 };
74 
75 #endif CmdIntelDlg_h
76