From b2805409566af00bc15639494f5a186fbd2f16e6 Mon Sep 17 00:00:00 2001 From: "FWoltermann@gmail.com" Date: Fri, 9 Dec 2011 20:15:42 +0000 Subject: More indenting changes --- nGenEx/Screen.h | 54 +++++++++++++++++++++++++++--------------------------- 1 file changed, 27 insertions(+), 27 deletions(-) (limited to 'nGenEx/Screen.h') diff --git a/nGenEx/Screen.h b/nGenEx/Screen.h index 39df897..f327a50 100644 --- a/nGenEx/Screen.h +++ b/nGenEx/Screen.h @@ -1,15 +1,15 @@ /* Project nGenEx - Destroyer Studios LLC - Copyright © 1997-2004. All Rights Reserved. + Destroyer Studios LLC + Copyright © 1997-2004. All Rights Reserved. - SUBSYSTEM: nGenEx.lib - FILE: Screen.h - AUTHOR: John DiCamillo + SUBSYSTEM: nGenEx.lib + FILE: Screen.h + AUTHOR: John DiCamillo - OVERVIEW - ======== - General Screen class - maintains and displays a list of windows + OVERVIEW + ======== + General Screen class - maintains and displays a list of windows */ #ifndef Screen_h @@ -30,35 +30,35 @@ struct Rect; class Screen { public: - static const char* TYPENAME() { return "Screen"; } + static const char* TYPENAME() { return "Screen"; } - Screen(Video* v); - virtual ~Screen(); + Screen(Video* v); + virtual ~Screen(); - virtual bool SetBackgroundColor(Color c); + virtual bool SetBackgroundColor(Color c); - virtual bool Resize(int w, int h); - virtual bool Refresh(); - virtual bool AddWindow(Window* c); - virtual bool DelWindow(Window* c); + virtual bool Resize(int w, int h); + virtual bool Refresh(); + virtual bool AddWindow(Window* c); + virtual bool DelWindow(Window* c); - int Width() const { return width; } - int Height() const { return height; } + int Width() const { return width; } + int Height() const { return height; } - virtual void ClearAllFrames(bool clear_all); - virtual void ClearNextFrames(int num_frames); + virtual void ClearAllFrames(bool clear_all); + virtual void ClearNextFrames(int num_frames); - virtual Video* GetVideo() const { return video; } + virtual Video* GetVideo() const { return video; } protected: - int width; - int height; - int clear; - int closed; + int width; + int height; + int clear; + int closed; - Video* video; + Video* video; - List window_list; + List window_list; }; #endif Screen_h -- cgit v1.1