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.
49 lines
997 B
49 lines
997 B
//========= Copyright Valve Corporation, All rights reserved. ============// |
|
// |
|
// Purpose: |
|
// |
|
// $NoKeywords: $ |
|
//=============================================================================// |
|
|
|
#ifndef DODVIEWPORT_H |
|
#define DODVIEWPORT_H |
|
|
|
#include "baseviewport.h" |
|
|
|
using namespace vgui; |
|
|
|
namespace vgui |
|
{ |
|
class Panel; |
|
} |
|
|
|
class CDODTeamMenu; |
|
class CDODClassMenu_Allies; |
|
class CDODClassMenu_Axis; |
|
class CDODSpectatorGUI; |
|
class CDODClientScoreBoardDialog; |
|
class CDODMenuBackground; |
|
|
|
|
|
//============================================================================== |
|
class DODViewport : public CBaseViewport |
|
{ |
|
|
|
private: |
|
DECLARE_CLASS_SIMPLE( DODViewport, CBaseViewport ); |
|
|
|
public: |
|
|
|
IViewPortPanel* CreatePanelByName(const char *szPanelName); |
|
void CreateDefaultPanels( void ); |
|
|
|
virtual void ApplySchemeSettings( vgui::IScheme *pScheme ); |
|
|
|
int GetDeathMessageStartHeight( void ); |
|
|
|
// Never show the background |
|
virtual void ShowBackGround(bool bShow) { NULL; } |
|
}; |
|
|
|
|
|
#endif // DODVIEWPORT_H
|
|
|