summaryrefslogtreecommitdiffhomepage
path: root/Stars45/MsnNavDlg.h
diff options
context:
space:
mode:
Diffstat (limited to 'Stars45/MsnNavDlg.h')
-rw-r--r--Stars45/MsnNavDlg.h54
1 files changed, 54 insertions, 0 deletions
diff --git a/Stars45/MsnNavDlg.h b/Stars45/MsnNavDlg.h
new file mode 100644
index 0000000..869e076
--- /dev/null
+++ b/Stars45/MsnNavDlg.h
@@ -0,0 +1,54 @@
+/* Project Starshatter 4.5
+ Destroyer Studios LLC
+ Copyright © 1997-2004. All Rights Reserved.
+
+ SUBSYSTEM: Stars.exe
+ FILE: MsnNavDlg.h
+ AUTHOR: John DiCamillo
+
+
+ OVERVIEW
+ ========
+ Mission Briefing Dialog Active Window class
+*/
+
+#ifndef MsnNavDlg_h
+#define MsnNavDlg_h
+
+#include "Types.h"
+#include "MsnDlg.h"
+#include "NavDlg.h"
+#include "Bitmap.h"
+#include "Button.h"
+#include "ComboBox.h"
+#include "ListBox.h"
+#include "Font.h"
+#include "Text.h"
+
+// +--------------------------------------------------------------------+
+
+class PlanScreen;
+class Campaign;
+class Mission;
+class MissionInfo;
+
+// +--------------------------------------------------------------------+
+
+class MsnNavDlg : public NavDlg,
+ public MsnDlg
+{
+public:
+ MsnNavDlg(Screen* s, FormDef& def, PlanScreen* mgr);
+ virtual ~MsnNavDlg();
+
+ virtual void RegisterControls();
+ virtual void Show();
+ virtual void ExecFrame();
+
+ // Operations:
+ virtual void OnCommit(AWEvent* event);
+ virtual void OnCancel(AWEvent* event);
+};
+
+#endif MsnNavDlg_h
+