Files
hl2_src-leak-2017/src/engine/vgui_DebugSystemPanel.h
BotoX 60f625f414 import hl2_src from full.7z
source: magnet:?xt=urn:btih:21DDA6847DDE983F2F8063739249D2D1D09A5DDA
2020-12-25 16:26:23 +01:00

41 lines
1.1 KiB
C++

//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//
#ifndef VGUI_DEBUGSYSTEMPANEL_H
#define VGUI_DEBUGSYSTEMPANEL_H
#ifdef _WIN32
#pragma once
#endif
#include <vgui_controls/Panel.h>
#include <vgui_controls/PHandle.h>
class CDebugMenuButton;
class CDebugOptionsPanel;
//-----------------------------------------------------------------------------
// Purpose: A simple panel to contain a debug menu button w/ cascading menus
//-----------------------------------------------------------------------------
class CDebugSystemPanel : public vgui::Panel
{
typedef vgui::Panel BaseClass;
public:
CDebugSystemPanel( vgui::Panel *parent, char const *panelName );
// Trap visibility so that we can force the cursor on
virtual void SetVisible( bool state );
virtual void OnCommand( char const *command );
private:
CDebugMenuButton *m_pDebugMenu;
vgui::DHANDLE< CDebugOptionsPanel > m_hDebugOptions;
};
#endif // VGUI_DEBUGSYSTEMPANEL_H