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
5 years ago
|
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||
|
//
|
||
|
// Purpose:
|
||
|
//
|
||
|
//=============================================================================
|
||
|
|
||
|
#include "toolutils/basepropertiescontainer.h"
|
||
|
#include "tier1/KeyValues.h"
|
||
|
|
||
|
CBasePropertiesContainer::CBasePropertiesContainer( vgui::Panel *parent, IDmNotify *pNotify, CDmeEditorTypeDictionary *pDict /*=NULL*/ )
|
||
|
: BaseClass( parent, pNotify, NULL, true, pDict )
|
||
|
{
|
||
|
SetDropEnabled( true );
|
||
|
}
|
||
|
|
||
|
bool CBasePropertiesContainer::IsDroppable( CUtlVector< KeyValues * >& msglist )
|
||
|
{
|
||
|
if ( msglist.Count() != 1 )
|
||
|
return false;
|
||
|
|
||
|
KeyValues *data = msglist[ 0 ];
|
||
|
CDmElement *ptr = reinterpret_cast< CDmElement * >( g_pDataModel->GetElement( DmElementHandle_t( data->GetInt( "dmeelement", DMELEMENT_HANDLE_INVALID ) ) ) );
|
||
|
if ( !ptr )
|
||
|
return false;
|
||
|
|
||
|
if ( ptr == GetObject() )
|
||
|
return false;
|
||
|
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
void CBasePropertiesContainer::OnPanelDropped( CUtlVector< KeyValues * >& msglist )
|
||
|
{
|
||
|
if ( msglist.Count() != 1 )
|
||
|
return;
|
||
|
|
||
|
KeyValues *data = msglist[ 0 ];
|
||
|
CDmElement *ptr = reinterpret_cast< CDmElement * >( g_pDataModel->GetElement( DmElementHandle_t( data->GetInt( "dmeelement", DMELEMENT_HANDLE_INVALID ) ) ) );
|
||
|
if ( !ptr )
|
||
|
return;
|
||
|
|
||
|
// Already browsing
|
||
|
if ( ptr == GetObject() )
|
||
|
return;
|
||
|
|
||
|
SetObject( ptr );
|
||
|
}
|