summaryrefslogtreecommitdiffhomepage
path: root/Stars45/ModDlg.h
diff options
context:
space:
mode:
Diffstat (limited to 'Stars45/ModDlg.h')
-rw-r--r--Stars45/ModDlg.h94
1 files changed, 47 insertions, 47 deletions
diff --git a/Stars45/ModDlg.h b/Stars45/ModDlg.h
index b5b93b3..d9eb863 100644
--- a/Stars45/ModDlg.h
+++ b/Stars45/ModDlg.h
@@ -1,15 +1,15 @@
/* Project Starshatter 4.5
- Destroyer Studios LLC
- Copyright © 1997-2004. All Rights Reserved.
+ Destroyer Studios LLC
+ Copyright © 1997-2004. All Rights Reserved.
- SUBSYSTEM: Stars.exe
- FILE: ModDlg.h
- AUTHOR: John DiCamillo
+ SUBSYSTEM: Stars.exe
+ FILE: ModDlg.h
+ AUTHOR: John DiCamillo
- OVERVIEW
- ========
- Mod Config Dialog Active Window class
+ OVERVIEW
+ ========
+ Mod Config Dialog Active Window class
*/
#ifndef ModDlg_h
@@ -35,59 +35,59 @@ class ModConfig;
class ModDlg : public FormWindow
{
public:
- ModDlg(Screen* s, FormDef& def, BaseScreen* mgr);
- virtual ~ModDlg();
+ ModDlg(Screen* s, FormDef& def, BaseScreen* mgr);
+ virtual ~ModDlg();
- virtual void RegisterControls();
- virtual void Show();
- virtual void ExecFrame();
+ virtual void RegisterControls();
+ virtual void Show();
+ virtual void ExecFrame();
- // Operations:
+ // Operations:
- virtual void OnIncrease(AWEvent* event);
- virtual void OnDecrease(AWEvent* event);
+ virtual void OnIncrease(AWEvent* event);
+ virtual void OnDecrease(AWEvent* event);
- virtual void OnSelectEnabled(AWEvent* event);
- virtual void OnSelectDisabled(AWEvent* event);
+ virtual void OnSelectEnabled(AWEvent* event);
+ virtual void OnSelectDisabled(AWEvent* event);
- virtual void OnEnable(AWEvent* event);
- virtual void OnDisable(AWEvent* event);
+ virtual void OnEnable(AWEvent* event);
+ virtual void OnDisable(AWEvent* event);
- virtual void OnAccept(AWEvent* event);
- virtual void OnCancel(AWEvent* event);
+ virtual void OnAccept(AWEvent* event);
+ virtual void OnCancel(AWEvent* event);
- virtual void Apply();
- virtual void Cancel();
+ virtual void Apply();
+ virtual void Cancel();
+
+ virtual void OnAudio(AWEvent* event);
+ virtual void OnVideo(AWEvent* event);
+ virtual void OnOptions(AWEvent* event);
+ virtual void OnControls(AWEvent* event);
+ virtual void OnMod(AWEvent* event);
- virtual void OnAudio(AWEvent* event);
- virtual void OnVideo(AWEvent* event);
- virtual void OnOptions(AWEvent* event);
- virtual void OnControls(AWEvent* event);
- virtual void OnMod(AWEvent* event);
-
protected:
- void UpdateLists();
+ void UpdateLists();
- BaseScreen* manager;
+ BaseScreen* manager;
- ListBox* lst_disabled;
- ListBox* lst_enabled;
+ ListBox* lst_disabled;
+ ListBox* lst_enabled;
- Button* btn_accept;
- Button* btn_cancel;
- Button* btn_enable;
- Button* btn_disable;
- Button* btn_increase;
- Button* btn_decrease;
+ Button* btn_accept;
+ Button* btn_cancel;
+ Button* btn_enable;
+ Button* btn_disable;
+ Button* btn_increase;
+ Button* btn_decrease;
- Button* aud_btn;
- Button* vid_btn;
- Button* opt_btn;
- Button* ctl_btn;
- Button* mod_btn;
+ Button* aud_btn;
+ Button* vid_btn;
+ Button* opt_btn;
+ Button* ctl_btn;
+ Button* mod_btn;
- ModConfig* config;
- bool changed;
+ ModConfig* config;
+ bool changed;
};
#endif ModDlg_h