summaryrefslogtreecommitdiffhomepage
path: root/Stars45/LoadDlg.h
diff options
context:
space:
mode:
Diffstat (limited to 'Stars45/LoadDlg.h')
-rw-r--r--Stars45/LoadDlg.h41
1 files changed, 41 insertions, 0 deletions
diff --git a/Stars45/LoadDlg.h b/Stars45/LoadDlg.h
new file mode 100644
index 0000000..c33bb8d
--- /dev/null
+++ b/Stars45/LoadDlg.h
@@ -0,0 +1,41 @@
+/* Project Starshatter 4.5
+ Destroyer Studios LLC
+ Copyright © 1997-2004. All Rights Reserved.
+
+ SUBSYSTEM: Stars.exe
+ FILE: LoadDlg.h
+ AUTHOR: John DiCamillo
+
+
+ OVERVIEW
+ ========
+ Loading progress dialog box
+*/
+
+#ifndef LoadDlg_h
+#define LoadDlg_h
+
+#include "Types.h"
+#include "FormWindow.h"
+
+// +--------------------------------------------------------------------+
+
+class LoadDlg : public FormWindow
+{
+public:
+ LoadDlg(Screen* s, FormDef& def);
+ virtual ~LoadDlg();
+
+ virtual void RegisterControls();
+
+ // Operations:
+ virtual void ExecFrame();
+
+protected:
+ ActiveWindow* title;
+ ActiveWindow* activity;
+ Slider* progress;
+};
+
+#endif LoadDlg_h
+