summaryrefslogtreecommitdiffhomepage
path: root/Stars45/ModDlg.h
diff options
context:
space:
mode:
authorFWoltermann@gmail.com <FWoltermann@gmail.com@076cb2c4-205e-83fd-5cf3-1be9aa105544>2011-12-09 19:00:23 +0000
committerFWoltermann@gmail.com <FWoltermann@gmail.com@076cb2c4-205e-83fd-5cf3-1be9aa105544>2011-12-09 19:00:23 +0000
commit69209c38968c6f4066a772e0a51a2928749217de (patch)
treeb325c535eff3dd27b811ca348e63ead8f86ff344 /Stars45/ModDlg.h
parentfd51dc1bbbcba496fa0d57963a5727a36e381118 (diff)
downloadstarshatter-69209c38968c6f4066a772e0a51a2928749217de.zip
starshatter-69209c38968c6f4066a772e0a51a2928749217de.tar.gz
starshatter-69209c38968c6f4066a772e0a51a2928749217de.tar.bz2
Re-indenting the code to use standard tabs. Yes, I know this is pretty pointless, but who cares?
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