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.
47 lines
1.3 KiB
47 lines
1.3 KiB
//========= Copyright Valve Corporation, All rights reserved. ============// |
|
// |
|
// Purpose: |
|
// |
|
//============================================================================= |
|
|
|
#include "dme_controls/dmemdlpanel.h" |
|
#include "dme_controls/dmecontrols.h" |
|
#include "dme_controls/dmepanel.h" |
|
#include "movieobjects/dmemdl.h" |
|
#include "movieobjects/dmemdlmakefile.h" |
|
|
|
// memdbgon must be the last include file in a .cpp file!!! |
|
#include "tier0/memdbgon.h" |
|
|
|
using namespace vgui; |
|
|
|
|
|
IMPLEMENT_DMEPANEL_FACTORY( CDmeMDLPanel, DmeMDLMakefile, "DmeMakeFileOutputPreview", "MDL MakeFile Output Preview", false ); |
|
|
|
|
|
//----------------------------------------------------------------------------- |
|
// Constructor, destructor |
|
//----------------------------------------------------------------------------- |
|
CDmeMDLPanel::CDmeMDLPanel( vgui::Panel *pParent, const char *pName ) : BaseClass( pParent, pName ) |
|
{ |
|
} |
|
|
|
CDmeMDLPanel::~CDmeMDLPanel() |
|
{ |
|
} |
|
|
|
|
|
//----------------------------------------------------------------------------- |
|
// DMEPanel.. |
|
//----------------------------------------------------------------------------- |
|
void CDmeMDLPanel::SetDmeElement( CDmeMDLMakefile *pMDLMakefile ) |
|
{ |
|
if ( pMDLMakefile != NULL ) |
|
{ |
|
CDmeMDL *pMDL = CastElement< CDmeMDL >( pMDLMakefile->GetOutputElement( true ) ); |
|
if ( pMDL ) |
|
{ |
|
SetMDL( pMDL->GetMDL() ); |
|
} |
|
} |
|
}
|
|
|