Changeset 149 for cafu/trunk/Ca3DE/AppCafu.hpp
- Timestamp:
- 09/03/10 00:25:58 (21 months ago)
- Files:
-
- 1 modified
-
cafu/trunk/Ca3DE/AppCafu.hpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
cafu/trunk/Ca3DE/AppCafu.hpp
r136 r149 39 39 40 40 41 namespace cf { class CompositeConsoleT; } 42 namespace cf { class ConsoleFileT; } 43 namespace cf { class ConsoleStringBufferT; } 41 44 class MainFrameT; 42 45 … … 48 51 49 52 AppCafuT(); 53 ~AppCafuT(); 54 55 /// Returns the composite console that is also available via the global Console pointer. 56 cf::CompositeConsoleT& GetConComposite() const; 57 58 /// Returns the console that buffers all output. 59 cf::ConsoleStringBufferT& GetConBuffer() const { return *m_ConBuffer; } 60 61 // /// Returns the console that logs all output into a file (can be NULL if not used). 62 // cf::ConsoleFileT& GetConFile() const { return *m_ConFile; } 50 63 51 64 /// Returns whether we successfully set a custom video mode (screen resolution) during initialization. … … 68 81 bool OnCmdLineParsed(wxCmdLineParser& Parser); 69 82 70 bool m_IsCustomVideoMode; ///< Whether we successfully set a custom video mode (screen resolution) during initialization. 71 wxVideoMode m_CurrentMode; ///< The video mode that we're currently using. 72 MainFrameT* m_MainFrame; ///< The Cafu application main frame. 83 cf::ConsoleStringBufferT* m_ConBuffer; ///< The console that buffers all output. 84 cf::ConsoleFileT* m_ConFile; ///< The console that logs all output into a file (can be NULL if not used). 85 bool m_IsCustomVideoMode; ///< Whether we successfully set a custom video mode (screen resolution) during initialization. 86 wxVideoMode m_CurrentMode; ///< The video mode that we're currently using. 87 MainFrameT* m_MainFrame; ///< The Cafu application main frame. 73 88 }; 74 89
