From 8898ad9b25fca6afe2374d293a981db02a83d7e9 Mon Sep 17 00:00:00 2001 From: "FWoltermann@gmail.com" Date: Thu, 31 May 2012 14:46:27 +0000 Subject: Committing the documentation to svn to have it accessible online --- Doc/doxygen/html/_flt_dlg_8h_source.html | 198 +++++++++++++++++++++++++++++++ 1 file changed, 198 insertions(+) create mode 100644 Doc/doxygen/html/_flt_dlg_8h_source.html (limited to 'Doc/doxygen/html/_flt_dlg_8h_source.html') diff --git a/Doc/doxygen/html/_flt_dlg_8h_source.html b/Doc/doxygen/html/_flt_dlg_8h_source.html new file mode 100644 index 0000000..9c80dff --- /dev/null +++ b/Doc/doxygen/html/_flt_dlg_8h_source.html @@ -0,0 +1,198 @@ + + + + + +Starshatter_Open: D:/SRC/StarshatterSVN/Stars45/FltDlg.h Source File + + + + + + + + + + + + + +
+
+ + + + + + +
+
Starshatter_Open +
+
Open source Starshatter engine
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
+
FltDlg.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: FltDlg.h
+
7  AUTHOR: John DiCamillo
+
8 
+
9 
+
10  OVERVIEW
+
11  ========
+
12  Flight Operations Active Window class
+
13 */
+
14 
+
15 #ifndef FltDlg_h
+
16 #define FltDlg_h
+
17 
+
18 #include "Types.h"
+
19 #include "FormWindow.h"
+
20 
+
21 // +--------------------------------------------------------------------+
+
22 
+
23 class FlightPlanner;
+
24 class GameScreen;
+
25 class Ship;
+
26 
+
27 // +--------------------------------------------------------------------+
+
28 
+
29 class FltDlg : public FormWindow
+
30 {
+
31 public:
+
32  FltDlg(Screen* s, FormDef& def, GameScreen* mgr);
+
33  virtual ~FltDlg();
+
34 
+
35  virtual void RegisterControls();
+
36 
+
37  // Operations:
+
38  virtual void Show();
+
39  virtual void Hide();
+
40 
+
41  virtual void OnFilter(AWEvent* event);
+
42  virtual void OnPackage(AWEvent* event);
+
43  virtual void OnAlert(AWEvent* event);
+
44  virtual void OnLaunch(AWEvent* event);
+
45  virtual void OnStandDown(AWEvent* event);
+
46  virtual void OnRecall(AWEvent* event);
+
47  virtual void OnClose(AWEvent* event);
+
48  virtual void OnMissionType(AWEvent* event);
+
49 
+
50  virtual void ExecFrame();
+
51  void SetShip(Ship* s);
+
52  void UpdateSelection();
+
53  void UpdateObjective();
+
54 
+
55 protected:
+ +
57 
+ + +
60 
+ + + + + + +
67 
+ + +
70 
+ + +
73 
+ + +
76 
+ +
78 };
+
79 
+
80 #endif FltDlg_h
+
81 
+
+
+ + + + -- cgit v1.1