Counter Strike : Global Offensive Source Code
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
864 B

  1. //====== Copyright � 1996-2005, Valve Corporation, All rights reserved. =======
  2. //
  3. // Purpose:
  4. //
  5. //=============================================================================
  6. #ifndef CONSOLEPAGE_H
  7. #define CONSOLEPAGE_H
  8. #ifdef _WIN32
  9. #pragma once
  10. #endif
  11. #include "vgui_controls/consoledialog.h"
  12. //-----------------------------------------------------------------------------
  13. // Purpose: Game/dev console dialog
  14. //-----------------------------------------------------------------------------
  15. class CConsolePage : public vgui::CConsolePanel
  16. {
  17. DECLARE_CLASS_SIMPLE( CConsolePage, vgui::CConsolePanel );
  18. public:
  19. CConsolePage( Panel *parent, bool bStatusVersion );
  20. private:
  21. MESSAGE_FUNC_CHARPTR( OnCommandSubmitted, "CommandSubmitted", command );
  22. // vgui overrides
  23. virtual void ApplySchemeSettings( vgui::IScheme *pScheme );
  24. };
  25. #endif // CONSOLEPAGE_H