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/_quantum_view_8h_source.html | 190 ++++++++++++++++++++++++++ 1 file changed, 190 insertions(+) create mode 100644 Doc/doxygen/html/_quantum_view_8h_source.html (limited to 'Doc/doxygen/html/_quantum_view_8h_source.html') diff --git a/Doc/doxygen/html/_quantum_view_8h_source.html b/Doc/doxygen/html/_quantum_view_8h_source.html new file mode 100644 index 0000000..77cc9f1 --- /dev/null +++ b/Doc/doxygen/html/_quantum_view_8h_source.html @@ -0,0 +1,190 @@ + + + + + +Starshatter_Open: D:/SRC/StarshatterSVN/Stars45/QuantumView.h Source File + + + + + + + + + + + + + +
+
+ + + + + + +
+
Starshatter_Open +
+
Open source Starshatter engine
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
+
QuantumView.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: QuantumView.h
+
7  AUTHOR: John DiCamillo
+
8 
+
9 
+
10  OVERVIEW
+
11  ========
+
12  View class for Radio Communications HUD Overlay
+
13 */
+
14 
+
15 #ifndef QuantumView_h
+
16 #define QuantumView_h
+
17 
+
18 #include "Types.h"
+
19 #include "View.h"
+
20 #include "SimObject.h"
+
21 #include "Color.h"
+
22 #include "Text.h"
+
23 
+
24 // +--------------------------------------------------------------------+
+
25 
+
26 class Ship;
+
27 class RadioMessage;
+
28 class HUDView;
+
29 class Menu;
+
30 class Font;
+
31 
+
32 // +--------------------------------------------------------------------+
+
33 
+
34 class QuantumView : public View,
+
35 public SimObserver
+
36 {
+
37 public:
+
38  QuantumView(Window* c);
+
39  virtual ~QuantumView();
+
40 
+
41  // Operations:
+
42  virtual void Refresh();
+
43  virtual void OnWindowMove();
+
44  virtual void ExecFrame();
+
45 
+
46  virtual Menu* GetQuantumMenu(Ship* ship);
+
47  virtual bool IsMenuShown();
+
48  virtual void ShowMenu();
+
49  virtual void CloseMenu();
+
50 
+
51  virtual bool Update(SimObject* obj);
+
52  virtual const char* GetObserverName() const;
+
53 
+
54  static void SetColor(Color c);
+
55 
+
56  static void Initialize();
+
57  static void Close();
+
58 
+
59  static QuantumView* GetInstance() { return quantum_view; }
+
60 
+
61 protected:
+
62  int width, height;
+
63  double xcenter, ycenter;
+
64 
+ +
66  Sim* sim;
+ +
68 
+ +
70 };
+
71 
+
72 #endif QuantumView_h
+
73 
+
+
+ + + + -- cgit v1.1