css_enhanced_waf/game/client/tf/vgui/tf_vgui_video.h
FluorescentCIAAfricanAmerican 3bf9df6b27 1
2020-04-22 12:56:21 -04:00

42 lines
1,000 B
C++

//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose: VGUI panel which can play back video, in-engine
//
//=============================================================================
#ifndef TF_VGUI_VIDEO_H
#define TF_VGUI_VIDEO_H
#ifdef _WIN32
#pragma once
#endif
#include "vgui_video.h"
class CTFVideoPanel : public VideoPanel
{
DECLARE_CLASS_SIMPLE( CTFVideoPanel, VideoPanel );
public:
CTFVideoPanel( vgui::Panel *parent, const char *panelName );
~CTFVideoPanel();
virtual void OnClose();
virtual void OnKeyCodePressed( vgui::KeyCode code ){}
virtual void ApplySettings( KeyValues *inResourceData );
virtual void GetPanelPos( int &xpos, int &ypos );
virtual void Shutdown();
float GetStartDelay(){ return m_flStartAnimDelay; }
float GetEndDelay(){ return m_flEndAnimDelay; }
protected:
virtual void ReleaseVideo();
virtual void OnVideoOver();
private:
float m_flStartAnimDelay;
float m_flEndAnimDelay;
};
#endif // TF_VGUI_VIDEO_H