From 69209c38968c6f4066a772e0a51a2928749217de Mon Sep 17 00:00:00 2001 From: "FWoltermann@gmail.com" Date: Fri, 9 Dec 2011 19:00:23 +0000 Subject: Re-indenting the code to use standard tabs. Yes, I know this is pretty pointless, but who cares? --- Stars45/NavDlg.h | 168 +++++++++++++++++++++++++++---------------------------- 1 file changed, 84 insertions(+), 84 deletions(-) (limited to 'Stars45/NavDlg.h') diff --git a/Stars45/NavDlg.h b/Stars45/NavDlg.h index 0c51b5c..689859e 100644 --- a/Stars45/NavDlg.h +++ b/Stars45/NavDlg.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: NavDlg.h - AUTHOR: John DiCamillo + SUBSYSTEM: Stars.exe + FILE: NavDlg.h + AUTHOR: John DiCamillo - OVERVIEW - ======== - Navigation Active Window class + OVERVIEW + ======== + Navigation Active Window class */ #ifndef NavDlg_h @@ -35,84 +35,84 @@ class Mission; class NavDlg : public FormWindow { public: - NavDlg(Screen* s, FormDef& def, BaseScreen* mgr); - virtual ~NavDlg(); - - virtual void RegisterControls(); - - // Operations: - virtual void OnView(AWEvent* event); - virtual void OnFilter(AWEvent* event); - virtual void OnSelect(AWEvent* event); - virtual void OnCommit(AWEvent* event); - virtual void OnCancel(AWEvent* event); - virtual void OnEngage(AWEvent* event); - virtual void OnMapDown(AWEvent* event); - virtual void OnMapMove(AWEvent* event); - virtual void OnMapClick(AWEvent* event); - virtual void OnClose(AWEvent* event); - - virtual void ExecFrame(); - StarSystem* GetSystem() const { return star_system; } - void SetSystem(StarSystem* s); - Mission* GetMission() const { return mission; } - void SetMission(Mission* m); - Ship* GetShip() const { return ship; } - void SetShip(Ship* s); - - bool GetEditorMode() const { return editor; } - void SetEditorMode(bool b); - - void UseViewMode(int mode); - void UseFilter(int index); - void SelectObject(int index); - void UpdateSelection(); - void UpdateLists(); - void CoordinateSelection(); - - void SelectStar(Orbital* star); - void SelectPlanet(Orbital* planet); - void SelectRegion(OrbitalRegion* rgn); - - enum NAV_EDIT_MODE { NAV_EDIT_NONE = 0, - NAV_EDIT_ADD = 1, - NAV_EDIT_DEL = 2, - NAV_EDIT_MOVE = 3 }; - - void SetNavEditMode(int mode); - int GetNavEditMode(); + NavDlg(Screen* s, FormDef& def, BaseScreen* mgr); + virtual ~NavDlg(); + + virtual void RegisterControls(); + + // Operations: + virtual void OnView(AWEvent* event); + virtual void OnFilter(AWEvent* event); + virtual void OnSelect(AWEvent* event); + virtual void OnCommit(AWEvent* event); + virtual void OnCancel(AWEvent* event); + virtual void OnEngage(AWEvent* event); + virtual void OnMapDown(AWEvent* event); + virtual void OnMapMove(AWEvent* event); + virtual void OnMapClick(AWEvent* event); + virtual void OnClose(AWEvent* event); + + virtual void ExecFrame(); + StarSystem* GetSystem() const { return star_system; } + void SetSystem(StarSystem* s); + Mission* GetMission() const { return mission; } + void SetMission(Mission* m); + Ship* GetShip() const { return ship; } + void SetShip(Ship* s); + + bool GetEditorMode() const { return editor; } + void SetEditorMode(bool b); + + void UseViewMode(int mode); + void UseFilter(int index); + void SelectObject(int index); + void UpdateSelection(); + void UpdateLists(); + void CoordinateSelection(); + + void SelectStar(Orbital* star); + void SelectPlanet(Orbital* planet); + void SelectRegion(OrbitalRegion* rgn); + + enum NAV_EDIT_MODE { NAV_EDIT_NONE = 0, + NAV_EDIT_ADD = 1, + NAV_EDIT_DEL = 2, + NAV_EDIT_MOVE = 3 }; + + void SetNavEditMode(int mode); + int GetNavEditMode(); protected: - Button* view_btn[3]; - Button* filter_btn[6]; - Button* commit_btn; - Button* zoom_in_btn; - Button* zoom_out_btn; - Button* close_btn; - - MapView* star_map; - ActiveWindow* map_win; - ActiveWindow* loc_labels; - ActiveWindow* dst_labels; - ActiveWindow* loc_data; - ActiveWindow* dst_data; - - ListBox* seln_list; - ListBox* info_list; - - BaseScreen* manager; - int seln_mode; - int nav_edit_mode; - - StarSystem* star_system; - List stars; - List planets; - List regions; - List contacts; - - Ship* ship; - Mission* mission; - bool editor; + Button* view_btn[3]; + Button* filter_btn[6]; + Button* commit_btn; + Button* zoom_in_btn; + Button* zoom_out_btn; + Button* close_btn; + + MapView* star_map; + ActiveWindow* map_win; + ActiveWindow* loc_labels; + ActiveWindow* dst_labels; + ActiveWindow* loc_data; + ActiveWindow* dst_data; + + ListBox* seln_list; + ListBox* info_list; + + BaseScreen* manager; + int seln_mode; + int nav_edit_mode; + + StarSystem* star_system; + List stars; + List planets; + List regions; + List contacts; + + Ship* ship; + Mission* mission; + bool editor; }; #endif NavDlg_h -- cgit v1.1