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.
33 lines
921 B
33 lines
921 B
//========= Copyright © 1996-2005, Valve Corporation, All rights reserved. ============//
|
|
//
|
|
// Purpose:
|
|
//
|
|
// $NoKeywords: $
|
|
//=============================================================================//
|
|
|
|
#ifndef ICLOSECAPTIONMANAGER_H
|
|
#define ICLOSECAPTIONMANAGER_H
|
|
#ifdef _WIN32
|
|
#pragma once
|
|
#endif
|
|
|
|
typedef struct tagRECT RECT;
|
|
class CSentence;
|
|
class StudioModel;
|
|
class CChoreoWidgetDrawHelper;
|
|
|
|
class ICloseCaptionManager
|
|
{
|
|
public:
|
|
virtual void Reset( void ) = 0;
|
|
|
|
virtual void Process( char const *tokenname, float duration, int languageid ) = 0;
|
|
|
|
virtual bool LookupUnicodeText( int languageId, char const *token, wchar_t *outbuf, size_t count ) = 0;
|
|
// Same as above, except strips out <> command tokens
|
|
virtual bool LookupStrippedUnicodeText( int languageId, char const *token, wchar_t *outbuf, size_t count ) = 0;
|
|
};
|
|
|
|
extern ICloseCaptionManager *closecaptionmanager;
|
|
|
|
#endif // ICLOSECAPTIONMANAGER_H
|